Merged with translation update supplied by Jaime.

Sun, 04 Oct 2020 16:28:51 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sun, 04 Oct 2020 16:28:51 +0200
changeset 7752
b61c9305d50b
parent 7750
b16930e5baa9 (diff)
parent 7751
6bb5b236961f (current diff)
child 7753
5db40aa975fb

Merged with translation update supplied by Jaime.

eric6/i18n/eric6_es.ts file | annotate | diff | comparison | revisions
--- a/docs/changelog	Sat Oct 03 12:07:51 2020 +0200
+++ b/docs/changelog	Sun Oct 04 16:28:51 2020 +0200
@@ -1,5 +1,10 @@
 Change Log
 ----------
+Version 20.11:
+- bug fixes
+- Editor
+  -- added support for TOML files
+
 Version 20.10:
 - bug fixes
 - Editor
@@ -8,13 +13,13 @@
 - Python Disassembly Viewer
   -- added a tool to visualize the Python byte code generated from a Python
      source file
-  -- added a viewer to visualize Python byte code generated from a Python
+  -- added a viewer to visualize the Python byte code generated from a Python
      traceback of an exception as an additional tab of the debug viewer
   -- added capability to show information about a code object
 - Third Party packages
   -- updated Pygments to 2.7.0
   -- updated coverage.py to 5.3.0
-  -- removed th no longer needed 'enum' package
+  -- removed the no longer needed 'enum' package
 - Various
   -- changed the code to not rely on the Qt Resource system anymore
      (no .qrc files and no use of pyrcc5 anymore)
--- a/eric6/DocumentationTools/QtHelpGenerator.py	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/DocumentationTools/QtHelpGenerator.py	Sun Oct 04 16:28:51 2020 +0200
@@ -15,8 +15,7 @@
 import subprocess           # secok
 
 from Utilities import (
-    joinext, relpath, html_encode, getQtBinariesPath, generateQtToolName,
-    isExecutable
+    joinext, relpath, html_encode, getQtBinariesPath, generateQtToolName
 )
 
 HelpCollection = r"""<?xml version="1.0" encoding="utf-8" ?>
@@ -286,18 +285,12 @@
         os.remove(HelpProjectFile)
         
         if self.createCollection:
-            qcollectiongeneratorExe = os.path.join(
-                getQtBinariesPath(), generateQtToolName("qcollectiongenerator")
-            )
-            if not isExecutable(qcollectiongeneratorExe):
-                # assume Qt >= 5.12.0
-                qcollectiongeneratorExe = qhelpgeneratorExe
             sys.stdout.write("Generating QtHelp collection...\n")
             sys.stdout.flush()
             sys.stderr.flush()
             os.chdir(self.outputDir)
             subprocess.call([       # secok
-                qcollectiongeneratorExe,
+                qhelpgeneratorExe,
                 HelpCollectionProjectFile, "-o", HelpCollectionFile])
         
         os.chdir(cwd)
--- a/eric6/Globals/__init__.py	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Globals/__init__.py	Sun Oct 04 16:28:51 2020 +0200
@@ -18,8 +18,7 @@
 import shutil
 
 from PyQt5.QtCore import (
-    QDir, QLibraryInfo, QByteArray, QCoreApplication, QT_VERSION_STR,
-    QT_VERSION, QProcess, qVersion
+    QDir, QByteArray, QCoreApplication, QT_VERSION, QProcess, qVersion
 )
 
 # names of the various settings objects
@@ -288,7 +287,8 @@
     """
     Module function to get the path of the Qt binaries.
     
-    @return path of the Qt binaries (string)
+    @return path of the Qt binaries
+    @rtype str
     """
     import Preferences
     
@@ -297,55 +297,24 @@
     # step 1: check, if the user has configured a tools path
     path = Preferences.getQt("QtToolsDir")
     
-    if not path and isWindowsPlatform():
-        # step 2.1: check for PyQt5 Windows installer (designer is test object)
-        modDir = getPyQt5ModulesDirectory()
-        if os.path.exists(os.path.join(modDir, "bin", "designer.exe")):
-            path = os.path.join(modDir, "bin")
-        elif os.path.exists(os.path.join(modDir, "designer.exe")):
-            path = modDir
-        
-        if not path:
-            import distutils.sysconfig
-            # step 2.2.1: check for the pyqt5-tools wheel (new variant)
-            # (Windows only)
-            pyqt5ToolsPath = os.path.join(
-                distutils.sysconfig.get_python_lib(True), "pyqt5_tools")
-            if os.path.exists(os.path.join(pyqt5ToolsPath, "designer.exe")):
-                path = pyqt5ToolsPath
-            if not path:
-                # step 2.2.2: check for the pyqt5-tools wheel (old variant)
-                # (Windows only)
-                pyqt5ToolsPath = os.path.join(
-                    distutils.sysconfig.get_python_lib(True), "pyqt5-tools")
-                if os.path.exists(os.path.join(pyqt5ToolsPath,
-                                               "designer.exe")):
-                    path = pyqt5ToolsPath
-    
+    # step 2: determine from used Python interpreter (designer is test object)
     if not path:
-        # step 3: get the path from Qt
-        # Note: no Qt tools are to be found there for PyQt 5.7.0
-        path = QLibraryInfo.location(QLibraryInfo.BinariesPath)
-        if not os.path.exists(path):
-            path = ""
+        program = "designer"
+        if isWindowsPlatform():
+            program += ".exe"
+            dirName = os.path.dirname(sys.executable)
+            if os.path.exists(os.path.join(dirName, program)):
+                path = dirName
+            elif os.path.exists(os.path.join(dirName, "Scripts", program)):
+                path = os.path.join(dirName, "Scripts")
+        else:
+            dirName = os.path.dirname(sys.executable)
+            if os.path.exists(os.path.join(dirName, program)):
+                path = dirName
     
     return QDir.toNativeSeparators(path)
 
 
-def translate(*args):
-    """
-    Module function to handle different PyQt 4/5 QCoreApplication.translate
-    parameter.
-    
-    @param args tuple of arguments from QCoreApplication.translate (tuple)
-    @return translated string (string)
-    """
-    if QT_VERSION_STR.startswith('4.'):
-        args = list(args)
-        args.insert(3, QCoreApplication.CodecForTr)
-    return QCoreApplication.translate(*args)
-
-
 ###############################################################################
 ## functions for version handling
 ###############################################################################
--- a/eric6/Plugins/CheckerPlugins/CodeStyleChecker/translations.py	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Plugins/CheckerPlugins/CodeStyleChecker/translations.py	Sun Oct 04 16:28:51 2020 +0200
@@ -10,8 +10,6 @@
 
 from PyQt5.QtCore import QCoreApplication
 
-from Globals import translate
-
 from .Security.translations import (
     _securityMessages, _securityMessagesSampleArgs
 )
@@ -949,10 +947,10 @@
         'CodeStyleFixer',
         "Whitespace around comment sign corrected."),
     
-    "FIXE302+": lambda n=1: translate(
+    "FIXE302+": lambda n=1: QCoreApplication.translate(
         'CodeStyleFixer',
         "%n blank line(s) inserted.", '', n),
-    "FIXE302-": lambda n=1: translate(
+    "FIXE302-": lambda n=1: QCoreApplication.translate(
         'CodeStyleFixer',
         "%n superfluous lines removed", '', n),
     
--- a/eric6/Plugins/PluginEricdoc.py	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Plugins/PluginEricdoc.py	Sun Oct 04 16:28:51 2020 +0200
@@ -90,27 +90,6 @@
         "versionCleanup": (0, -1),
     })
     
-    # 3. Qt Collection Generator
-    exe = os.path.join(
-        Utilities.getQtBinariesPath(),
-        Utilities.generateQtToolName('qcollectiongenerator')
-    )
-    if Utilities.isWindowsPlatform():
-        exe += '.exe'
-    if Utilities.isExecutable(exe):
-        # assume Qt 5.,12 if it is missing
-        dataList.append({
-            "programEntry": True,
-            "header": QCoreApplication.translate(
-                "EricdocPlugin", "Qt Help Tools"),
-            "exe": exe,
-            "versionCommand": '-v',
-            "versionStartsWith": 'Qt',
-            "versionPosition": -1,
-            "version": "",
-            "versionCleanup": (0, -1),
-        })
-    
     return dataList
 
 
--- a/eric6/Plugins/PluginSyntaxChecker.py	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Plugins/PluginSyntaxChecker.py	Sun Oct 04 16:28:51 2020 +0200
@@ -100,6 +100,8 @@
             lambda fn, problems:
                 self.syntaxCheckService.syntaxChecked.emit(fn, problems),
             self.syntaxCheckService.serviceErrorJSON)
+        
+        # TODO: add syntax check for TOML using the toml package
 
     def __initialize(self):
         """
--- a/eric6/Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py	Sun Oct 04 16:28:51 2020 +0200
@@ -70,9 +70,12 @@
             success (boolean)
         """
         if len(text) > self.MaxTranslationTextLen:
-            return self.tr(
-                "Text to be translated exceeds the translation limit of {0}"
-                " characters.").format(self.MaxTranslationTextLen), False
+            return (
+                self.tr("DeepL: Text to be translated exceeds the translation"
+                        " limit of {0} characters.")
+                .format(self.MaxTranslationTextLen),
+                False
+            )
         
         apiKey = self.plugin.getPreferences("DeeplKey")
         if not apiKey:
@@ -99,7 +102,7 @@
             
             translations = responseDict["translations"]
             if len(translations) == 0:
-                return self.tr("<p>No translation found</p>"), True
+                return self.tr("<p>DeepL: No translation found</p>"), True
             
             # show sentence by sentence separated by a line
             result = (
--- a/eric6/Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GlosbeEngine.py	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GlosbeEngine.py	Sun Oct 04 16:28:51 2020 +0200
@@ -82,7 +82,7 @@
             try:
                 responseDict = json.loads(response)
             except ValueError:
-                return self.tr("Invalid response received"), False
+                return self.tr("Glosbe: Invalid response received"), False
             
             result = ""
             for translation in responseDict["tuc"]:
@@ -96,7 +96,7 @@
                     if translation != responseDict["tuc"][-1]:
                         result += "<hr/>"
             if not result:
-                result = self.tr("No translation found.")
+                result = self.tr("Glosbe: No translation found.")
                 ok = False
         else:
             result = response
--- a/eric6/Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV1Engine.py	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV1Engine.py	Sun Oct 04 16:28:51 2020 +0200
@@ -95,7 +95,7 @@
                 response = re.sub(r',{2,}', ',', response)
                 responseDict = json.loads(response)
             except ValueError:
-                return self.tr("Invalid response received"), False
+                return self.tr("Google V1: Invalid response received"), False
             
             if isinstance(responseDict, dict):
                 sentences = responseDict["sentences"]
@@ -132,7 +132,7 @@
                     len(responseDict) > 2
                 ):
                     if not responseDict[1]:
-                        result = self.tr("No translation found.")
+                        result = self.tr("Google V1: No translation found.")
                         ok = False
                     else:
                         for wordTypeList in responseDict[1]:
@@ -162,7 +162,8 @@
         """
         text = text.split("\n\n", 1)[0]
         if len(text) > self.TextToSpeechLimit:
-            return (self.tr("Only texts up to {0} characters are allowed.")
+            return (self.tr("Google V1: Only texts up to {0} characters are"
+                            " allowed.")
                     .format(self.TextToSpeechLimit), False)
         
         url = QUrl(self.TextToSpeechUrl +
--- a/eric6/Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py	Sun Oct 04 16:28:51 2020 +0200
@@ -69,7 +69,8 @@
         """
         apiKey = self.plugin.getPreferences("GoogleV2Key")
         if not apiKey:
-            return self.tr("A valid Google Translate key is required."), False
+            return self.tr("Google V2: A valid Google Translate key is"
+                           " required."), False
         
         params = "?key={3}&source={0}&target={1}&q={2}".format(
             originalLanguage, translationLanguage, text, apiKey)
@@ -80,13 +81,13 @@
             try:
                 responseDict = json.loads(response)
             except ValueError:
-                return self.tr("Invalid response received"), False
+                return self.tr("Google V2: Invalid response received"), False
             
             if (
                 "data" not in responseDict or
                 "translations" not in responseDict["data"]
             ):
-                return self.tr("No translation available."), False
+                return self.tr("Google V2: No translation available."), False
             
             result = ""
             translations = responseDict["data"]["translations"]
--- a/eric6/Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py	Sun Oct 04 16:28:51 2020 +0200
@@ -115,11 +115,11 @@
         """
         apiKey = self.plugin.getPreferences("IbmKey")
         if not apiKey:
-            return self.tr("A valid IBM Watson Language Translator key is"
+            return self.tr("IBM Watson: A valid Language Translator key is"
                            " required."), False
         translatorUrl = self.plugin.getPreferences("IbmUrl")
         if not translatorUrl:
-            return self.tr("A valid IBM Watson Language Translator URL is"
+            return self.tr("IBM Watson: A valid Language Translator URL is"
                            " required."), False
         
         params = "?version=2018-05-01"
@@ -144,10 +144,10 @@
             try:
                 responseDict = json.loads(response)
             except ValueError:
-                return self.tr("Invalid response received"), False
+                return self.tr("IBM Watson: Invalid response received"), False
             
             if "translations" not in responseDict:
-                return self.tr("No translation available."), False
+                return self.tr("IBM Watson: No translation available."), False
             
             result = ""
             translations = responseDict["translations"]
@@ -183,7 +183,7 @@
             E5MessageBox.critical(
                 self.__ui,
                 self.tr("Error Getting Available Translations"),
-                self.tr("A valid IBM Watson Language Translator key is"
+                self.tr("IBM Watson: A valid Language Translator key is"
                         " required.")
             )
             return
@@ -192,7 +192,7 @@
             E5MessageBox.critical(
                 self.__ui,
                 self.tr("Error Getting Available Translations"),
-                self.tr("A valid IBM Watson Language Translator URL is"
+                self.tr("IBM Watson: A valid Language Translator URL is"
                         " required.")
             )
             return
@@ -232,8 +232,8 @@
                 E5MessageBox.critical(
                     self.__ui,
                     self.tr("Error Getting Available Translations"),
-                    self.tr("The server sent an error indication.\n"
-                            "Error: {0}").format(errorStr)
+                    self.tr("IBM Watson: The server sent an error indication."
+                            "\n Error: {0}").format(errorStr)
                 )
                 return
             else:
@@ -244,7 +244,7 @@
                     E5MessageBox.critical(
                         self.__ui,
                         self.tr("Error Getting Available Translations"),
-                        self.tr("Invalid response received")
+                        self.tr("IBM Watson: Invalid response received")
                     )
                     return
                 
@@ -252,7 +252,7 @@
                     E5MessageBox.critical(
                         self.__ui,
                         self.tr("Error Getting Available Translations"),
-                        self.tr("No translation available.")
+                        self.tr("IBM Watson: No translation available.")
                     )
                     return
                 
--- a/eric6/Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py	Sun Oct 04 16:28:51 2020 +0200
@@ -149,7 +149,10 @@
         
         accessToken = self.__getAccessToken(requestObject)
         if not accessToken:
-            return (self.tr("No valid access token available."), False)
+            return (
+                self.tr("MS Translator: No valid access token available."),
+                False
+            )
         
         authHeader = (b"Authorization",
                       "Bearer {0}".format(accessToken).encode("utf-8"))
@@ -167,7 +170,7 @@
             ):
                 result = response.split(">", 1)[1].rsplit("<", 1)[0]
             else:
-                result = self.tr("No translation available.")
+                result = self.tr("MS Translator: No translation available.")
                 ok = False
         return result, ok
     
@@ -190,7 +193,10 @@
         
         accessToken = self.__getAccessToken(requestObject)
         if not accessToken:
-            return (self.tr("No valid access token available."), False)
+            return (
+                self.tr("MS Translator: No valid access token available."),
+                False
+            )
         
         params = "?language={0}&format={1}&options={2}&text={3}".format(
             self.__mapLanguageCode(language),
@@ -202,6 +208,6 @@
         url = QUrl(self.TextToSpeechUrl + params)
         data, ok = requestObject.get(url, extraHeaders=[authHeader])
         if not ok:
-            data = self.tr("No Text-to-Speech for the selected language"
-                           " available.")
+            data = self.tr("MS Translator: No Text-to-Speech for the selected"
+                           " language available.")
         return data, ok
--- a/eric6/Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MyMemoryEngine.py	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MyMemoryEngine.py	Sun Oct 04 16:28:51 2020 +0200
@@ -69,8 +69,12 @@
             success (boolean)
         """
         if len(text) > self.TranslatorLimit:
-            return (self.tr("Only texts up to {0} characters are allowed.")
-                    .format(self.TranslatorLimit), False)
+            return (
+                self.tr("MyMemory: Only texts up to {0} characters are"
+                        " allowed.")
+                .format(self.TranslatorLimit),
+                False
+            )
         
         myMemoryKey = self.plugin.getPreferences("MyMemoryKey")
         if myMemoryKey:
@@ -92,7 +96,7 @@
             try:
                 responseDict = json.loads(response)
             except ValueError:
-                return self.tr("Invalid response received"), False
+                return self.tr("MyMemory: Invalid response received"), False
             result = responseDict["responseData"]["translatedText"]
         else:
             result = response
--- a/eric6/Plugins/UiExtensionPlugins/Translator/TranslatorEngines/PromtEngine.py	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Plugins/UiExtensionPlugins/Translator/TranslatorEngines/PromtEngine.py	Sun Oct 04 16:28:51 2020 +0200
@@ -94,7 +94,7 @@
             try:
                 responseDict = json.loads(response)
             except ValueError:
-                return self.tr("Invalid response received"), False
+                return self.tr("Promt: Invalid response received"), False
             
             if "d" in responseDict:
                 responseDict = responseDict["d"]
@@ -104,7 +104,8 @@
             if responseDict["errCode"] == 0:
                 if responseDict["ptsDirCode"] == "":
                     result = self.tr(
-                        "This direction of translation is not available.")
+                        "Promt: This direction of translation is not"
+                        " available.")
                     ok = False
             else:
                 result = responseDict["errMessage"]
--- a/eric6/Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py	Sun Oct 04 16:28:51 2020 +0200
@@ -35,14 +35,14 @@
         super(YandexEngine, self).__init__(plugin, parent)
         
         self.__errors = {
-            401: self.tr("Invalid API key."),
-            402: self.tr("API key has been blocked."),
-            403: self.tr("Daily limit for requests has been reached."),
-            404: self.tr("Daily limit for the volume of translated text"
-                         " reached."),
-            413: self.tr("Text size exceeds the maximum."),
-            422: self.tr("Text could not be translated."),
-            501: self.tr("The specified translation direction is not"
+            401: self.tr("Yandex: Invalid API key."),
+            402: self.tr("Yandex: API key has been blocked."),
+            403: self.tr("Yandex: Daily limit for requests has been reached."),
+            404: self.tr("Yandex: Daily limit for the volume of translated"
+                         " text reached."),
+            413: self.tr("Yandex: Text size exceeds the maximum."),
+            422: self.tr("Yandex: Text could not be translated."),
+            501: self.tr("Yandex: The specified translation direction is not"
                          " supported."),
         }
         
@@ -83,12 +83,15 @@
             success (boolean)
         """
         if len(text) > self.TranslatorLimit:
-            return (self.tr("Only texts up to {0} characters are allowed.")
-                    .format(self.TranslatorLimit), False)
+            return (
+                self.tr("Yandex: Only texts up to {0} characters are allowed.")
+                .format(self.TranslatorLimit),
+                False
+            )
         
         apiKey = self.plugin.getPreferences("YandexKey")
         if not apiKey:
-            return self.tr("A valid Yandex key is required."), False
+            return self.tr("Yandex: A valid key is required."), False
         
         params = QByteArray(
             "key={0}&lang={1}-{2}&text=".format(
@@ -103,14 +106,14 @@
             try:
                 responseDict = json.loads(response)
             except ValueError:
-                return self.tr("Invalid response received"), False
+                return self.tr("Yandex: Invalid response received"), False
             
             if responseDict["code"] != 200:
                 try:
                     error = self.__errors[responseDict["code"]]
                 except KeyError:
                     error = self.tr(
-                        "Unknown error code ({0}) received."
+                        "Yandex: Unknown error code ({0}) received."
                     ).format(responseDict["code"])
                 return error, False
             
--- a/eric6/Plugins/VcsPlugins/vcsMercurial/HgDialog.py	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Plugins/VcsPlugins/vcsMercurial/HgDialog.py	Sun Oct 04 16:28:51 2020 +0200
@@ -201,10 +201,12 @@
         self.input.setFocus(Qt.OtherFocusReason)
 
         self.resultbox.ensureCursorVisible()
+        self.errors.ensureCursorVisible()
         
         from PyQt5.QtCore import QEventLoop
         loop = QEventLoop(self)
         self.sendButton.clicked[bool].connect(loop.quit)
+        self.input.returnPressed.connect(loop.quit)
         loop.exec_()
         message = self.input.text() + "\n"
         isPassword = self.passwordCheckBox.isChecked()
--- a/eric6/Preferences/ConfigurationDialog.py	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationDialog.py	Sun Oct 04 16:28:51 2020 +0200
@@ -16,7 +16,7 @@
 from PyQt5.QtWidgets import (
     QSizePolicy, QSpacerItem, QWidget, QTreeWidget, QStackedWidget, QDialog,
     QSplitter, QScrollArea, QApplication, QDialogButtonBox, QFrame,
-    QVBoxLayout, QTreeWidgetItem, QLabel
+    QVBoxLayout, QTreeWidgetItem, QLabel, QAbstractScrollArea
 )
 
 from E5Gui.E5Application import e5App
@@ -496,7 +496,7 @@
         widget.
         """
         self.setObjectName("ConfigurationDialog")
-        self.resize(900, 650)
+        self.resize(900, 750)
         self.verticalLayout_2 = QVBoxLayout(self)
         self.verticalLayout_2.setSpacing(6)
         self.verticalLayout_2.setContentsMargins(6, 6, 6, 6)
@@ -524,7 +524,8 @@
         self.scrollArea.setFrameShape(QFrame.NoFrame)
         self.scrollArea.setVerticalScrollBarPolicy(Qt.ScrollBarAlwaysOn)
         self.scrollArea.setHorizontalScrollBarPolicy(Qt.ScrollBarAlwaysOn)
-        self.scrollArea.setWidgetResizable(True)
+        self.scrollArea.setWidgetResizable(False)
+        self.scrollArea.setSizeAdjustPolicy(QAbstractScrollArea.AdjustToContents)
         self.scrollArea.setObjectName("scrollArea")
         
         self.configStack = QStackedWidget()
@@ -723,18 +724,7 @@
                     if item.data(0, Qt.UserRole) == pageName:
                         self.configList.setCurrentItem(item)
         self.configStack.setCurrentWidget(page)
-        ssize = self.scrollArea.size()
-        if self.scrollArea.horizontalScrollBar():
-            ssize.setHeight(
-                ssize.height() -
-                self.scrollArea.horizontalScrollBar().height() - 2)
-        if self.scrollArea.verticalScrollBar():
-            ssize.setWidth(
-                ssize.width() -
-                self.scrollArea.verticalScrollBar().width() - 2)
-        psize = page.minimumSizeHint()
-        self.configStack.resize(max(ssize.width(), psize.width()),
-                                max(ssize.height(), psize.height()))
+        self.__resizeConfigStack()
         
         if page != self.emptyPage:
             page.polishPage()
@@ -751,7 +741,33 @@
                 sb.setValue(0)
         
         self.__currentConfigurationPageName = pageName
+    
+    def resizeEvent(self, evt):
+        """
+        Protected method to handle the resizing of the widget.
         
+        @param evt reference to the event object
+        @type QResizeEvent
+        """
+        self.__resizeConfigStack()
+    
+    def __resizeConfigStack(self):
+        """
+        Private method to resize the stack of configuration pages.
+        """
+        ssize = self.scrollArea.size()
+        if self.scrollArea.horizontalScrollBar():
+            ssize.setHeight(
+                ssize.height() -
+                self.scrollArea.horizontalScrollBar().height() - 2)
+        if self.scrollArea.verticalScrollBar():
+            ssize.setWidth(
+                ssize.width() -
+                self.scrollArea.verticalScrollBar().width() - 2)
+        psize = self.configStack.currentWidget().sizeHint()
+        self.configStack.resize(max(ssize.width(), psize.width()),
+                                max(ssize.height(), psize.height()))
+    
     def getConfigurationPageName(self):
         """
         Public method to get the page name of the current page.
--- a/eric6/Preferences/ConfigurationPages/ApplicationPage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/ApplicationPage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -6,8 +6,8 @@
    <rect>
     <x>0</x>
     <y>0</y>
-    <width>591</width>
-    <height>989</height>
+    <width>589</width>
+    <height>771</height>
    </rect>
   </property>
   <layout class="QVBoxLayout" name="verticalLayout_4">
@@ -361,19 +361,6 @@
      </layout>
     </widget>
    </item>
-   <item>
-    <spacer>
-     <property name="orientation">
-      <enum>Qt::Vertical</enum>
-     </property>
-     <property name="sizeHint" stdset="0">
-      <size>
-       <width>571</width>
-       <height>21</height>
-      </size>
-     </property>
-    </spacer>
-   </item>
   </layout>
  </widget>
  <tabstops>
--- a/eric6/Preferences/ConfigurationPages/CondaPage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/CondaPage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -7,7 +7,7 @@
     <x>0</x>
     <y>0</y>
     <width>585</width>
-    <height>431</height>
+    <height>165</height>
    </rect>
   </property>
   <layout class="QVBoxLayout" name="verticalLayout_2">
--- a/eric6/Preferences/ConfigurationPages/CorbaPage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/CorbaPage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -7,7 +7,7 @@
     <x>0</x>
     <y>0</y>
     <width>589</width>
-    <height>490</height>
+    <height>301</height>
    </rect>
   </property>
   <layout class="QVBoxLayout">
--- a/eric6/Preferences/ConfigurationPages/DebuggerGeneralPage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/DebuggerGeneralPage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -6,8 +6,8 @@
    <rect>
     <x>0</x>
     <y>0</y>
-    <width>643</width>
-    <height>1776</height>
+    <width>550</width>
+    <height>1650</height>
    </rect>
   </property>
   <layout class="QVBoxLayout" name="verticalLayout_7">
@@ -37,14 +37,14 @@
       <string>Network Interface</string>
      </property>
      <layout class="QGridLayout" name="gridLayout_2">
-      <item row="0" column="0" colspan="3">
+      <item row="0" column="0" colspan="4">
        <widget class="QLabel" name="TextLabel1_2_3">
         <property name="text">
          <string>&lt;font color=&quot;#FF0000&quot;&gt;&lt;b&gt;Note:&lt;/b&gt; These settings are activated at the next startup of the application.&lt;/font&gt;</string>
         </property>
        </widget>
       </item>
-      <item row="1" column="0">
+      <item row="1" column="0" colspan="2">
        <widget class="QRadioButton" name="allInterfacesButton">
         <property name="toolTip">
          <string>Select to listen on all available network interfaces (IPv4 mode)</string>
@@ -54,7 +54,7 @@
         </property>
        </widget>
       </item>
-      <item row="1" column="1">
+      <item row="1" column="2">
        <widget class="QRadioButton" name="all6InterfacesButton">
         <property name="toolTip">
          <string>Select to listen on all available network interfaces (IPv6 mode)</string>
@@ -64,7 +64,20 @@
         </property>
        </widget>
       </item>
-      <item row="1" column="2">
+      <item row="1" column="3">
+       <spacer name="horizontalSpacer_5">
+        <property name="orientation">
+         <enum>Qt::Horizontal</enum>
+        </property>
+        <property name="sizeHint" stdset="0">
+         <size>
+          <width>103</width>
+          <height>20</height>
+         </size>
+        </property>
+       </spacer>
+      </item>
+      <item row="2" column="0">
        <widget class="QRadioButton" name="selectedInterfaceButton">
         <property name="toolTip">
          <string>Select to listen on the configured interface</string>
@@ -74,7 +87,7 @@
         </property>
        </widget>
       </item>
-      <item row="2" column="0" colspan="3">
+      <item row="2" column="1" colspan="3">
        <widget class="QComboBox" name="interfacesCombo">
         <property name="enabled">
          <bool>false</bool>
@@ -152,14 +165,14 @@
       <string>Passive Debugger</string>
      </property>
      <layout class="QGridLayout" name="gridLayout">
-      <item row="0" column="0" colspan="6">
+      <item row="0" column="0" colspan="4">
        <widget class="QLabel" name="TextLabel1_2_2">
         <property name="text">
          <string>&lt;font color=&quot;#FF0000&quot;&gt;&lt;b&gt;Note:&lt;/b&gt; These settings are activated at the next startup of the application.&lt;/font&gt;</string>
         </property>
        </widget>
       </item>
-      <item row="1" column="0" colspan="6">
+      <item row="1" column="0" colspan="4">
        <widget class="QCheckBox" name="passiveDbgCheckBox">
         <property name="toolTip">
          <string>Enables the passive debug mode</string>
@@ -206,7 +219,7 @@
         </property>
        </widget>
       </item>
-      <item row="2" column="2">
+      <item row="2" column="2" colspan="2">
        <spacer name="horizontalSpacer_2">
         <property name="orientation">
          <enum>Qt::Horizontal</enum>
@@ -219,7 +232,7 @@
         </property>
        </spacer>
       </item>
-      <item row="2" column="3">
+      <item row="3" column="0">
        <widget class="QLabel" name="label">
         <property name="enabled">
          <bool>false</bool>
@@ -229,7 +242,7 @@
         </property>
        </widget>
       </item>
-      <item row="2" column="4">
+      <item row="3" column="1" colspan="2">
        <widget class="QComboBox" name="passiveDbgBackendCombo">
         <property name="enabled">
          <bool>false</bool>
@@ -239,7 +252,7 @@
         </property>
        </widget>
       </item>
-      <item row="2" column="5">
+      <item row="3" column="3">
        <spacer name="horizontalSpacer">
         <property name="orientation">
          <enum>Qt::Horizontal</enum>
@@ -764,19 +777,6 @@
      </layout>
     </widget>
    </item>
-   <item>
-    <spacer name="verticalSpacer">
-     <property name="orientation">
-      <enum>Qt::Vertical</enum>
-     </property>
-     <property name="sizeHint" stdset="0">
-      <size>
-       <width>20</width>
-       <height>28</height>
-      </size>
-     </property>
-    </spacer>
-   </item>
   </layout>
  </widget>
  <tabstops>
--- a/eric6/Preferences/ConfigurationPages/DebuggerPython3Page.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/DebuggerPython3Page.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -7,7 +7,7 @@
     <x>0</x>
     <y>0</y>
     <width>455</width>
-    <height>500</height>
+    <height>446</height>
    </rect>
   </property>
   <layout class="QVBoxLayout" name="verticalLayout_3">
--- a/eric6/Preferences/ConfigurationPages/DiffColoursPage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/DiffColoursPage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -7,7 +7,7 @@
     <x>0</x>
     <y>0</y>
     <width>400</width>
-    <height>300</height>
+    <height>286</height>
    </rect>
   </property>
   <layout class="QVBoxLayout" name="verticalLayout">
--- a/eric6/Preferences/ConfigurationPages/EditorAutocompletionPage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/EditorAutocompletionPage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -6,8 +6,8 @@
    <rect>
     <x>0</x>
     <y>0</y>
-    <width>506</width>
-    <height>498</height>
+    <width>474</width>
+    <height>569</height>
    </rect>
   </property>
   <layout class="QVBoxLayout" name="verticalLayout">
--- a/eric6/Preferences/ConfigurationPages/EditorAutocompletionQScintillaPage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/EditorAutocompletionQScintillaPage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -7,7 +7,7 @@
     <x>0</x>
     <y>0</y>
     <width>506</width>
-    <height>257</height>
+    <height>177</height>
    </rect>
   </property>
   <layout class="QGridLayout" name="gridLayout">
--- a/eric6/Preferences/ConfigurationPages/EditorCalltipsPage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/EditorCalltipsPage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -7,7 +7,7 @@
     <x>0</x>
     <y>0</y>
     <width>408</width>
-    <height>556</height>
+    <height>468</height>
    </rect>
   </property>
   <layout class="QVBoxLayout" name="verticalLayout_3">
--- a/eric6/Preferences/ConfigurationPages/EditorCalltipsQScintillaPage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/EditorCalltipsQScintillaPage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -1,84 +1,85 @@
-<ui version="4.0" >
+<?xml version="1.0" encoding="UTF-8"?>
+<ui version="4.0">
  <class>EditorCalltipsQScintillaPage</class>
- <widget class="QWidget" name="EditorCalltipsQScintillaPage" >
-  <property name="geometry" >
+ <widget class="QWidget" name="EditorCalltipsQScintillaPage">
+  <property name="geometry">
    <rect>
     <x>0</x>
     <y>0</y>
     <width>406</width>
-    <height>369</height>
+    <height>262</height>
    </rect>
   </property>
-  <layout class="QVBoxLayout" >
+  <layout class="QVBoxLayout">
    <item>
-    <widget class="QLabel" name="headerLabel" >
-     <property name="text" >
-      <string>&lt;b>Configure QScintilla Calltips&lt;/b></string>
+    <widget class="QLabel" name="headerLabel">
+     <property name="text">
+      <string>&lt;b&gt;Configure QScintilla Calltips&lt;/b&gt;</string>
      </property>
     </widget>
    </item>
    <item>
-    <widget class="Line" name="line18" >
-     <property name="frameShape" >
+    <widget class="Line" name="line18">
+     <property name="frameShape">
       <enum>QFrame::HLine</enum>
      </property>
-     <property name="frameShadow" >
+     <property name="frameShadow">
       <enum>QFrame::Sunken</enum>
      </property>
-     <property name="orientation" >
+     <property name="orientation">
       <enum>Qt::Horizontal</enum>
      </property>
     </widget>
    </item>
    <item>
-    <widget class="QGroupBox" name="groupBox" >
-     <property name="title" >
+    <widget class="QGroupBox" name="groupBox">
+     <property name="title">
       <string>Context display options</string>
      </property>
-     <layout class="QVBoxLayout" >
+     <layout class="QVBoxLayout">
       <item>
-       <widget class="QRadioButton" name="ctNoContextButton" >
-        <property name="toolTip" >
+       <widget class="QRadioButton" name="ctNoContextButton">
+        <property name="toolTip">
          <string>Select to display calltips without a context</string>
         </property>
-        <property name="text" >
+        <property name="text">
          <string>Don't show context information</string>
         </property>
        </widget>
       </item>
       <item>
-       <widget class="QRadioButton" name="ctNoAutoCompletionButton" >
-        <property name="toolTip" >
+       <widget class="QRadioButton" name="ctNoAutoCompletionButton">
+        <property name="toolTip">
          <string>Select to display calltips with a context only if the user hasn't already implicitly identified the context using autocompletion</string>
         </property>
-        <property name="text" >
+        <property name="text">
          <string>Show context information, if no prior autocompletion</string>
         </property>
        </widget>
       </item>
       <item>
-       <widget class="QRadioButton" name="ctContextButton" >
-        <property name="toolTip" >
+       <widget class="QRadioButton" name="ctContextButton">
+        <property name="toolTip">
          <string>Select to display calltips with a context</string>
         </property>
-        <property name="text" >
+        <property name="text">
          <string>Show context information</string>
         </property>
        </widget>
       </item>
       <item>
-       <widget class="Line" name="line" >
-        <property name="orientation" >
+       <widget class="Line" name="line">
+        <property name="orientation">
          <enum>Qt::Horizontal</enum>
         </property>
        </widget>
       </item>
       <item>
-       <widget class="QLabel" name="label" >
-        <property name="text" >
+       <widget class="QLabel" name="label">
+        <property name="text">
          <string>A context is any scope (e.g. a C++ namespace or a Python module) prior to the function/method name.</string>
         </property>
-        <property name="wordWrap" >
+        <property name="wordWrap">
          <bool>true</bool>
         </property>
        </widget>
@@ -88,10 +89,10 @@
    </item>
    <item>
     <spacer>
-     <property name="orientation" >
+     <property name="orientation">
       <enum>Qt::Vertical</enum>
      </property>
-     <property name="sizeHint" stdset="0" >
+     <property name="sizeHint" stdset="0">
       <size>
        <width>388</width>
        <height>20</height>
--- a/eric6/Preferences/ConfigurationPages/EditorDocViewerPage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/EditorDocViewerPage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -7,7 +7,7 @@
     <x>0</x>
     <y>0</y>
     <width>400</width>
-    <height>300</height>
+    <height>199</height>
    </rect>
   </property>
   <layout class="QVBoxLayout" name="verticalLayout_2">
--- a/eric6/Preferences/ConfigurationPages/EditorExportersPage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/EditorExportersPage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -7,7 +7,7 @@
     <x>0</x>
     <y>0</y>
     <width>537</width>
-    <height>531</height>
+    <height>435</height>
    </rect>
   </property>
   <property name="windowTitle">
--- a/eric6/Preferences/ConfigurationPages/EditorFilePage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/EditorFilePage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -7,7 +7,7 @@
     <x>0</x>
     <y>0</y>
     <width>600</width>
-    <height>1739</height>
+    <height>1621</height>
    </rect>
   </property>
   <layout class="QVBoxLayout" name="verticalLayout_5">
@@ -731,19 +731,6 @@
      </layout>
     </widget>
    </item>
-   <item>
-    <spacer>
-     <property name="orientation">
-      <enum>Qt::Vertical</enum>
-     </property>
-     <property name="sizeHint" stdset="0">
-      <size>
-       <width>435</width>
-       <height>20</height>
-      </size>
-     </property>
-    </spacer>
-   </item>
   </layout>
  </widget>
  <tabstops>
--- a/eric6/Preferences/ConfigurationPages/EditorGeneralPage.py	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/EditorGeneralPage.py	Sun Oct 04 16:28:51 2020 +0200
@@ -59,6 +59,8 @@
             Preferences.getEditor("ShowSourceOutline"))
         self.sourceOutlineWidthSpinBox.setValue(
             Preferences.getEditor("SourceOutlineWidth"))
+        self.sourceOutlineWidthStepSpinBox.setValue(
+            Preferences.getEditor("SourceOutlineStepSize"))
         
         virtualSpaceOptions = Preferences.getEditor("VirtualSpaceOptions")
         self.vsSelectionCheckBox.setChecked(
@@ -100,6 +102,9 @@
         Preferences.setEditor(
             "SourceOutlineWidth",
             self.sourceOutlineWidthSpinBox.value())
+        Preferences.setEditor(
+            "SourceOutlineStepSize",
+            self.sourceOutlineWidthStepSpinBox.value())
         
         virtualSpaceOptions = QsciScintillaBase.SCVS_NONE
         if self.vsSelectionCheckBox.isChecked():
--- a/eric6/Preferences/ConfigurationPages/EditorGeneralPage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/EditorGeneralPage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -6,8 +6,8 @@
    <rect>
     <x>0</x>
     <y>0</y>
-    <width>559</width>
-    <height>771</height>
+    <width>550</width>
+    <height>700</height>
    </rect>
   </property>
   <layout class="QVBoxLayout" name="verticalLayout_4">
@@ -170,7 +170,7 @@
           </column>
           <column>
            <property name="text">
-            <string notr="true">  </string>
+            <string notr="true"/>
            </property>
           </column>
          </widget>
@@ -286,15 +286,15 @@
      <property name="checkable">
       <bool>true</bool>
      </property>
-     <layout class="QHBoxLayout" name="horizontalLayout_2">
-      <item>
+     <layout class="QGridLayout" name="gridLayout_3">
+      <item row="0" column="0">
        <widget class="QLabel" name="label_2">
         <property name="text">
          <string>Default Width:</string>
         </property>
        </widget>
       </item>
-      <item>
+      <item row="0" column="1">
        <widget class="QSpinBox" name="sourceOutlineWidthSpinBox">
         <property name="toolTip">
          <string>Enter the default width of the source code outline view</string>
@@ -313,19 +313,45 @@
         </property>
        </widget>
       </item>
-      <item>
+      <item row="0" column="2">
        <spacer name="horizontalSpacer">
         <property name="orientation">
          <enum>Qt::Horizontal</enum>
         </property>
         <property name="sizeHint" stdset="0">
          <size>
-          <width>397</width>
-          <height>20</height>
+          <width>345</width>
+          <height>17</height>
          </size>
         </property>
        </spacer>
       </item>
+      <item row="1" column="0">
+       <widget class="QLabel" name="label_3">
+        <property name="text">
+         <string>Width Step Size:</string>
+        </property>
+       </widget>
+      </item>
+      <item row="1" column="1">
+       <widget class="QSpinBox" name="sourceOutlineWidthStepSpinBox">
+        <property name="toolTip">
+         <string>Enter the amount of pixels the width of the outline should be increased or decreased</string>
+        </property>
+        <property name="alignment">
+         <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
+        </property>
+        <property name="minimum">
+         <number>10</number>
+        </property>
+        <property name="maximum">
+         <number>100</number>
+        </property>
+        <property name="singleStep">
+         <number>10</number>
+        </property>
+       </widget>
+      </item>
      </layout>
     </widget>
    </item>
@@ -390,19 +416,6 @@
      </layout>
     </widget>
    </item>
-   <item>
-    <spacer>
-     <property name="orientation">
-      <enum>Qt::Vertical</enum>
-     </property>
-     <property name="sizeHint" stdset="0">
-      <size>
-       <width>535</width>
-       <height>101</height>
-      </size>
-     </property>
-    </spacer>
-   </item>
   </layout>
  </widget>
  <tabstops>
@@ -418,6 +431,7 @@
   <tabstop>converttabsCheckBox</tabstop>
   <tabstop>sourceOutlineGroupBox</tabstop>
   <tabstop>sourceOutlineWidthSpinBox</tabstop>
+  <tabstop>sourceOutlineWidthStepSpinBox</tabstop>
   <tabstop>comment0CheckBox</tabstop>
   <tabstop>vsSelectionCheckBox</tabstop>
   <tabstop>vsUserCheckBox</tabstop>
--- a/eric6/Preferences/ConfigurationPages/EditorHighlightingStylesPage.py	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/EditorHighlightingStylesPage.py	Sun Oct 04 16:28:51 2020 +0200
@@ -612,20 +612,23 @@
         @rtype list of int and tuple of (int, int)
         """
         itm = self.styleElementList.currentItem()
-        parent = itm.parent()
-        if parent is None:
-            currentData = (
-                None, self.styleElementList.indexOfTopLevelItem(itm))
+        if itm:
+            parent = itm.parent()
+            if parent is None:
+                currentData = (
+                    None, self.styleElementList.indexOfTopLevelItem(itm))
+            else:
+                currentData = (
+                    self.styleElementList.indexOfTopLevelItem(parent),
+                    parent.indexOfChild(itm)
+                )
+            
+            savedState = [
+                self.lexerLanguageComboBox.currentIndex(),
+                currentData,
+            ]
         else:
-            currentData = (
-                self.styleElementList.indexOfTopLevelItem(parent),
-                parent.indexOfChild(itm)
-            )
-        
-        savedState = [
-            self.lexerLanguageComboBox.currentIndex(),
-            currentData,
-        ]
+            savedState = []
         return savedState
     
     def setState(self, state):
@@ -634,17 +637,18 @@
         
         @param state state data generated by saveState
         """
-        self.lexerLanguageComboBox.setCurrentIndex(state[0])
-        self.on_lexerLanguageComboBox_activated(
-            self.lexerLanguageComboBox.currentText())
-        
-        parentIndex, index = state[1]
-        if parentIndex is None:
-            itm = self.styleElementList.topLevelItem(index)
-        else:
-            parent = self.styleElementList.topLevelItem(parentIndex)
-            itm = parent.child(index)
-        self.styleElementList.setCurrentItem(itm)
+        if state:
+            self.lexerLanguageComboBox.setCurrentIndex(state[0])
+            self.on_lexerLanguageComboBox_activated(
+                self.lexerLanguageComboBox.currentText())
+            
+            parentIndex, index = state[1]
+            if parentIndex is None:
+                itm = self.styleElementList.topLevelItem(index)
+            else:
+                parent = self.styleElementList.topLevelItem(parentIndex)
+                itm = parent.child(index)
+            self.styleElementList.setCurrentItem(itm)
     
     #######################################################################
     ## Methods to add, delete and edit sub-styles and their definitions
--- a/eric6/Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -7,7 +7,7 @@
     <x>0</x>
     <y>0</y>
     <width>550</width>
-    <height>700</height>
+    <height>624</height>
    </rect>
   </property>
   <layout class="QVBoxLayout" name="verticalLayout">
--- a/eric6/Preferences/ConfigurationPages/EditorMouseClickHandlerPage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/EditorMouseClickHandlerPage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -7,7 +7,7 @@
     <x>0</x>
     <y>0</y>
     <width>506</width>
-    <height>398</height>
+    <height>246</height>
    </rect>
   </property>
   <layout class="QVBoxLayout" name="verticalLayout">
--- a/eric6/Preferences/ConfigurationPages/EditorPropertiesPage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/EditorPropertiesPage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -7,7 +7,7 @@
     <x>0</x>
     <y>0</y>
     <width>558</width>
-    <height>2930</height>
+    <height>2649</height>
    </rect>
   </property>
   <layout class="QVBoxLayout" name="verticalLayout_2">
@@ -1055,19 +1055,6 @@
      </layout>
     </widget>
    </item>
-   <item>
-    <spacer>
-     <property name="orientation">
-      <enum>Qt::Vertical</enum>
-     </property>
-     <property name="sizeHint" stdset="0">
-      <size>
-       <width>467</width>
-       <height>21</height>
-      </size>
-     </property>
-    </spacer>
-   </item>
   </layout>
  </widget>
  <tabstops>
--- a/eric6/Preferences/ConfigurationPages/EditorSearchPage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/EditorSearchPage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -7,7 +7,7 @@
     <x>0</x>
     <y>0</y>
     <width>576</width>
-    <height>596</height>
+    <height>393</height>
    </rect>
   </property>
   <layout class="QVBoxLayout" name="verticalLayout_2">
--- a/eric6/Preferences/ConfigurationPages/EditorSpellCheckingPage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/EditorSpellCheckingPage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -6,8 +6,8 @@
    <rect>
     <x>0</x>
     <y>0</y>
-    <width>578</width>
-    <height>666</height>
+    <width>576</width>
+    <height>663</height>
    </rect>
   </property>
   <layout class="QVBoxLayout" name="verticalLayout_4">
--- a/eric6/Preferences/ConfigurationPages/EditorStylesPage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/EditorStylesPage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -6,11 +6,11 @@
    <rect>
     <x>0</x>
     <y>0</y>
-    <width>655</width>
-    <height>2891</height>
+    <width>578</width>
+    <height>3217</height>
    </rect>
   </property>
-  <layout class="QVBoxLayout" name="verticalLayout_11">
+  <layout class="QVBoxLayout" name="verticalLayout_5">
    <item>
     <widget class="QLabel" name="headerLabel">
      <property name="text">
@@ -61,15 +61,15 @@
         <property name="checked">
          <bool>false</bool>
         </property>
-        <layout class="QHBoxLayout" name="horizontalLayout_7">
-         <item>
+        <layout class="QGridLayout" name="gridLayout_6">
+         <item row="0" column="0">
           <widget class="QLabel" name="TextLabel2_2_2_2_2_12">
            <property name="text">
             <string>Edit area foreground:</string>
            </property>
           </widget>
          </item>
-         <item>
+         <item row="0" column="1">
           <widget class="QPushButton" name="editAreaForegroundButton">
            <property name="minimumSize">
             <size>
@@ -85,14 +85,27 @@
            </property>
           </widget>
          </item>
-         <item>
+         <item row="0" column="2">
+          <spacer name="horizontalSpacer_6">
+           <property name="orientation">
+            <enum>Qt::Horizontal</enum>
+           </property>
+           <property name="sizeHint" stdset="0">
+            <size>
+             <width>263</width>
+             <height>20</height>
+            </size>
+           </property>
+          </spacer>
+         </item>
+         <item row="1" column="0">
           <widget class="QLabel" name="TextLabel2_2_2_2_2_11">
            <property name="text">
             <string>Edit area background:</string>
            </property>
           </widget>
          </item>
-         <item>
+         <item row="1" column="1">
           <widget class="QPushButton" name="editAreaBackgroundButton">
            <property name="minimumSize">
             <size>
@@ -163,16 +176,6 @@
       <string>Fonts</string>
      </property>
      <layout class="QGridLayout">
-      <item row="1" column="2">
-       <widget class="QCheckBox" name="monospacedCheckBox">
-        <property name="toolTip">
-         <string>Select, whether the monospaced font should be used as default</string>
-        </property>
-        <property name="text">
-         <string>Use monospaced as default</string>
-        </property>
-       </widget>
-      </item>
       <item row="0" column="1">
        <widget class="QLineEdit" name="defaultFontSample">
         <property name="focusPolicy">
@@ -225,6 +228,16 @@
         </property>
        </widget>
       </item>
+      <item row="2" column="0" colspan="2">
+       <widget class="QCheckBox" name="monospacedCheckBox">
+        <property name="toolTip">
+         <string>Select, whether the monospaced font should be used as default</string>
+        </property>
+        <property name="text">
+         <string>Use monospaced as default</string>
+        </property>
+       </widget>
+      </item>
      </layout>
     </widget>
    </item>
@@ -332,10 +345,10 @@
       </item>
       <item>
        <layout class="QGridLayout" name="gridLayout">
-        <item row="0" column="0">
-         <widget class="QLabel" name="TextLabel2_2_2_2_2_6">
+        <item row="3" column="0">
+         <widget class="QLabel" name="label">
           <property name="text">
-           <string>Margins foreground:</string>
+           <string>Foldmarkers foreground:</string>
           </property>
          </widget>
         </item>
@@ -355,37 +368,14 @@
           </property>
          </widget>
         </item>
-        <item row="0" column="2">
-         <widget class="QLabel" name="TextLabel2_2_2_2_2_7">
-          <property name="text">
-           <string>Margins background:</string>
-          </property>
-         </widget>
-        </item>
-        <item row="0" column="3">
-         <widget class="QPushButton" name="marginsBackgroundButton">
-          <property name="minimumSize">
-           <size>
-            <width>100</width>
-            <height>0</height>
-           </size>
-          </property>
-          <property name="toolTip">
-           <string>Select the background color for the margins</string>
-          </property>
-          <property name="text">
-           <string/>
-          </property>
-         </widget>
-        </item>
-        <item row="1" column="0">
+        <item row="2" column="0">
          <widget class="QLabel" name="TextLabel2_2_2_2_2_8">
           <property name="text">
            <string>Foldmargin background:</string>
           </property>
          </widget>
         </item>
-        <item row="1" column="1">
+        <item row="2" column="1">
          <widget class="QPushButton" name="foldmarginBackgroundButton">
           <property name="minimumSize">
            <size>
@@ -401,14 +391,14 @@
           </property>
          </widget>
         </item>
-        <item row="2" column="0">
-         <widget class="QLabel" name="label">
+        <item row="1" column="0">
+         <widget class="QLabel" name="TextLabel2_2_2_2_2_7">
           <property name="text">
-           <string>Foldmarkers foreground:</string>
+           <string>Margins background:</string>
           </property>
          </widget>
         </item>
-        <item row="2" column="1">
+        <item row="3" column="1">
          <widget class="QPushButton" name="foldmarkersForegroundButton">
           <property name="minimumSize">
            <size>
@@ -424,14 +414,37 @@
           </property>
          </widget>
         </item>
-        <item row="2" column="2">
+        <item row="0" column="0">
+         <widget class="QLabel" name="TextLabel2_2_2_2_2_6">
+          <property name="text">
+           <string>Margins foreground:</string>
+          </property>
+         </widget>
+        </item>
+        <item row="1" column="1">
+         <widget class="QPushButton" name="marginsBackgroundButton">
+          <property name="minimumSize">
+           <size>
+            <width>100</width>
+            <height>0</height>
+           </size>
+          </property>
+          <property name="toolTip">
+           <string>Select the background color for the margins</string>
+          </property>
+          <property name="text">
+           <string/>
+          </property>
+         </widget>
+        </item>
+        <item row="4" column="0">
          <widget class="QLabel" name="label_2">
           <property name="text">
            <string>Foldmarkers background:</string>
           </property>
          </widget>
         </item>
-        <item row="2" column="3">
+        <item row="4" column="1">
          <widget class="QPushButton" name="foldmarkersBackgroundButton">
           <property name="minimumSize">
            <size>
@@ -447,6 +460,19 @@
           </property>
          </widget>
         </item>
+        <item row="0" column="2">
+         <spacer name="horizontalSpacer_7">
+          <property name="orientation">
+           <enum>Qt::Horizontal</enum>
+          </property>
+          <property name="sizeHint" stdset="0">
+           <size>
+            <width>40</width>
+            <height>20</height>
+           </size>
+          </property>
+         </spacer>
+        </item>
        </layout>
       </item>
       <item>
@@ -506,7 +532,7 @@
      <property name="title">
       <string>Selection</string>
      </property>
-     <layout class="QVBoxLayout" name="_2">
+     <layout class="QVBoxLayout" name="verticalLayout_11">
       <item>
        <layout class="QGridLayout" name="_3">
         <item row="0" column="0">
@@ -545,15 +571,15 @@
        </layout>
       </item>
       <item>
-       <layout class="QHBoxLayout" name="_4">
-        <item>
+       <layout class="QGridLayout" name="gridLayout_12">
+        <item row="0" column="0">
          <widget class="QLabel" name="TextLabel2_2_2_2_2_4">
           <property name="text">
            <string>Selection foreground:</string>
           </property>
          </widget>
         </item>
-        <item>
+        <item row="0" column="1">
          <widget class="QPushButton" name="selectionForegroundButton">
           <property name="minimumSize">
            <size>
@@ -569,14 +595,27 @@
           </property>
          </widget>
         </item>
-        <item>
+        <item row="0" column="2">
+         <spacer name="horizontalSpacer_8">
+          <property name="orientation">
+           <enum>Qt::Horizontal</enum>
+          </property>
+          <property name="sizeHint" stdset="0">
+           <size>
+            <width>40</width>
+            <height>20</height>
+           </size>
+          </property>
+         </spacer>
+        </item>
+        <item row="1" column="0">
          <widget class="QLabel" name="TextLabel2_2_2_2_2_5">
           <property name="text">
            <string>Selection background:</string>
           </property>
          </widget>
         </item>
-        <item>
+        <item row="1" column="1">
          <widget class="QPushButton" name="selectionBackgroundButton">
           <property name="minimumSize">
            <size>
@@ -792,16 +831,6 @@
       <string>Debugging Line Markers</string>
      </property>
      <layout class="QGridLayout" name="gridLayout_10">
-      <item row="0" column="0" colspan="4">
-       <widget class="QCheckBox" name="debugMarkerBackgroundCheckBox">
-        <property name="toolTip">
-         <string>Select to indicate the debug markers using colored line backgrounds, arrow indicators otherwise</string>
-        </property>
-        <property name="text">
-         <string>Use background colors</string>
-        </property>
-       </widget>
-      </item>
       <item row="1" column="0">
        <widget class="QLabel" name="TextLabel3_2_2">
         <property name="text">
@@ -825,14 +854,37 @@
         </property>
        </widget>
       </item>
-      <item row="1" column="2">
+      <item row="0" column="0" colspan="4">
+       <widget class="QCheckBox" name="debugMarkerBackgroundCheckBox">
+        <property name="toolTip">
+         <string>Select to indicate the debug markers using colored line backgrounds, arrow indicators otherwise</string>
+        </property>
+        <property name="text">
+         <string>Use background colors</string>
+        </property>
+       </widget>
+      </item>
+      <item row="2" column="0">
        <widget class="QLabel" name="TextLabel4_2_2">
         <property name="text">
          <string>Error line marker:</string>
         </property>
        </widget>
       </item>
-      <item row="1" column="3">
+      <item row="1" column="2">
+       <spacer name="horizontalSpacer_11">
+        <property name="orientation">
+         <enum>Qt::Horizontal</enum>
+        </property>
+        <property name="sizeHint" stdset="0">
+         <size>
+          <width>40</width>
+          <height>20</height>
+         </size>
+        </property>
+       </spacer>
+      </item>
+      <item row="2" column="1">
        <widget class="QPushButton" name="errorMarkerButton">
         <property name="minimumSize">
          <size>
@@ -857,16 +909,6 @@
       <string>Braces</string>
      </property>
      <layout class="QGridLayout" name="_9">
-      <item row="0" column="0" colspan="2">
-       <widget class="QCheckBox" name="bracehighlightingCheckBox">
-        <property name="toolTip">
-         <string>Select whether matching and bad braces shall be highlighted.</string>
-        </property>
-        <property name="text">
-         <string>Highlight braces</string>
-        </property>
-       </widget>
-      </item>
       <item row="1" column="0">
        <widget class="QLabel" name="TextLabel1_3_2">
         <property name="text">
@@ -874,6 +916,35 @@
         </property>
        </widget>
       </item>
+      <item row="1" column="2">
+       <spacer name="horizontalSpacer_10">
+        <property name="orientation">
+         <enum>Qt::Horizontal</enum>
+        </property>
+        <property name="sizeHint" stdset="0">
+         <size>
+          <width>40</width>
+          <height>20</height>
+         </size>
+        </property>
+       </spacer>
+      </item>
+      <item row="2" column="1">
+       <widget class="QPushButton" name="matchingBracesBackButton">
+        <property name="minimumSize">
+         <size>
+          <width>100</width>
+          <height>0</height>
+         </size>
+        </property>
+        <property name="toolTip">
+         <string>Select the background color for highlighting matching braces.</string>
+        </property>
+        <property name="text">
+         <string/>
+        </property>
+       </widget>
+      </item>
       <item row="1" column="1">
        <widget class="QPushButton" name="matchingBracesButton">
         <property name="minimumSize">
@@ -890,30 +961,7 @@
         </property>
        </widget>
       </item>
-      <item row="1" column="2">
-       <widget class="QLabel" name="TextLabel1_3_2_2">
-        <property name="text">
-         <string>Matched braces background:</string>
-        </property>
-       </widget>
-      </item>
-      <item row="1" column="3">
-       <widget class="QPushButton" name="matchingBracesBackButton">
-        <property name="minimumSize">
-         <size>
-          <width>100</width>
-          <height>0</height>
-         </size>
-        </property>
-        <property name="toolTip">
-         <string>Select the background color for highlighting matching braces.</string>
-        </property>
-        <property name="text">
-         <string/>
-        </property>
-       </widget>
-      </item>
-      <item row="2" column="0">
+      <item row="3" column="0">
        <widget class="QLabel" name="TextLabel2_2_2">
         <property name="minimumSize">
          <size>
@@ -926,7 +974,7 @@
         </property>
        </widget>
       </item>
-      <item row="2" column="1">
+      <item row="3" column="1">
        <widget class="QPushButton" name="nonmatchingBracesButton">
         <property name="toolTip">
          <string>Select the color for  highlighting nonmatching braces.</string>
@@ -936,7 +984,14 @@
         </property>
        </widget>
       </item>
-      <item row="2" column="2">
+      <item row="2" column="0">
+       <widget class="QLabel" name="TextLabel1_3_2_2">
+        <property name="text">
+         <string>Matched braces background:</string>
+        </property>
+       </widget>
+      </item>
+      <item row="4" column="0">
        <widget class="QLabel" name="TextLabel2_2_2_3">
         <property name="minimumSize">
          <size>
@@ -949,7 +1004,7 @@
         </property>
        </widget>
       </item>
-      <item row="2" column="3">
+      <item row="4" column="1">
        <widget class="QPushButton" name="nonmatchingBracesBackButton">
         <property name="toolTip">
          <string>Select the background color for  highlighting nonmatching braces.</string>
@@ -959,6 +1014,16 @@
         </property>
        </widget>
       </item>
+      <item row="0" column="0" colspan="3">
+       <widget class="QCheckBox" name="bracehighlightingCheckBox">
+        <property name="toolTip">
+         <string>Select whether matching and bad braces shall be highlighted.</string>
+        </property>
+        <property name="text">
+         <string>Highlight braces</string>
+        </property>
+       </widget>
+      </item>
      </layout>
     </widget>
    </item>
@@ -1507,15 +1572,15 @@
        </layout>
       </item>
       <item>
-       <layout class="QHBoxLayout" name="horizontalLayout_3">
-        <item>
+       <layout class="QGridLayout" name="gridLayout_14">
+        <item row="0" column="0">
          <widget class="QLabel" name="TextLabel13_3_2_3">
           <property name="text">
            <string>Unsaved changes color:</string>
           </property>
          </widget>
         </item>
-        <item>
+        <item row="0" column="1">
          <widget class="QPushButton" name="changeMarkerUnsavedColorButton">
           <property name="minimumSize">
            <size>
@@ -1531,14 +1596,27 @@
           </property>
          </widget>
         </item>
-        <item>
+        <item row="0" column="2">
+         <spacer name="horizontalSpacer_12">
+          <property name="orientation">
+           <enum>Qt::Horizontal</enum>
+          </property>
+          <property name="sizeHint" stdset="0">
+           <size>
+            <width>40</width>
+            <height>20</height>
+           </size>
+          </property>
+         </spacer>
+        </item>
+        <item row="1" column="0">
          <widget class="QLabel" name="TextLabel13_3_2_4">
           <property name="text">
            <string>Saved changes color:</string>
           </property>
          </widget>
         </item>
-        <item>
+        <item row="1" column="1">
          <widget class="QPushButton" name="changeMarkerSavedColorButton">
           <property name="minimumSize">
            <size>
@@ -1616,15 +1694,15 @@
        </layout>
       </item>
       <item>
-       <layout class="QHBoxLayout" name="_15">
-        <item>
+       <layout class="QGridLayout" name="gridLayout_15">
+        <item row="0" column="0">
          <widget class="QLabel" name="TextLabel2_2_2_2_2_9">
           <property name="text">
            <string>Whitespace foreground:</string>
           </property>
          </widget>
         </item>
-        <item>
+        <item row="0" column="1">
          <widget class="QPushButton" name="whitespaceForegroundButton">
           <property name="minimumSize">
            <size>
@@ -1640,14 +1718,27 @@
           </property>
          </widget>
         </item>
-        <item>
+        <item row="0" column="2">
+         <spacer name="horizontalSpacer_13">
+          <property name="orientation">
+           <enum>Qt::Horizontal</enum>
+          </property>
+          <property name="sizeHint" stdset="0">
+           <size>
+            <width>40</width>
+            <height>20</height>
+           </size>
+          </property>
+         </spacer>
+        </item>
+        <item row="1" column="0">
          <widget class="QLabel" name="TextLabel2_2_2_2_2_10">
           <property name="text">
            <string>Whitespace background:</string>
           </property>
          </widget>
         </item>
-        <item>
+        <item row="1" column="1">
          <widget class="QPushButton" name="whitespaceBackgroundButton">
           <property name="minimumSize">
            <size>
@@ -1673,8 +1764,8 @@
      <property name="title">
       <string>Indentation Guides</string>
      </property>
-     <layout class="QVBoxLayout" name="verticalLayout_5">
-      <item>
+     <layout class="QGridLayout" name="gridLayout_13">
+      <item row="0" column="0" colspan="3">
        <widget class="QCheckBox" name="indentguidesCheckBox">
         <property name="toolTip">
          <string>Select whether indentation guides should be shown.</string>
@@ -1684,55 +1775,64 @@
         </property>
        </widget>
       </item>
-      <item>
-       <layout class="QHBoxLayout" name="_18">
-        <item>
-         <widget class="QLabel" name="TextLabel2_2_2_2_2_13">
-          <property name="text">
-           <string>Indentation Guides foreground:</string>
-          </property>
-         </widget>
-        </item>
-        <item>
-         <widget class="QPushButton" name="indentationGuidesForegroundButton">
-          <property name="minimumSize">
-           <size>
-            <width>100</width>
-            <height>0</height>
-           </size>
-          </property>
-          <property name="toolTip">
-           <string>Select the foreground color for indentation guides</string>
-          </property>
-          <property name="text">
-           <string/>
-          </property>
-         </widget>
-        </item>
-        <item>
-         <widget class="QLabel" name="TextLabel2_2_2_2_2_14">
-          <property name="text">
-           <string>Indentation Guides background:</string>
-          </property>
-         </widget>
-        </item>
-        <item>
-         <widget class="QPushButton" name="indentationGuidesBackgroundButton">
-          <property name="minimumSize">
-           <size>
-            <width>100</width>
-            <height>0</height>
-           </size>
-          </property>
-          <property name="toolTip">
-           <string>Select the background color for indentation guides</string>
-          </property>
-          <property name="text">
-           <string/>
-          </property>
-         </widget>
-        </item>
-       </layout>
+      <item row="1" column="0">
+       <widget class="QLabel" name="TextLabel2_2_2_2_2_13">
+        <property name="text">
+         <string>Indentation Guides foreground:</string>
+        </property>
+       </widget>
+      </item>
+      <item row="1" column="1">
+       <widget class="QPushButton" name="indentationGuidesForegroundButton">
+        <property name="minimumSize">
+         <size>
+          <width>100</width>
+          <height>0</height>
+         </size>
+        </property>
+        <property name="toolTip">
+         <string>Select the foreground color for indentation guides</string>
+        </property>
+        <property name="text">
+         <string/>
+        </property>
+       </widget>
+      </item>
+      <item row="1" column="2">
+       <spacer name="horizontalSpacer_9">
+        <property name="orientation">
+         <enum>Qt::Horizontal</enum>
+        </property>
+        <property name="sizeHint" stdset="0">
+         <size>
+          <width>223</width>
+          <height>20</height>
+         </size>
+        </property>
+       </spacer>
+      </item>
+      <item row="2" column="0">
+       <widget class="QLabel" name="TextLabel2_2_2_2_2_14">
+        <property name="text">
+         <string>Indentation Guides background:</string>
+        </property>
+       </widget>
+      </item>
+      <item row="2" column="1">
+       <widget class="QPushButton" name="indentationGuidesBackgroundButton">
+        <property name="minimumSize">
+         <size>
+          <width>100</width>
+          <height>0</height>
+         </size>
+        </property>
+        <property name="toolTip">
+         <string>Select the background color for indentation guides</string>
+        </property>
+        <property name="text">
+         <string/>
+        </property>
+       </widget>
       </item>
      </layout>
     </widget>
@@ -2100,19 +2200,6 @@
      </layout>
     </widget>
    </item>
-   <item>
-    <spacer>
-     <property name="orientation">
-      <enum>Qt::Vertical</enum>
-     </property>
-     <property name="sizeHint" stdset="0">
-      <size>
-       <width>558</width>
-       <height>20</height>
-      </size>
-     </property>
-    </spacer>
-   </item>
   </layout>
  </widget>
  <tabstops>
--- a/eric6/Preferences/ConfigurationPages/EditorSyntaxPage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/EditorSyntaxPage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -7,7 +7,7 @@
     <x>0</x>
     <y>0</y>
     <width>400</width>
-    <height>412</height>
+    <height>307</height>
    </rect>
   </property>
   <property name="windowTitle">
--- a/eric6/Preferences/ConfigurationPages/EmailPage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/EmailPage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -7,7 +7,7 @@
     <x>0</x>
     <y>0</y>
     <width>450</width>
-    <height>498</height>
+    <height>580</height>
    </rect>
   </property>
   <layout class="QVBoxLayout" name="verticalLayout_3">
--- a/eric6/Preferences/ConfigurationPages/GraphicsPage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/GraphicsPage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -7,7 +7,7 @@
     <x>0</x>
     <y>0</y>
     <width>440</width>
-    <height>334</height>
+    <height>241</height>
    </rect>
   </property>
   <layout class="QVBoxLayout" name="verticalLayout">
--- a/eric6/Preferences/ConfigurationPages/HelpDocumentationPage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/HelpDocumentationPage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -7,7 +7,7 @@
     <x>0</x>
     <y>0</y>
     <width>526</width>
-    <height>894</height>
+    <height>493</height>
    </rect>
   </property>
   <layout class="QVBoxLayout" name="verticalLayout">
--- a/eric6/Preferences/ConfigurationPages/HelpViewersPage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/HelpViewersPage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -6,8 +6,8 @@
    <rect>
     <x>0</x>
     <y>0</y>
-    <width>613</width>
-    <height>634</height>
+    <width>520</width>
+    <height>177</height>
    </rect>
   </property>
   <layout class="QVBoxLayout" name="verticalLayout_3">
--- a/eric6/Preferences/ConfigurationPages/HexEditorPage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/HexEditorPage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -6,8 +6,8 @@
    <rect>
     <x>0</x>
     <y>0</y>
-    <width>623</width>
-    <height>721</height>
+    <width>519</width>
+    <height>664</height>
    </rect>
   </property>
   <layout class="QVBoxLayout" name="verticalLayout">
--- a/eric6/Preferences/ConfigurationPages/InterfacePage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/InterfacePage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -7,7 +7,7 @@
     <x>0</x>
     <y>0</y>
     <width>557</width>
-    <height>858</height>
+    <height>921</height>
    </rect>
   </property>
   <layout class="QVBoxLayout" name="verticalLayout_2">
@@ -481,19 +481,6 @@
     </widget>
    </item>
    <item>
-    <spacer>
-     <property name="orientation">
-      <enum>Qt::Vertical</enum>
-     </property>
-     <property name="sizeHint" stdset="0">
-      <size>
-       <width>537</width>
-       <height>41</height>
-      </size>
-     </property>
-    </spacer>
-   </item>
-   <item>
     <widget class="QPushButton" name="resetLayoutButton">
      <property name="text">
       <string>Reset layout to factory defaults</string>
--- a/eric6/Preferences/ConfigurationPages/IrcPage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/IrcPage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -7,7 +7,7 @@
     <x>0</x>
     <y>0</y>
     <width>522</width>
-    <height>1022</height>
+    <height>995</height>
    </rect>
   </property>
   <layout class="QVBoxLayout" name="verticalLayout_3">
@@ -875,19 +875,6 @@
      </layout>
     </widget>
    </item>
-   <item>
-    <spacer name="verticalSpacer">
-     <property name="orientation">
-      <enum>Qt::Vertical</enum>
-     </property>
-     <property name="sizeHint" stdset="0">
-      <size>
-       <width>20</width>
-       <height>130</height>
-      </size>
-     </property>
-    </spacer>
-   </item>
   </layout>
  </widget>
  <tabstops>
--- a/eric6/Preferences/ConfigurationPages/LogViewerPage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/LogViewerPage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -6,8 +6,8 @@
    <rect>
     <x>0</x>
     <y>0</y>
-    <width>480</width>
-    <height>515</height>
+    <width>442</width>
+    <height>388</height>
    </rect>
   </property>
   <layout class="QVBoxLayout" name="verticalLayout">
--- a/eric6/Preferences/ConfigurationPages/MicroPythonPage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/MicroPythonPage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -7,7 +7,7 @@
     <x>0</x>
     <y>0</y>
     <width>476</width>
-    <height>869</height>
+    <height>821</height>
    </rect>
   </property>
   <layout class="QVBoxLayout" name="verticalLayout">
@@ -357,19 +357,6 @@
      </layout>
     </widget>
    </item>
-   <item>
-    <spacer name="verticalSpacer">
-     <property name="orientation">
-      <enum>Qt::Vertical</enum>
-     </property>
-     <property name="sizeHint" stdset="0">
-      <size>
-       <width>20</width>
-       <height>252</height>
-      </size>
-     </property>
-    </spacer>
-   </item>
   </layout>
  </widget>
  <customwidgets>
--- a/eric6/Preferences/ConfigurationPages/NetworkPage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/NetworkPage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -6,8 +6,8 @@
    <rect>
     <x>0</x>
     <y>0</y>
-    <width>591</width>
-    <height>1261</height>
+    <width>589</width>
+    <height>1099</height>
    </rect>
   </property>
   <layout class="QVBoxLayout" name="verticalLayout_7">
@@ -477,19 +477,6 @@
      </layout>
     </widget>
    </item>
-   <item>
-    <spacer>
-     <property name="orientation">
-      <enum>Qt::Vertical</enum>
-     </property>
-     <property name="sizeHint" stdset="0">
-      <size>
-       <width>571</width>
-       <height>21</height>
-      </size>
-     </property>
-    </spacer>
-   </item>
   </layout>
  </widget>
  <customwidgets>
--- a/eric6/Preferences/ConfigurationPages/NotificationsPage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/NotificationsPage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -6,8 +6,8 @@
    <rect>
     <x>0</x>
     <y>0</y>
-    <width>507</width>
-    <height>300</height>
+    <width>419</width>
+    <height>249</height>
    </rect>
   </property>
   <property name="windowTitle">
--- a/eric6/Preferences/ConfigurationPages/PipPage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/PipPage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -6,8 +6,8 @@
    <rect>
     <x>0</x>
     <y>0</y>
-    <width>602</width>
-    <height>389</height>
+    <width>402</width>
+    <height>247</height>
    </rect>
   </property>
   <layout class="QVBoxLayout" name="verticalLayout_3">
--- a/eric6/Preferences/ConfigurationPages/PluginManagerPage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/PluginManagerPage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -7,7 +7,7 @@
     <x>0</x>
     <y>0</y>
     <width>528</width>
-    <height>436</height>
+    <height>427</height>
    </rect>
   </property>
   <layout class="QVBoxLayout" name="verticalLayout">
--- a/eric6/Preferences/ConfigurationPages/PrinterPage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/PrinterPage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -7,7 +7,7 @@
     <x>0</x>
     <y>0</y>
     <width>448</width>
-    <height>568</height>
+    <height>468</height>
    </rect>
   </property>
   <layout class="QVBoxLayout" name="verticalLayout">
--- a/eric6/Preferences/ConfigurationPages/ProjectBrowserPage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/ProjectBrowserPage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -7,7 +7,7 @@
     <x>0</x>
     <y>0</y>
     <width>617</width>
-    <height>497</height>
+    <height>468</height>
    </rect>
   </property>
   <layout class="QVBoxLayout" name="verticalLayout_2">
--- a/eric6/Preferences/ConfigurationPages/ProjectPage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/ProjectPage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -6,8 +6,8 @@
    <rect>
     <x>0</x>
     <y>0</y>
-    <width>604</width>
-    <height>905</height>
+    <width>602</width>
+    <height>834</height>
    </rect>
   </property>
   <layout class="QVBoxLayout" name="verticalLayout_3">
@@ -308,19 +308,6 @@
      </layout>
     </widget>
    </item>
-   <item>
-    <spacer>
-     <property name="orientation">
-      <enum>Qt::Vertical</enum>
-     </property>
-     <property name="sizeHint" stdset="0">
-      <size>
-       <width>584</width>
-       <height>20</height>
-      </size>
-     </property>
-    </spacer>
-   </item>
   </layout>
  </widget>
  <tabstops>
--- a/eric6/Preferences/ConfigurationPages/ProtobufPage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/ProtobufPage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -6,8 +6,8 @@
    <rect>
     <x>0</x>
     <y>0</y>
-    <width>589</width>
-    <height>490</height>
+    <width>505</width>
+    <height>247</height>
    </rect>
   </property>
   <layout class="QVBoxLayout" name="verticalLayout">
--- a/eric6/Preferences/ConfigurationPages/PythonPage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/PythonPage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -6,8 +6,8 @@
    <rect>
     <x>0</x>
     <y>0</y>
-    <width>648</width>
-    <height>779</height>
+    <width>529</width>
+    <height>702</height>
    </rect>
   </property>
   <layout class="QVBoxLayout" name="verticalLayout_2">
@@ -337,19 +337,6 @@
      </layout>
     </widget>
    </item>
-   <item>
-    <spacer>
-     <property name="orientation">
-      <enum>Qt::Vertical</enum>
-     </property>
-     <property name="sizeHint" stdset="0">
-      <size>
-       <width>464</width>
-       <height>41</height>
-      </size>
-     </property>
-    </spacer>
-   </item>
   </layout>
  </widget>
  <tabstops>
--- a/eric6/Preferences/ConfigurationPages/QtPage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/QtPage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -6,8 +6,8 @@
    <rect>
     <x>0</x>
     <y>0</y>
-    <width>642</width>
-    <height>929</height>
+    <width>532</width>
+    <height>723</height>
    </rect>
   </property>
   <layout class="QVBoxLayout" name="verticalLayout_6">
@@ -329,19 +329,6 @@
      </layout>
     </widget>
    </item>
-   <item>
-    <spacer>
-     <property name="orientation">
-      <enum>Qt::Vertical</enum>
-     </property>
-     <property name="sizeHint" stdset="0">
-      <size>
-       <width>496</width>
-       <height>20</height>
-      </size>
-     </property>
-    </spacer>
-   </item>
   </layout>
  </widget>
  <customwidgets>
--- a/eric6/Preferences/ConfigurationPages/SecurityPage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/SecurityPage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -7,7 +7,7 @@
     <x>0</x>
     <y>0</y>
     <width>400</width>
-    <height>434</height>
+    <height>250</height>
    </rect>
   </property>
   <layout class="QVBoxLayout" name="verticalLayout_3">
--- a/eric6/Preferences/ConfigurationPages/ShellPage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/ShellPage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -6,8 +6,8 @@
    <rect>
     <x>0</x>
     <y>0</y>
-    <width>587</width>
-    <height>538</height>
+    <width>573</width>
+    <height>465</height>
    </rect>
   </property>
   <layout class="QVBoxLayout" name="verticalLayout">
--- a/eric6/Preferences/ConfigurationPages/TasksPage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/TasksPage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -6,8 +6,8 @@
    <rect>
     <x>0</x>
     <y>0</y>
-    <width>600</width>
-    <height>678</height>
+    <width>413</width>
+    <height>618</height>
    </rect>
   </property>
   <layout class="QVBoxLayout" name="verticalLayout">
--- a/eric6/Preferences/ConfigurationPages/TemplatesPage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/TemplatesPage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -6,8 +6,8 @@
    <rect>
     <x>0</x>
     <y>0</y>
-    <width>532</width>
-    <height>541</height>
+    <width>414</width>
+    <height>478</height>
    </rect>
   </property>
   <layout class="QVBoxLayout" name="verticalLayout">
--- a/eric6/Preferences/ConfigurationPages/TrayStarterPage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/TrayStarterPage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -7,7 +7,7 @@
     <x>0</x>
     <y>0</y>
     <width>482</width>
-    <height>473</height>
+    <height>245</height>
    </rect>
   </property>
   <layout class="QVBoxLayout" name="verticalLayout_2">
--- a/eric6/Preferences/ConfigurationPages/VcsPage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/VcsPage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -6,8 +6,8 @@
    <rect>
     <x>0</x>
     <y>0</y>
-    <width>619</width>
-    <height>572</height>
+    <width>576</width>
+    <height>554</height>
    </rect>
   </property>
   <layout class="QVBoxLayout" name="verticalLayout_2">
--- a/eric6/Preferences/ConfigurationPages/ViewmanagerPage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/ViewmanagerPage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -1,66 +1,67 @@
-<ui version="4.0" >
+<?xml version="1.0" encoding="UTF-8"?>
+<ui version="4.0">
  <class>ViewmanagerPage</class>
- <widget class="QWidget" name="ViewmanagerPage" >
-  <property name="geometry" >
+ <widget class="QWidget" name="ViewmanagerPage">
+  <property name="geometry">
    <rect>
     <x>0</x>
     <y>0</y>
-    <width>406</width>
-    <height>315</height>
+    <width>429</width>
+    <height>337</height>
    </rect>
   </property>
-  <layout class="QVBoxLayout" >
+  <layout class="QVBoxLayout">
    <item>
-    <widget class="QLabel" name="headerLabel" >
-     <property name="text" >
-      <string>&lt;b>Configure viewmanager&lt;/b></string>
+    <widget class="QLabel" name="headerLabel">
+     <property name="text">
+      <string>&lt;b&gt;Configure viewmanager&lt;/b&gt;</string>
      </property>
     </widget>
    </item>
    <item>
-    <widget class="Line" name="line9_2" >
-     <property name="frameShape" >
+    <widget class="Line" name="line9_2">
+     <property name="frameShape">
       <enum>QFrame::HLine</enum>
      </property>
-     <property name="frameShadow" >
+     <property name="frameShadow">
       <enum>QFrame::Sunken</enum>
      </property>
-     <property name="orientation" >
+     <property name="orientation">
       <enum>Qt::Horizontal</enum>
      </property>
     </widget>
    </item>
    <item>
-    <widget class="QLabel" name="TextLabel1_2_2_2_3" >
-     <property name="text" >
-      <string>&lt;font color="#FF0000">&lt;b>Note:&lt;/b> This setting is activated at the next startup of the application.&lt;/font></string>
+    <widget class="QLabel" name="TextLabel1_2_2_2_3">
+     <property name="text">
+      <string>&lt;font color=&quot;#FF0000&quot;&gt;&lt;b&gt;Note:&lt;/b&gt; This setting is activated at the next startup of the application.&lt;/font&gt;</string>
      </property>
     </widget>
    </item>
    <item>
-    <layout class="QHBoxLayout" >
+    <layout class="QHBoxLayout">
      <item>
-      <widget class="QLabel" name="windowLabel" >
-       <property name="text" >
+      <widget class="QLabel" name="windowLabel">
+       <property name="text">
         <string>Window view:</string>
        </property>
-       <property name="buddy" >
+       <property name="buddy">
         <cstring>windowComboBox</cstring>
        </property>
       </widget>
      </item>
      <item>
-      <widget class="QComboBox" name="windowComboBox" >
-       <property name="sizePolicy" >
-        <sizepolicy vsizetype="Fixed" hsizetype="Expanding" >
+      <widget class="QComboBox" name="windowComboBox">
+       <property name="sizePolicy">
+        <sizepolicy hsizetype="Expanding" vsizetype="Fixed">
          <horstretch>0</horstretch>
          <verstretch>0</verstretch>
         </sizepolicy>
        </property>
-       <property name="toolTip" >
+       <property name="toolTip">
         <string>Select the window view type.</string>
        </property>
-       <property name="whatsThis" >
+       <property name="whatsThis">
         <string>The kind of window view can be selected from this list. The picture below gives an example of the selected view type.</string>
        </property>
       </widget>
@@ -68,71 +69,71 @@
     </layout>
    </item>
    <item>
-    <widget class="QLabel" name="previewPixmap" >
-     <property name="toolTip" >
+    <widget class="QLabel" name="previewPixmap">
+     <property name="toolTip">
       <string>Preview of selected window view</string>
      </property>
-     <property name="whatsThis" >
+     <property name="whatsThis">
       <string>This displays a small preview of the selected window view. This is the way the source windows are displayed in the application.</string>
      </property>
-     <property name="pixmap" >
+     <property name="pixmap">
       <pixmap/>
      </property>
-     <property name="scaledContents" >
+     <property name="scaledContents">
       <bool>false</bool>
      </property>
-     <property name="alignment" >
+     <property name="alignment">
       <set>Qt::AlignCenter</set>
      </property>
     </widget>
    </item>
    <item>
-    <widget class="Line" name="line" >
-     <property name="orientation" >
+    <widget class="Line" name="line">
+     <property name="orientation">
       <enum>Qt::Horizontal</enum>
      </property>
     </widget>
    </item>
    <item>
-    <widget class="QGroupBox" name="tabViewGroupBox" >
-     <property name="enabled" >
+    <widget class="QGroupBox" name="tabViewGroupBox">
+     <property name="enabled">
       <bool>false</bool>
      </property>
-     <property name="title" >
+     <property name="title">
       <string>Tabbed View</string>
      </property>
-     <layout class="QVBoxLayout" >
+     <layout class="QVBoxLayout">
       <item>
-       <layout class="QHBoxLayout" >
+       <layout class="QHBoxLayout">
         <item>
-         <widget class="QLabel" name="filenameLengthLabel" >
-          <property name="text" >
+         <widget class="QLabel" name="filenameLengthLabel">
+          <property name="text">
            <string>Filename Length of Tab:</string>
           </property>
          </widget>
         </item>
         <item>
-         <widget class="QSpinBox" name="filenameLengthSpinBox" >
-          <property name="toolTip" >
+         <widget class="QSpinBox" name="filenameLengthSpinBox">
+          <property name="toolTip">
            <string>Enter the number of characters to be shown in the tab.</string>
           </property>
-          <property name="minimum" >
+          <property name="minimum">
            <number>1</number>
           </property>
-          <property name="maximum" >
+          <property name="maximum">
            <number>100</number>
           </property>
-          <property name="value" >
+          <property name="value">
            <number>40</number>
           </property>
          </widget>
         </item>
         <item>
          <spacer>
-          <property name="orientation" >
+          <property name="orientation">
            <enum>Qt::Horizontal</enum>
           </property>
-          <property name="sizeHint" stdset="0" >
+          <property name="sizeHint" stdset="0">
            <size>
             <width>81</width>
             <height>20</height>
@@ -143,11 +144,11 @@
        </layout>
       </item>
       <item>
-       <widget class="QCheckBox" name="filenameOnlyCheckBox" >
-        <property name="toolTip" >
+       <widget class="QCheckBox" name="filenameOnlyCheckBox">
+        <property name="toolTip">
          <string>Select to display the filename only</string>
         </property>
-        <property name="text" >
+        <property name="text">
          <string>Show filename only</string>
         </property>
        </widget>
@@ -156,40 +157,40 @@
     </widget>
    </item>
    <item>
-    <widget class="QGroupBox" name="groupBox_7" >
-     <property name="title" >
+    <widget class="QGroupBox" name="groupBox_7">
+     <property name="title">
       <string>Recent Files</string>
      </property>
-     <layout class="QHBoxLayout" >
+     <layout class="QHBoxLayout">
       <item>
-       <widget class="QLabel" name="label" >
-        <property name="text" >
+       <widget class="QLabel" name="label">
+        <property name="text">
          <string>Number of recent files:</string>
         </property>
        </widget>
       </item>
       <item>
-       <widget class="QSpinBox" name="recentFilesSpinBox" >
-        <property name="toolTip" >
+       <widget class="QSpinBox" name="recentFilesSpinBox">
+        <property name="toolTip">
          <string>Enter the number of recent files to remember</string>
         </property>
-        <property name="alignment" >
+        <property name="alignment">
          <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
         </property>
-        <property name="minimum" >
+        <property name="minimum">
          <number>5</number>
         </property>
-        <property name="maximum" >
+        <property name="maximum">
          <number>50</number>
         </property>
        </widget>
       </item>
       <item>
        <spacer>
-        <property name="orientation" >
+        <property name="orientation">
          <enum>Qt::Horizontal</enum>
         </property>
-        <property name="sizeHint" stdset="0" >
+        <property name="sizeHint" stdset="0">
          <size>
           <width>40</width>
           <height>20</height>
@@ -202,10 +203,10 @@
    </item>
    <item>
     <spacer>
-     <property name="orientation" >
+     <property name="orientation">
       <enum>Qt::Vertical</enum>
      </property>
-     <property name="sizeHint" stdset="0" >
+     <property name="sizeHint" stdset="0">
       <size>
        <width>388</width>
        <height>20</height>
--- a/eric6/Preferences/ConfigurationPages/WebBrowserAppearancePage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/WebBrowserAppearancePage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -7,7 +7,7 @@
     <x>0</x>
     <y>0</y>
     <width>499</width>
-    <height>1256</height>
+    <height>1126</height>
    </rect>
   </property>
   <layout class="QVBoxLayout" name="verticalLayout_6">
@@ -524,19 +524,6 @@
      </layout>
     </widget>
    </item>
-   <item>
-    <spacer>
-     <property name="orientation">
-      <enum>Qt::Vertical</enum>
-     </property>
-     <property name="sizeHint" stdset="0">
-      <size>
-       <width>479</width>
-       <height>121</height>
-      </size>
-     </property>
-    </spacer>
-   </item>
   </layout>
  </widget>
  <customwidgets>
--- a/eric6/Preferences/ConfigurationPages/WebBrowserFlashCookieManagerPage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/WebBrowserFlashCookieManagerPage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -6,8 +6,8 @@
    <rect>
     <x>0</x>
     <y>0</y>
-    <width>588</width>
-    <height>419</height>
+    <width>462</width>
+    <height>426</height>
    </rect>
   </property>
   <layout class="QVBoxLayout" name="verticalLayout">
--- a/eric6/Preferences/ConfigurationPages/WebBrowserInterfacePage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/WebBrowserInterfacePage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -6,8 +6,8 @@
    <rect>
     <x>0</x>
     <y>0</y>
-    <width>557</width>
-    <height>152</height>
+    <width>555</width>
+    <height>133</height>
    </rect>
   </property>
   <layout class="QVBoxLayout" name="verticalLayout">
--- a/eric6/Preferences/ConfigurationPages/WebBrowserPage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/WebBrowserPage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -7,7 +7,7 @@
     <x>0</x>
     <y>0</y>
     <width>650</width>
-    <height>2361</height>
+    <height>2204</height>
    </rect>
   </property>
   <layout class="QVBoxLayout" name="verticalLayout_6">
@@ -1211,19 +1211,6 @@
      </layout>
     </widget>
    </item>
-   <item>
-    <spacer>
-     <property name="orientation">
-      <enum>Qt::Vertical</enum>
-     </property>
-     <property name="sizeHint" stdset="0">
-      <size>
-       <width>479</width>
-       <height>121</height>
-      </size>
-     </property>
-    </spacer>
-   </item>
   </layout>
  </widget>
  <tabstops>
--- a/eric6/Preferences/ConfigurationPages/WebBrowserSpellCheckingPage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/WebBrowserSpellCheckingPage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -7,7 +7,7 @@
     <x>0</x>
     <y>0</y>
     <width>499</width>
-    <height>583</height>
+    <height>519</height>
    </rect>
   </property>
   <layout class="QVBoxLayout" name="verticalLayout_3">
--- a/eric6/Preferences/ConfigurationPages/WebBrowserVirusTotalPage.ui	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/ConfigurationPages/WebBrowserVirusTotalPage.ui	Sun Oct 04 16:28:51 2020 +0200
@@ -6,8 +6,8 @@
    <rect>
     <x>0</x>
     <y>0</y>
-    <width>485</width>
-    <height>409</height>
+    <width>455</width>
+    <height>303</height>
    </rect>
   </property>
   <layout class="QVBoxLayout" name="verticalLayout_2">
@@ -144,7 +144,7 @@
      <property name="sizeHint" stdset="0">
       <size>
        <width>20</width>
-       <height>74</height>
+       <height>40</height>
       </size>
      </property>
     </spacer>
--- a/eric6/Preferences/__init__.py	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/Preferences/__init__.py	Sun Oct 04 16:28:51 2020 +0200
@@ -496,6 +496,7 @@
         
         "ShowSourceOutline": True,
         "SourceOutlineWidth": 200,
+        "SourceOutlineStepSize": 50,
         
         # All (most) lexers
         "AllFoldCompact": True,
@@ -2097,7 +2098,8 @@
                  "OnlineSyntaxCheckInterval", "OnlineChangeTraceInterval",
                  "WrapLongLinesMode", "WrapVisualFlag", "WrapIndentMode",
                  "WrapStartIndent", "CallTipsPosition", "VirtualSpaceOptions",
-                 "PreviewRefreshWaitTimer", "SourceOutlineWidth"]:
+                 "PreviewRefreshWaitTimer", "SourceOutlineWidth",
+                 "SourceOutlineStepSize"]:
         return int(prefClass.settings.value(
             "Editor/" + key, prefClass.editorDefaults[key]))
     elif key in ["AdditionalOpenFilters", "AdditionalSaveFilters",
--- a/eric6/QScintilla/Editor.py	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/QScintilla/Editor.py	Sun Oct 04 16:28:51 2020 +0200
@@ -27,7 +27,7 @@
 from E5Gui import E5FileDialog, E5MessageBox
 from E5Utilities.E5Cache import E5Cache
 
-from .QsciScintillaCompat import QsciScintillaCompat, QSCINTILLA_VERSION
+from .QsciScintillaCompat import QsciScintillaCompat
 from .EditorMarkerMap import EditorMarkerMap
 from .SpellChecker import SpellChecker
 
@@ -1741,6 +1741,7 @@
         
         if language.startswith("Pygments|"):
             pyname = language
+            self.filetype = language.split("|")[-1]
             language = ""
         
         from . import Lexers
@@ -4593,8 +4594,7 @@
         self.caretWidth = Preferences.getEditor("CaretWidth")
         self.setCaretWidth(self.caretWidth)
         self.caretLineFrameWidth = Preferences.getEditor("CaretLineFrameWidth")
-        if QSCINTILLA_VERSION() >= 0x020B00:
-            self.setCaretLineFrameWidth(self.caretLineFrameWidth)
+        self.setCaretLineFrameWidth(self.caretLineFrameWidth)
         self.useMonospaced = Preferences.getEditor("UseMonospacedFont")
         self.setMonospaced(self.useMonospaced)
         edgeMode = Preferences.getEditor("EdgeMode")
--- a/eric6/QScintilla/EditorOutline.py	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/QScintilla/EditorOutline.py	Sun Oct 04 16:28:51 2020 +0200
@@ -7,7 +7,7 @@
 Module implementing an outline widget for source code navigation of the editor.
 """
 
-from PyQt5.QtCore import pyqtSlot, Qt, QCoreApplication, QModelIndex
+from PyQt5.QtCore import pyqtSlot, Qt, QCoreApplication, QModelIndex, QPoint
 from PyQt5.QtWidgets import QTreeView, QAbstractItemView, QMenu, QApplication
 
 from UI.BrowserSortFilterProxyModel import BrowserSortFilterProxyModel
@@ -18,14 +18,14 @@
 
 from .EditorOutlineModel import EditorOutlineModel
 
+import Preferences
+
 
 class EditorOutlineView(QTreeView):
     """
     Class implementing an outline widget for source code navigation of the
     editor.
     """
-    WidthIncrement = 50
-    
     def __init__(self, editor, populate=True, parent=None):
         """
         Constructor
@@ -101,6 +101,7 @@
             
             self.__model.clear()
     
+    @pyqtSlot()
     def __resizeColumns(self):
         """
         Private slot to resize the view when items get expanded or collapsed.
@@ -116,6 +117,7 @@
         """
         return self.__model.isPopulated()
     
+    @pyqtSlot()
     def repopulate(self):
         """
         Public slot to repopulate the model.
@@ -125,6 +127,7 @@
             self.__model.repopulate()
             self.__completeRepopulate()
     
+    @pyqtSlot()
     def __prepareRepopulate(self):
         """
         Private slot to prepare to repopulate the outline view.
@@ -142,6 +145,7 @@
                     self.model().item(childIndex).data(0))
             childIndex = self.indexBelow(childIndex)
     
+    @pyqtSlot()
     def __completeRepopulate(self):
         """
         Private slot to complete the repopulate of the outline view.
@@ -170,6 +174,7 @@
         """
         return language in EditorOutlineModel.SupportedLanguages
     
+    @pyqtSlot(QModelIndex)
     def __gotoItem(self, index):
         """
         Private slot to set the editor cursor.
@@ -250,10 +255,14 @@
             QCoreApplication.translate(
                 'EditorOutlineView', 'Increment Width'),
             self.__incWidth)
-        self.__menu.addAction(
+        self.__decWidthAct = self.__menu.addAction(
             QCoreApplication.translate(
                 'EditorOutlineView', 'Decrement Width'),
             self.__decWidth)
+        self.__menu.addAction(
+            QCoreApplication.translate(
+                'EditorOutlineView', 'Set Default Width'),
+            self.__defaultWidth)
         
         # create the attribute/import menu
         self.__gotoMenu = QMenu(
@@ -287,10 +296,14 @@
             QCoreApplication.translate(
                 'EditorOutlineView', 'Increment Width'),
             self.__incWidth)
-        self.__attributeMenu.addAction(
+        self.__attributeDecWidthAct = self.__attributeMenu.addAction(
             QCoreApplication.translate(
                 'EditorOutlineView', 'Decrement Width'),
             self.__decWidth)
+        self.__attributeMenu.addAction(
+            QCoreApplication.translate(
+                'EditorOutlineView', 'Set Default Width'),
+            self.__defaultWidth)
         
         # create the background menu
         self.__backMenu = QMenu(self)
@@ -316,11 +329,16 @@
             QCoreApplication.translate(
                 'EditorOutlineView', 'Increment Width'),
             self.__incWidth)
-        self.__backMenu.addAction(
+        self.__backDecWidthAct = self.__backMenu.addAction(
             QCoreApplication.translate(
                 'EditorOutlineView', 'Decrement Width'),
             self.__decWidth)
+        self.__backMenu.addAction(
+            QCoreApplication.translate(
+                'EditorOutlineView', 'Set Default Width'),
+            self.__defaultWidth)
     
+    @pyqtSlot(QPoint)
     def __contextMenuRequested(self, coord):
         """
         Private slot to show the context menu.
@@ -331,6 +349,11 @@
         index = self.indexAt(coord)
         coord = self.mapToGlobal(coord)
         
+        decWidthEnable = (
+            self.maximumWidth() !=
+            2 * Preferences.getEditor("SourceOutlineStepSize")
+        )
+        
         if index.isValid():
             self.setCurrentIndex(index)
             
@@ -338,12 +361,16 @@
             if isinstance(
                 itm, (BrowserClassAttributeItem, BrowserImportItem)
             ):
+                self.__attributeDecWidthAct.setEnabled(decWidthEnable)
                 self.__attributeMenu.popup(coord)
             else:
+                self.__decWidthAct.setEnabled(decWidthEnable)
                 self.__menu.popup(coord)
         else:
+            self.__backDecWidthAct.setEnabled(decWidthEnable)
             self.__backMenu.popup(coord)
     
+    @pyqtSlot()
     def __showGotoMenu(self):
         """
         Private slot to prepare the goto submenu of the attribute menu.
@@ -369,6 +396,7 @@
     ## Context menu handlers below
     #######################################################################
     
+    @pyqtSlot()
     def __gotoAttribute(self, act):
         """
         Private slot to handle the selection of the goto menu.
@@ -378,12 +406,14 @@
         lineno = act.data()
         self.__model.editor().gotoLine(lineno)
     
+    @pyqtSlot()
     def __goto(self):
         """
         Private slot to move the editor cursor to the line of the context item.
         """
         self.__gotoItem(self.currentIndex())
     
+    @pyqtSlot()
     def __copyToClipboard(self):
         """
         Private slot to copy the file name of the editor to the clipboard.
@@ -394,20 +424,34 @@
             cb = QApplication.clipboard()
             cb.setText(fn)
     
+    @pyqtSlot()
     def __incWidth(self):
         """
-        Private method to increment the width of the outline.
+        Private slot to increment the width of the outline.
         """
         self.setMaximumWidth(
-            self.maximumWidth() + EditorOutlineView.WidthIncrement)
+            self.maximumWidth() +
+            Preferences.getEditor("SourceOutlineStepSize")
+        )
         self.updateGeometry()
     
+    @pyqtSlot()
     def __decWidth(self):
         """
-        Private method to decrement the width of the outline.
+        Private slot to decrement the width of the outline.
         """
-        self.setMaximumWidth(
-            self.maximumWidth() - EditorOutlineView.WidthIncrement)
+        stepSize = Preferences.getEditor("SourceOutlineStepSize")
+        newWidth = self.maximumWidth() - stepSize
+        
+        self.setMaximumWidth(max(newWidth, 2 * stepSize))
+        self.updateGeometry()
+    
+    @pyqtSlot()
+    def __defaultWidth(self):
+        """
+        Private slot to set the outline to the default width.
+        """
+        self.setMaximumWidth(Preferences.getEditor("SourceOutlineWidth"))
         self.updateGeometry()
     
     #######################################################################
--- a/eric6/QScintilla/Lexers/__init__.py	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/QScintilla/Lexers/__init__.py	Sun Oct 04 16:28:51 2020 +0200
@@ -10,8 +10,6 @@
 
 from PyQt5.QtCore import QCoreApplication
 
-from QScintilla.QsciScintillaCompat import QSCINTILLA_VERSION
-
 import Preferences
 import UI.PixmapCache
 
@@ -158,20 +156,12 @@
                     'dummy.po', "lexerGettext"],
         "CoffeeScript": [QCoreApplication.translate('Lexers', "CoffeeScript"),
                          'dummy.coffee', "lexerCoffeeScript"],
+        "JSON": [QCoreApplication.translate('Lexers', "JSON"), 'dummy.json',
+                 "lexerJSON"],
+        "Markdown": [QCoreApplication.translate('Lexers', "Markdown"),
+                     'dummy.md', "lexerMarkdown"],
     }
     
-    if QSCINTILLA_VERSION() >= 0x020a00:
-        supportedLanguages["JSON"] = [
-            QCoreApplication.translate('Lexers', "JSON"),
-            'dummy.json',
-            "lexerJSON"
-        ]
-        supportedLanguages["Markdown"] = [
-            QCoreApplication.translate('Lexers', "Markdown"),
-            'dummy.md',
-            "lexerMarkdown"
-        ]
-    
     for name in LexerRegistry:
         if not name.startswith("Pygments|"):
             supportedLanguages[name] = (
@@ -501,6 +491,9 @@
             'YAML Files (*.yaml *.yml)'),
         QCoreApplication.translate(
             'Lexers',
+            'TOML Files (*.toml)'),
+        QCoreApplication.translate(
+            'Lexers',
             'Matlab Files (*.m *.m.matlab)'),
         QCoreApplication.translate(
             'Lexers',
@@ -511,20 +504,14 @@
         QCoreApplication.translate(
             'Lexers',
             'CoffeeScript Files (*.coffee)'),
+        QCoreApplication.translate(
+            'Lexers',
+            'JSON Files (*.json)'),
+        QCoreApplication.translate(
+            'Lexers',
+            'Markdown Files (*.md)'),
     ]
     
-    if QSCINTILLA_VERSION() >= 0x020a00:
-        openFileFiltersList.append(
-            QCoreApplication.translate(
-                'Lexers',
-                'JSON Files (*.json)'),
-        )
-        openFileFiltersList.append(
-            QCoreApplication.translate(
-                'Lexers',
-                'Markdown Files (*.md)'),
-        )
-    
     for name in LexerRegistry:
         openFileFiltersList.extend(LexerRegistry[name][3])
     
@@ -709,6 +696,9 @@
             'YAML Files (*.yml)'),
         QCoreApplication.translate(
             'Lexers',
+            'TOML Files (*.toml)'),
+        QCoreApplication.translate(
+            'Lexers',
             'Matlab Files (*.m)'),
         QCoreApplication.translate(
             'Lexers',
@@ -719,20 +709,14 @@
         QCoreApplication.translate(
             'Lexers',
             'CoffeeScript Files (*.coffee)'),
+        QCoreApplication.translate(
+            'Lexers',
+            'JSON Files (*.json)'),
+        QCoreApplication.translate(
+            'Lexers',
+            'Markdown Files (*.md)'),
     ]
     
-    if QSCINTILLA_VERSION() >= 0x020a00:
-        saveFileFiltersList.append(
-            QCoreApplication.translate(
-                'Lexers',
-                'JSON Files (*.json)'),
-        )
-        saveFileFiltersList.append(
-            QCoreApplication.translate(
-                'Lexers',
-                'Markdown Files (*.md)'),
-        )
-    
     for name in LexerRegistry:
         saveFileFiltersList.extend(LexerRegistry[name][4])
     
@@ -883,12 +867,14 @@
         '*.proto': "Protocol",
         '*.po': "Gettext",
         '*.coffee': "CoffeeScript",
+        '*.json': "JSON",
+        '*.md': "Markdown",
+        
+        '*.toml': "Pygments|TOML",
+        'Pipfile': "Pygments|TOML",
+        'poetry.lock': "Pygments|TOML",
     }
     
-    if QSCINTILLA_VERSION() >= 0x020a00:
-        assocs['*.json'] = "JSON"
-        assocs['*.md'] = "Markdown"
-    
     for name in LexerRegistry:
         for pattern in LexerRegistry[name][5]:
             assocs[pattern] = name
--- a/eric6/QScintilla/MiniEditor.py	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/QScintilla/MiniEditor.py	Sun Oct 04 16:28:51 2020 +0200
@@ -27,7 +27,7 @@
 from E5Gui import E5MessageBox, E5FileDialog
 from E5Gui.E5MainWindow import E5MainWindow
 
-from .QsciScintillaCompat import QsciScintillaCompat, QSCINTILLA_VERSION
+from .QsciScintillaCompat import QsciScintillaCompat
 
 import UI.PixmapCache
 import UI.Config
@@ -109,6 +109,9 @@
         self.endUndoAction()
 
 
+# TODO: add language icon and menu to statusbar
+# TODO: add cursor position to statusbar
+# TODO: add zoom functionality (?)
 class MiniEditor(E5MainWindow):
     """
     Class implementing a minimalistic editor for simple editing tasks.
@@ -1346,18 +1349,17 @@
         act.triggered.connect(self.esm.map)
         self.editActions.append(act)
         
-        if QSCINTILLA_VERSION() >= 0x020B00:
-            act = E5Action(
-                QCoreApplication.translate('ViewManager',
-                                           'Reverse selected lines'),
-                QCoreApplication.translate('ViewManager',
-                                           'Reverse selected lines'),
-                QKeySequence(QCoreApplication.translate('ViewManager',
-                                                        'Meta+Alt+R')),
-                0, self.editorActGrp, 'vm_edit_reverse selected_lines')
-            self.esm.setMapping(act, QsciScintilla.SCI_LINEREVERSE)
-            act.triggered.connect(self.esm.map)
-            self.editActions.append(act)
+        act = E5Action(
+            QCoreApplication.translate('ViewManager',
+                                       'Reverse selected lines'),
+            QCoreApplication.translate('ViewManager',
+                                       'Reverse selected lines'),
+            QKeySequence(QCoreApplication.translate('ViewManager',
+                                                    'Meta+Alt+R')),
+            0, self.editorActGrp, 'vm_edit_reverse selected_lines')
+        self.esm.setMapping(act, QsciScintilla.SCI_LINEREVERSE)
+        act.triggered.connect(self.esm.map)
+        self.editActions.append(act)
         
         act = E5Action(
             QCoreApplication.translate('ViewManager', 'Cut current line'),
@@ -2738,8 +2740,7 @@
         self.caretWidth = Preferences.getEditor("CaretWidth")
         self.__textEdit.setCaretWidth(self.caretWidth)
         self.caretLineFrameWidth = Preferences.getEditor("CaretLineFrameWidth")
-        if QSCINTILLA_VERSION() >= 0x020B00:
-            self.__textEdit.setCaretLineFrameWidth(self.caretLineFrameWidth)
+        self.__textEdit.setCaretLineFrameWidth(self.caretLineFrameWidth)
         self.useMonospaced = Preferences.getEditor("UseMonospacedFont")
         self.__setMonospaced(self.useMonospaced)
         edgeMode = Preferences.getEditor("EdgeMode")
--- a/eric6/QScintilla/QsciScintillaCompat.py	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/QScintilla/QsciScintillaCompat.py	Sun Oct 04 16:28:51 2020 +0200
@@ -47,12 +47,7 @@
     
     UserSeparator = '\x04'
     
-    if QSCINTILLA_VERSION() < 0x020A00:
-        IndicatorStyleMax = QsciScintilla.INDIC_TEXTFORE
-    elif QSCINTILLA_VERSION() < 0x020B00:
-        IndicatorStyleMax = QsciScintilla.INDIC_POINTCHARACTER
-    else:
-        IndicatorStyleMax = QsciScintilla.INDIC_GRADIENTCENTRE
+    IndicatorStyleMax = QsciScintilla.INDIC_GRADIENTCENTRE
     
     def __init__(self, parent=None):
         """
@@ -1645,17 +1640,6 @@
     ## methods to implement workarounds for broken things
     ###########################################################################
     
-    if QSCINTILLA_VERSION() == 0x020B00:
-        def insert(self, txt):
-            """
-            Public method to insert text at the cursor position.
-            
-            @param txt text to be inserted
-            @type str
-            """
-            line, col = self.getCursorPosition()
-            self.insertAt(txt, line, col)
-    
     def positionFromLineIndex(self, line, index):
         """
         Public method to convert line and index to an absolute position.
@@ -1710,54 +1694,6 @@
                 self.foldLine(line)
     
     #########################################################################
-    ## Method below implements a compatibility variant for the findFirst()
-    ## extended with version 2.11.
-    #########################################################################
-
-    def findFirst(self, expression, regexp, caseSensitive, word, wrap,
-                  forward=True, line=-1, index=-1, show=True, posix=False,
-                  cxx11=False):
-        """
-        Public method to search in the current editor text.
-        
-        @param expression search expression
-        @type str
-        @param regexp flag indicating a regular expression
-        @type bool
-        @param caseSensitive flag indicating a case sensitive search
-        @type bool
-        @param word flag indicating a word only search
-        @type bool
-        @param wrap flag indicating to warp around
-        @type bool
-        @param forward flag indicating the search direction
-        @type bool
-        @param line line to start the search on
-        @type int
-        @param index index to start the search on
-        @type int
-        @param show flag indicating to set the selection to the found
-            expression
-        @type bool
-        @param posix flag indicating the POSIX regular expression search mode
-        @type bool
-        @param cxx11 flag indicating the CXX11 regular expression search mode
-        @type bool
-        @return flag indicating a successful search
-        @rtype bool
-        """
-        if QSCINTILLA_VERSION() >= 0x020B00:
-            return super(QsciScintillaCompat, self).findFirst(
-                expression, regexp, caseSensitive, word, wrap,
-                forward=forward, line=line, index=index, show=show,
-                posix=posix, cxx11=cxx11)
-        else:
-            return super(QsciScintillaCompat, self).findFirst(
-                expression, regexp, caseSensitive, word, wrap,
-                forward=forward, line=line, index=index, show=show,
-                posix=posix)
-    
-    #########################################################################
     ## Methods below are missing from QScintilla.
     #########################################################################
 
--- a/eric6/ViewManager/ViewManager.py	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/ViewManager/ViewManager.py	Sun Oct 04 16:28:51 2020 +0200
@@ -29,7 +29,6 @@
 import Preferences
 
 from QScintilla.Editor import Editor
-from QScintilla.QsciScintillaCompat import QSCINTILLA_VERSION
 
 import Utilities
 
@@ -2146,18 +2145,17 @@
         act.triggered.connect(self.esm.map)
         self.editActions.append(act)
         
-        if QSCINTILLA_VERSION() >= 0x020B00:
-            act = E5Action(
-                QCoreApplication.translate('ViewManager',
-                                           'Reverse selected lines'),
-                QCoreApplication.translate('ViewManager',
-                                           'Reverse selected lines'),
-                QKeySequence(QCoreApplication.translate('ViewManager',
-                                                        'Meta+Alt+R')),
-                0, self.editorActGrp, 'vm_edit_reverse selected_lines')
-            self.esm.setMapping(act, QsciScintilla.SCI_LINEREVERSE)
-            act.triggered.connect(self.esm.map)
-            self.editActions.append(act)
+        act = E5Action(
+            QCoreApplication.translate('ViewManager',
+                                       'Reverse selected lines'),
+            QCoreApplication.translate('ViewManager',
+                                       'Reverse selected lines'),
+            QKeySequence(QCoreApplication.translate('ViewManager',
+                                                    'Meta+Alt+R')),
+            0, self.editorActGrp, 'vm_edit_reverse selected_lines')
+        self.esm.setMapping(act, QsciScintilla.SCI_LINEREVERSE)
+        act.triggered.connect(self.esm.map)
+        self.editActions.append(act)
         
         act = E5Action(
             QCoreApplication.translate('ViewManager', 'Cut current line'),
--- a/eric6/i18n/eric6_cs.ts	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/i18n/eric6_cs.ts	Sun Oct 04 16:28:51 2020 +0200
@@ -1117,72 +1117,72 @@
 <context>
     <name>AnnotationsChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="808"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="806"/>
         <source>missing type annotation for function argument &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="811"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="809"/>
         <source>missing type annotation for &apos;*{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="814"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="812"/>
         <source>missing type annotation for &apos;**{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="823"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="821"/>
         <source>missing return type annotation for public function</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="826"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="824"/>
         <source>missing return type annotation for protected function</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="829"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="827"/>
         <source>missing return type annotation for private function</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="832"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="830"/>
         <source>missing return type annotation for special method</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="835"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="833"/>
         <source>missing return type annotation for staticmethod</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="838"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="836"/>
         <source>missing return type annotation for classmethod</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="850"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="848"/>
         <source>{0}: {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="817"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="815"/>
         <source>missing type annotation for &apos;self&apos; in method</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="820"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="818"/>
         <source>missing type annotation for &apos;cls&apos; in classmethod</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="842"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="840"/>
         <source>type annotation coverage of {0}% is too low</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="846"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="844"/>
         <source>type annotation is too complex ({0} &gt; {1})</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3408,7 +3408,7 @@
 <context>
     <name>CodeStyleChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="1130"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="1128"/>
         <source>No message defined for code &apos;{0}&apos;.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -4120,142 +4120,142 @@
 <context>
     <name>CodeStyleFixer</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="858"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="856"/>
         <source>Triple single quotes converted to triple double quotes.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="861"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="859"/>
         <source>Introductory quotes corrected to be {0}&quot;&quot;&quot;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="864"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="862"/>
         <source>Single line docstring put on one line.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="867"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="865"/>
         <source>Period added to summary line.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="894"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="892"/>
         <source>Blank line before function/method docstring removed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="873"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="871"/>
         <source>Blank line inserted before class docstring.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="876"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="874"/>
         <source>Blank line inserted after class docstring.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="879"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="877"/>
         <source>Blank line inserted after docstring summary.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="882"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="880"/>
         <source>Blank line inserted after last paragraph of docstring.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="885"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="883"/>
         <source>Leading quotes put on separate line.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="888"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="886"/>
         <source>Trailing quotes put on separate line.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="891"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="889"/>
         <source>Blank line before class docstring removed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="897"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="895"/>
         <source>Blank line after class docstring removed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="900"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="898"/>
         <source>Blank line after function/method docstring removed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="903"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="901"/>
         <source>Blank line after last paragraph removed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="906"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="904"/>
         <source>Tab converted to 4 spaces.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="909"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="907"/>
         <source>Indentation adjusted to be a multiple of four.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="912"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="910"/>
         <source>Indentation of continuation line corrected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="915"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="913"/>
         <source>Indentation of closing bracket corrected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="918"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="916"/>
         <source>Missing indentation of continuation line corrected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="921"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="919"/>
         <source>Closing bracket aligned to opening bracket.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="924"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="922"/>
         <source>Indentation level changed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="927"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="925"/>
         <source>Indentation level of hanging indentation changed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="930"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="928"/>
         <source>Visual indentation corrected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="945"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="943"/>
         <source>Extraneous whitespace removed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="942"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="940"/>
         <source>Missing whitespace added.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="948"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="946"/>
         <source>Whitespace around comment sign corrected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="952"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="950"/>
         <source>%n blank line(s) inserted.</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -4264,7 +4264,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="955"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="953"/>
         <source>%n superfluous lines removed</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -4273,72 +4273,72 @@
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="959"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="957"/>
         <source>Superfluous blank lines removed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="962"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="960"/>
         <source>Superfluous blank lines after function decorator removed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="965"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="963"/>
         <source>Imports were put on separate lines.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="968"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="966"/>
         <source>Long lines have been shortened.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="971"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="969"/>
         <source>Redundant backslash in brackets removed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="977"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="975"/>
         <source>Compound statement corrected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="980"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="978"/>
         <source>Comparison to None/True/False corrected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="983"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="981"/>
         <source>&apos;{0}&apos; argument added.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="986"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="984"/>
         <source>&apos;{0}&apos; argument removed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="989"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="987"/>
         <source>Whitespace stripped from end of line.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="992"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="990"/>
         <source>newline added to end of file.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="995"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="993"/>
         <source>Superfluous trailing blank lines removed from end of file.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="998"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="996"/>
         <source>&apos;&lt;&gt;&apos; replaced by &apos;!=&apos;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="1002"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="1000"/>
         <source>Could not save the file! Skipping it. Reason: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -4846,22 +4846,22 @@
 <context>
     <name>ComplexityChecker</name>
     <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="477"/>
+        <source>&apos;{0}&apos; is too complex ({1})</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="479"/>
-        <source>&apos;{0}&apos; is too complex ({1})</source>
+        <source>source code line is too complex ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="481"/>
-        <source>source code line is too complex ({0})</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="483"/>
         <source>overall source code line complexity is too high ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="486"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="484"/>
         <source>{0}: {1}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -8343,30 +8343,30 @@
 <context>
     <name>DeepLEngine</name>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="73"/>
-        <source>Text to be translated exceeds the translation limit of {0} characters.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="95"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="98"/>
         <source>Invalid response received from DeepL</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="98"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="101"/>
         <source>DeepL call returned an unknown result</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="102"/>
-        <source>&lt;p&gt;No translation found&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="79"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="82"/>
         <source>A valid DeepL Pro key is required.</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="73"/>
+        <source>DeepL: Text to be translated exceeds the translation limit of {0} characters.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="105"/>
+        <source>&lt;p&gt;DeepL: No translation found&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>DeleteFilesConfirmationDialog</name>
@@ -8631,237 +8631,237 @@
 <context>
     <name>DocStyleChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="291"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="289"/>
         <source>module is missing a docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="293"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="291"/>
         <source>public function/method is missing a docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="296"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="294"/>
         <source>private function/method may be missing a docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="297"/>
+        <source>public class is missing a docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="299"/>
-        <source>public class is missing a docstring</source>
+        <source>private class may be missing a docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="301"/>
-        <source>private class may be missing a docstring</source>
+        <source>docstring not surrounded by &quot;&quot;&quot;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="303"/>
-        <source>docstring not surrounded by &quot;&quot;&quot;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="305"/>
         <source>docstring containing \ not surrounded by r&quot;&quot;&quot;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="306"/>
+        <source>one-liner docstring on multiple lines</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="308"/>
-        <source>one-liner docstring on multiple lines</source>
+        <source>docstring has wrong indentation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="357"/>
+        <source>docstring summary does not end with a period</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="314"/>
+        <source>docstring summary is not in imperative mood (Does instead of Do)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="318"/>
+        <source>docstring summary looks like a function&apos;s/method&apos;s signature</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="321"/>
+        <source>docstring does not mention the return value type</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="324"/>
+        <source>function/method docstring is separated by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="327"/>
+        <source>class docstring is not preceded by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="330"/>
+        <source>class docstring is not followed by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="391"/>
+        <source>docstring summary is not followed by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="336"/>
+        <source>last paragraph of docstring is not followed by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="344"/>
+        <source>private function/method is missing a docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="347"/>
+        <source>private class is missing a docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="351"/>
+        <source>leading quotes of docstring not on separate line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="354"/>
+        <source>trailing quotes of docstring not on separate line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="361"/>
+        <source>docstring does not contain a @return line but function/method returns something</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="365"/>
+        <source>docstring contains a @return line but function/method doesn&apos;t return anything</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="369"/>
+        <source>docstring does not contain enough @param/@keyparam lines</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="372"/>
+        <source>docstring contains too many @param/@keyparam lines</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="375"/>
+        <source>keyword only arguments must be documented with @keyparam lines</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="378"/>
+        <source>order of @param/@keyparam lines does not match the function/method signature</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="381"/>
+        <source>class docstring is preceded by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="383"/>
+        <source>class docstring is followed by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="385"/>
+        <source>function/method docstring is preceded by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="388"/>
+        <source>function/method docstring is followed by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="394"/>
+        <source>last paragraph of docstring is followed by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="397"/>
+        <source>docstring does not contain a @exception line but function/method raises an exception</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="401"/>
+        <source>docstring contains a @exception line but function/method doesn&apos;t raise an exception</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="424"/>
+        <source>{0}: {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="310"/>
-        <source>docstring has wrong indentation</source>
+        <source>docstring does not contain a summary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="359"/>
-        <source>docstring summary does not end with a period</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="316"/>
-        <source>docstring summary is not in imperative mood (Does instead of Do)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="320"/>
-        <source>docstring summary looks like a function&apos;s/method&apos;s signature</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="323"/>
-        <source>docstring does not mention the return value type</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="326"/>
-        <source>function/method docstring is separated by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="329"/>
-        <source>class docstring is not preceded by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="332"/>
-        <source>class docstring is not followed by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="393"/>
-        <source>docstring summary is not followed by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="338"/>
-        <source>last paragraph of docstring is not followed by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="346"/>
-        <source>private function/method is missing a docstring</source>
+        <source>docstring summary does not start with &apos;{0}&apos;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="405"/>
+        <source>raised exception &apos;{0}&apos; is not documented in docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="408"/>
+        <source>documented exception &apos;{0}&apos; is not raised</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="411"/>
+        <source>docstring does not contain a @signal line but class defines signals</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="414"/>
+        <source>docstring contains a @signal line but class doesn&apos;t define signals</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="417"/>
+        <source>defined signal &apos;{0}&apos; is not documented in docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="420"/>
+        <source>documented signal &apos;{0}&apos; is not defined</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="349"/>
-        <source>private class is missing a docstring</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="353"/>
-        <source>leading quotes of docstring not on separate line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="356"/>
-        <source>trailing quotes of docstring not on separate line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="363"/>
-        <source>docstring does not contain a @return line but function/method returns something</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="367"/>
-        <source>docstring contains a @return line but function/method doesn&apos;t return anything</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="371"/>
-        <source>docstring does not contain enough @param/@keyparam lines</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="374"/>
-        <source>docstring contains too many @param/@keyparam lines</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="377"/>
-        <source>keyword only arguments must be documented with @keyparam lines</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="380"/>
-        <source>order of @param/@keyparam lines does not match the function/method signature</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="383"/>
-        <source>class docstring is preceded by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="385"/>
-        <source>class docstring is followed by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="387"/>
-        <source>function/method docstring is preceded by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="390"/>
-        <source>function/method docstring is followed by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="396"/>
-        <source>last paragraph of docstring is followed by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="399"/>
-        <source>docstring does not contain a @exception line but function/method raises an exception</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="403"/>
-        <source>docstring contains a @exception line but function/method doesn&apos;t raise an exception</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="426"/>
-        <source>{0}: {1}</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="312"/>
-        <source>docstring does not contain a summary</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="361"/>
-        <source>docstring summary does not start with &apos;{0}&apos;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="407"/>
-        <source>raised exception &apos;{0}&apos; is not documented in docstring</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="410"/>
-        <source>documented exception &apos;{0}&apos; is not raised</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="413"/>
-        <source>docstring does not contain a @signal line but class defines signals</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="416"/>
-        <source>docstring contains a @signal line but class doesn&apos;t define signals</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="419"/>
-        <source>defined signal &apos;{0}&apos; is not documented in docstring</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="422"/>
-        <source>documented signal &apos;{0}&apos; is not defined</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="351"/>
         <source>class docstring is still a default string</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="344"/>
-        <source>function docstring is still a default string</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="342"/>
+        <source>function docstring is still a default string</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="340"/>
         <source>module docstring is still a default string</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11453,7 +11453,7 @@
         <translation>Editovat breakpoint...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5605"/>
+        <location filename="../QScintilla/Editor.py" line="5604"/>
         <source>Enable breakpoint</source>
         <translation>Aktivovat breakpoint</translation>
     </message>
@@ -11533,197 +11533,197 @@
         <translation>Soubor je modifikován</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4767"/>
+        <location filename="../QScintilla/Editor.py" line="4766"/>
         <source>Autocompletion</source>
         <translation>Autodoplňování</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4767"/>
+        <location filename="../QScintilla/Editor.py" line="4766"/>
         <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="5608"/>
+        <location filename="../QScintilla/Editor.py" line="5607"/>
         <source>Disable breakpoint</source>
         <translation>Deaktivovat breakpoint</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5983"/>
+        <location filename="../QScintilla/Editor.py" line="5982"/>
         <source>Code Coverage</source>
         <translation>Pokrytí kódu</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5983"/>
+        <location filename="../QScintilla/Editor.py" line="5982"/>
         <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="6046"/>
+        <location filename="../QScintilla/Editor.py" line="6045"/>
         <source>Show Code Coverage Annotations</source>
         <translation>Zobrazit poznámky pokrytí kódu</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6039"/>
+        <location filename="../QScintilla/Editor.py" line="6038"/>
         <source>All lines have been covered.</source>
         <translation>Všechny řádky byly pokryty.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6046"/>
+        <location filename="../QScintilla/Editor.py" line="6045"/>
         <source>There is no coverage file available.</source>
         <translation>Soubor s pokrytím není dostupný.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6163"/>
+        <location filename="../QScintilla/Editor.py" line="6162"/>
         <source>Profile Data</source>
         <translation>Profilovat data</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6163"/>
+        <location filename="../QScintilla/Editor.py" line="6162"/>
         <source>Please select a profile file</source>
         <translation>Prosím, vyberte soubor s profilem</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6325"/>
+        <location filename="../QScintilla/Editor.py" line="6324"/>
         <source>Syntax Error</source>
         <translation>Chyba syntaxe</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6325"/>
+        <location filename="../QScintilla/Editor.py" line="6324"/>
         <source>No syntax error message available.</source>
         <translation>Hlášení syntaktické chyby není dostupné.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6714"/>
+        <location filename="../QScintilla/Editor.py" line="6713"/>
         <source>Macro Name</source>
         <translation>Název makra</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6714"/>
+        <location filename="../QScintilla/Editor.py" line="6713"/>
         <source>Select a macro name:</source>
         <translation>Vyberte název makra:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6742"/>
+        <location filename="../QScintilla/Editor.py" line="6741"/>
         <source>Load macro file</source>
         <translation>Načíst soubor makra</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6785"/>
+        <location filename="../QScintilla/Editor.py" line="6784"/>
         <source>Macro files (*.macro)</source>
         <translation>Macro soubory (*.macro)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6765"/>
+        <location filename="../QScintilla/Editor.py" line="6764"/>
         <source>Error loading macro</source>
         <translation>Chyba při načítání makra</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6785"/>
+        <location filename="../QScintilla/Editor.py" line="6784"/>
         <source>Save macro file</source>
         <translation>Uložit soubor s makrem</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6802"/>
+        <location filename="../QScintilla/Editor.py" line="6801"/>
         <source>Save macro</source>
         <translation>Uložit makro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6818"/>
+        <location filename="../QScintilla/Editor.py" line="6817"/>
         <source>Error saving macro</source>
         <translation>Chyba při ukládání makra</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6831"/>
+        <location filename="../QScintilla/Editor.py" line="6830"/>
         <source>Start Macro Recording</source>
         <translation>Spustit záznam makra</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6831"/>
+        <location filename="../QScintilla/Editor.py" line="6830"/>
         <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="6857"/>
+        <location filename="../QScintilla/Editor.py" line="6856"/>
         <source>Macro Recording</source>
         <translation>Záznam makra</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6857"/>
+        <location filename="../QScintilla/Editor.py" line="6856"/>
         <source>Enter name of the macro:</source>
         <translation>Vložte název makra:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6997"/>
+        <location filename="../QScintilla/Editor.py" line="6996"/>
         <source>File changed</source>
         <translation>Soubor změněn</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7308"/>
+        <location filename="../QScintilla/Editor.py" line="7307"/>
         <source>Drop Error</source>
         <translation>Zahodit chybu</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7329"/>
+        <location filename="../QScintilla/Editor.py" line="7328"/>
         <source>Resources</source>
         <translation>Zdroje</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7331"/>
+        <location filename="../QScintilla/Editor.py" line="7330"/>
         <source>Add file...</source>
         <translation>Přidat soubor...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7333"/>
+        <location filename="../QScintilla/Editor.py" line="7332"/>
         <source>Add files...</source>
         <translation>Přidat soubory...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7335"/>
+        <location filename="../QScintilla/Editor.py" line="7334"/>
         <source>Add aliased file...</source>
         <translation>Přidat zástupce souboru...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7338"/>
+        <location filename="../QScintilla/Editor.py" line="7337"/>
         <source>Add localized resource...</source>
         <translation>Přidat lokalizované resource...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7342"/>
+        <location filename="../QScintilla/Editor.py" line="7341"/>
         <source>Add resource frame</source>
         <translation>Přidat resource frame</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7361"/>
+        <location filename="../QScintilla/Editor.py" line="7360"/>
         <source>Add file resource</source>
         <translation>Přidat soubor resource</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7377"/>
+        <location filename="../QScintilla/Editor.py" line="7376"/>
         <source>Add file resources</source>
         <translation>Přidat soubory resource</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7404"/>
+        <location filename="../QScintilla/Editor.py" line="7403"/>
         <source>Add aliased file resource</source>
         <translation>Přidat zástupce souboru resource</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7470"/>
+        <location filename="../QScintilla/Editor.py" line="7469"/>
         <source>Package Diagram</source>
         <translation>Diagram balíčku</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7470"/>
+        <location filename="../QScintilla/Editor.py" line="7469"/>
         <source>Include class attributes?</source>
         <translation>Včetně atributů třídy?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7506"/>
+        <location filename="../QScintilla/Editor.py" line="7505"/>
         <source>Application Diagram</source>
         <translation>Diagram aplikace</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7506"/>
+        <location filename="../QScintilla/Editor.py" line="7505"/>
         <source>Include module names?</source>
         <translation>Včetně jmen modulů?</translation>
     </message>
@@ -11743,12 +11743,12 @@
         <translation>Nebyl zadán forám exportu. Zrušeno....</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7492"/>
+        <location filename="../QScintilla/Editor.py" line="7491"/>
         <source>Imports Diagram</source>
         <translation>Importovat diagram</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7492"/>
+        <location filename="../QScintilla/Editor.py" line="7491"/>
         <source>Include imports from external modules?</source>
         <translation>Zahrnout importy z externích modulů?</translation>
     </message>
@@ -11818,7 +11818,7 @@
         <translation>Použít Pygments lexer.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7835"/>
+        <location filename="../QScintilla/Editor.py" line="7834"/>
         <source>Check spelling...</source>
         <translation>Zatrhnout kontrolu...</translation>
     </message>
@@ -11828,12 +11828,12 @@
         <translation>Zatrhnout výběr kontroly...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7838"/>
+        <location filename="../QScintilla/Editor.py" line="7837"/>
         <source>Add to dictionary</source>
         <translation>Přidat do slovníku</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7840"/>
+        <location filename="../QScintilla/Editor.py" line="7839"/>
         <source>Ignore All</source>
         <translation>Ignorovat vše</translation>
     </message>
@@ -11873,32 +11873,32 @@
         <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="6756"/>
+        <location filename="../QScintilla/Editor.py" line="6755"/>
         <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="6765"/>
+        <location filename="../QScintilla/Editor.py" line="6764"/>
         <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="6818"/>
+        <location filename="../QScintilla/Editor.py" line="6817"/>
         <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="7167"/>
+        <location filename="../QScintilla/Editor.py" line="7166"/>
         <source>{0} (ro)</source>
         <translation>{0} (ro)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7308"/>
+        <location filename="../QScintilla/Editor.py" line="7307"/>
         <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="7404"/>
+        <location filename="../QScintilla/Editor.py" line="7403"/>
         <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>
@@ -11928,22 +11928,22 @@
         <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="6802"/>
+        <location filename="../QScintilla/Editor.py" line="6801"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6602"/>
+        <location filename="../QScintilla/Editor.py" line="6601"/>
         <source>Warning: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6609"/>
+        <location filename="../QScintilla/Editor.py" line="6608"/>
         <source>Error: {0}</source>
         <translation type="unfinished">Chyby: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6993"/>
+        <location filename="../QScintilla/Editor.py" line="6992"/>
         <source>&lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reopening it.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11968,27 +11968,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8256"/>
+        <location filename="../QScintilla/Editor.py" line="8255"/>
         <source>Sort Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8256"/>
+        <location filename="../QScintilla/Editor.py" line="8255"/>
         <source>The selection contains illegal data for a numerical sort.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6537"/>
+        <location filename="../QScintilla/Editor.py" line="6536"/>
         <source>Warning</source>
         <translation type="unfinished">Varování</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6537"/>
+        <location filename="../QScintilla/Editor.py" line="6536"/>
         <source>No warning messages available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6599"/>
+        <location filename="../QScintilla/Editor.py" line="6598"/>
         <source>Style: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -12013,7 +12013,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6987"/>
+        <location filename="../QScintilla/Editor.py" line="6986"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric6. Reread it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; byl změněn po té co již byl načten do eric5. Znovu načíst?&lt;/p&gt; {0}?} {6.?}</translation>
     </message>
@@ -12028,32 +12028,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4897"/>
+        <location filename="../QScintilla/Editor.py" line="4896"/>
         <source>Auto-Completion Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4897"/>
+        <location filename="../QScintilla/Editor.py" line="4896"/>
         <source>The completion list provider &apos;{0}&apos; was already registered. Ignoring duplicate request.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5176"/>
+        <location filename="../QScintilla/Editor.py" line="5175"/>
         <source>Call-Tips Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5176"/>
+        <location filename="../QScintilla/Editor.py" line="5175"/>
         <source>The call-tips provider &apos;{0}&apos; was already registered. Ignoring duplicate request.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8345"/>
+        <location filename="../QScintilla/Editor.py" line="8344"/>
         <source>Register Mouse Click Handler</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8345"/>
+        <location filename="../QScintilla/Editor.py" line="8344"/>
         <source>A mouse click handler for &quot;{0}&quot; was already registered by &quot;{1}&quot;. Aborting request by &quot;{2}&quot;...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -12083,12 +12083,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8466"/>
+        <location filename="../QScintilla/Editor.py" line="8465"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8466"/>
+        <location filename="../QScintilla/Editor.py" line="8465"/>
         <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"></translation>
     </message>
@@ -13907,27 +13907,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="681"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="685"/>
         <source>Delete Sub-Style</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="681"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="685"/>
         <source>&lt;p&gt;Shall the sub-style &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="721"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="725"/>
         <source>{0} - Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="749"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="753"/>
         <source>Reset Sub-Styles to Default</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="749"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="753"/>
         <source>&lt;p&gt;Do you really want to reset all defined sub-styles of &lt;b&gt;{0}&lt;/b&gt; to the default values?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -17727,7 +17727,7 @@
 <context>
     <name>EricdocPlugin</name>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="102"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="81"/>
         <source>Qt Help Tools</source>
         <translation type="unfinished"></translation>
     </message>
@@ -17737,22 +17737,22 @@
         <translation type="unfinished">Generátor Eric5 dokumentace {6 ?}</translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="145"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="124"/>
         <source>Generate documentation (eric6_doc)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="145"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="124"/>
         <source>Generate &amp;documentation (eric6_doc)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="149"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="128"/>
         <source>Generate API documentation using eric6_doc</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="151"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="130"/>
         <source>&lt;b&gt;Generate documentation&lt;/b&gt;&lt;p&gt;Generate API documentation using eric6_doc.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -26613,27 +26613,27 @@
 <context>
     <name>Globals</name>
     <message>
-        <location filename="../Globals/__init__.py" line="452"/>
+        <location filename="../Globals/__init__.py" line="421"/>
         <source>{0:4.2f} Bytes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Globals/__init__.py" line="456"/>
+        <location filename="../Globals/__init__.py" line="425"/>
         <source>{0:4.2f} KiB</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Globals/__init__.py" line="460"/>
+        <location filename="../Globals/__init__.py" line="429"/>
         <source>{0:4.2f} MiB</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Globals/__init__.py" line="464"/>
+        <location filename="../Globals/__init__.py" line="433"/>
         <source>{0:4.2f} GiB</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Globals/__init__.py" line="468"/>
+        <location filename="../Globals/__init__.py" line="437"/>
         <source>{0:4.2f} TiB</source>
         <translation type="unfinished"></translation>
     </message>
@@ -26642,12 +26642,12 @@
     <name>GlosbeEngine</name>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GlosbeEngine.py" line="85"/>
-        <source>Invalid response received</source>
+        <source>Glosbe: Invalid response received</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GlosbeEngine.py" line="99"/>
-        <source>No translation found.</source>
+        <source>Glosbe: No translation found.</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -26655,17 +26655,17 @@
     <name>GoogleV1Engine</name>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV1Engine.py" line="98"/>
-        <source>Invalid response received</source>
+        <source>Google V1: Invalid response received</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV1Engine.py" line="135"/>
-        <source>No translation found.</source>
+        <source>Google V1: No translation found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV1Engine.py" line="165"/>
-        <source>Only texts up to {0} characters are allowed.</source>
+        <source>Google V1: Only texts up to {0} characters are allowed.</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -26673,17 +26673,17 @@
     <name>GoogleV2Engine</name>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="72"/>
-        <source>A valid Google Translate key is required.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="83"/>
-        <source>Invalid response received</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="89"/>
-        <source>No translation available.</source>
+        <source>Google V2: A valid Google Translate key is required.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="84"/>
+        <source>Google V2: Invalid response received</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="90"/>
+        <source>Google V2: No translation available.</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -39077,34 +39077,34 @@
 <context>
     <name>IbmWatsonEngine</name>
     <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
+        <source>Error Getting Available Translations</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
+        <source>IBM Watson: No translation available.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="183"/>
-        <source>A valid IBM Watson Language Translator key is required.</source>
+        <source>IBM Watson: A valid Language Translator key is required.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="192"/>
-        <source>A valid IBM Watson Language Translator URL is required.</source>
+        <source>IBM Watson: A valid Language Translator URL is required.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="244"/>
-        <source>Invalid response received</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
-        <source>No translation available.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
-        <source>Error Getting Available Translations</source>
+        <source>IBM Watson: Invalid response received</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="232"/>
-        <source>The server sent an error indication.
-Error: {0}</source>
+        <source>IBM Watson: The server sent an error indication.
+ Error: {0}</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -44956,467 +44956,467 @@
 <context>
     <name>Lexers</name>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="84"/>
+        <source>Bash</source>
+        <translation></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="86"/>
-        <source>Bash</source>
+        <source>Batch</source>
         <translation></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="88"/>
-        <source>Batch</source>
+        <source>C/C++</source>
         <translation></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="90"/>
-        <source>C/C++</source>
+        <source>C#</source>
         <translation></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="92"/>
-        <source>C#</source>
+        <source>CMake</source>
         <translation></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="94"/>
-        <source>CMake</source>
-        <translation></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="96"/>
         <source>CSS</source>
         <translation></translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="98"/>
+        <source>D</source>
+        <translation></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="100"/>
-        <source>D</source>
-        <translation></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="102"/>
         <source>Diff</source>
         <translation></translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="106"/>
+        <source>HTML/PHP/XML</source>
+        <translation></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="108"/>
-        <source>HTML/PHP/XML</source>
+        <source>IDL</source>
         <translation></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="110"/>
-        <source>IDL</source>
+        <source>Java</source>
         <translation></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="112"/>
-        <source>Java</source>
+        <source>JavaScript</source>
         <translation></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="114"/>
-        <source>JavaScript</source>
+        <source>Lua</source>
         <translation></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="116"/>
-        <source>Lua</source>
-        <translation></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="118"/>
         <source>Makefile</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="126"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="124"/>
         <source>Perl</source>
         <translation></translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="128"/>
+        <source>Povray</source>
+        <translation></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="130"/>
-        <source>Povray</source>
-        <translation></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="132"/>
         <source>Properties</source>
         <translation>Nastavení</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="141"/>
+        <source>Ruby</source>
+        <translation>Ruby</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="143"/>
-        <source>Ruby</source>
-        <translation>Ruby</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="145"/>
         <source>SQL</source>
         <translation></translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="147"/>
+        <source>TeX</source>
+        <translation></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="149"/>
-        <source>TeX</source>
+        <source>VHDL</source>
+        <translation></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="562"/>
+        <source>Quixote Template Files (*.ptl)</source>
+        <translation>Quixote Template soubory (*.ptl)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="565"/>
+        <source>Ruby Files (*.rb)</source>
+        <translation>Ruby soubory (*.rb)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="568"/>
+        <source>IDL Files (*.idl)</source>
+        <translation>IDL soubory (*.idl)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="398"/>
+        <source>C Files (*.h *.c)</source>
+        <translation>C soubory (*.h *.c)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="401"/>
+        <source>C++ Files (*.h *.hpp *.hh *.cxx *.cpp *.cc)</source>
+        <translation>C++ soubory (*.h *.hpp *.hh *.cxx *.cpp *.cc)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="583"/>
+        <source>C# Files (*.cs)</source>
+        <translation>C# soubory (*.cs)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="407"/>
+        <source>HTML Files (*.html *.htm *.asp *.shtml)</source>
+        <translation>HTML soubory (*.html *.htm *.asp *.shtml)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="595"/>
+        <source>CSS Files (*.css)</source>
+        <translation>CSS soubory (*.css)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="598"/>
+        <source>QSS Files (*.qss)</source>
+        <translation>QSS soubory (*.qss)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="416"/>
+        <source>PHP Files (*.php *.php3 *.php4 *.php5 *.phtml)</source>
+        <translation>PHP soubory (*.php *.php3 *.php4 *.php5 *.phtml)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="610"/>
+        <source>Qt Resource Files (*.qrc)</source>
+        <translation>Qt Resource soubory (*.qrc)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="425"/>
+        <source>D Files (*.d *.di)</source>
+        <translation>D soubory (*.d *.di)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="619"/>
+        <source>Java Files (*.java)</source>
+        <translation>Java soubory (*.java)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="622"/>
+        <source>JavaScript Files (*.js)</source>
+        <translation>JavaScript soubory (*.js)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="625"/>
+        <source>SQL Files (*.sql)</source>
+        <translation>SQL soubory (*.sql)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="628"/>
+        <source>Docbook Files (*.docbook)</source>
+        <translation>Docbook soubory (*.docbook)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="440"/>
+        <source>Perl Files (*.pl *.pm *.ph)</source>
+        <translation>Perl soubory (*.pl *.pm *.ph)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="637"/>
+        <source>Lua Files (*.lua)</source>
+        <translation>Lua soubory (*.lua)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="446"/>
+        <source>Tex Files (*.tex *.sty *.aux *.toc *.idx)</source>
+        <translation>Tex soubory (*.tex *.sty *.aux *.toc *.idx)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="640"/>
+        <source>Shell Files (*.sh)</source>
+        <translation>Shell soubory (*.sh)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="452"/>
+        <source>Batch Files (*.bat *.cmd)</source>
+        <translation>Batch soubory (*.bat *.cmd)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="455"/>
+        <source>Diff Files (*.diff *.patch)</source>
+        <translation>Diff soubory (*.diff *.patch)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="458"/>
+        <source>Makefiles (*makefile Makefile *.mak)</source>
+        <translation type="unfinished">Makefiles (*.mak)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="461"/>
+        <source>Properties Files (*.properties *.ini *.inf *.reg *.cfg *.cnf *.rc)</source>
+        <translation>Properties soubory (*.properties *.ini *.inf *.reg *.cfg *.cnf *.rc)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="664"/>
+        <source>Povray Files (*.pov)</source>
+        <translation>Povray soubory (*.pov)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="468"/>
+        <source>CMake Files (CMakeLists.txt *.cmake *.ctest)</source>
+        <translation>CMake soubory (CMakeLists.txt *.cmake *.ctest)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="471"/>
+        <source>VHDL Files (*.vhd *.vhdl)</source>
+        <translation>VHDL soubory (*.vhd *.vhdl)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="730"/>
+        <source>All Files (*)</source>
+        <translation>Všechny soubory (*)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="145"/>
+        <source>TCL</source>
+        <translation>TCL</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="474"/>
+        <source>TCL/Tk Files (*.tcl *.tk)</source>
+        <translation>TCL/Tk soubory (*.tcl *.tk)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="574"/>
+        <source>C Files (*.c)</source>
+        <translation>C soubory (*.c)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="577"/>
+        <source>C++ Files (*.cpp)</source>
+        <translation>C++ soubory (*.cpp)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="580"/>
+        <source>C++/C Header Files (*.h)</source>
+        <translation>C++/C hlavičkové soubory (*.h)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="586"/>
+        <source>HTML Files (*.html)</source>
+        <translation>HTML soubory (*.html)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="589"/>
+        <source>PHP Files (*.php)</source>
+        <translation>PHP soubory (*.php)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="592"/>
+        <source>ASP Files (*.asp)</source>
+        <translation>ASP soubory (*.asp)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="601"/>
+        <source>XML Files (*.xml)</source>
+        <translation>XML soubory (*.xml)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="604"/>
+        <source>XSL Files (*.xsl)</source>
+        <translation>XSL soubory (*.xsl)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="607"/>
+        <source>DTD Files (*.dtd)</source>
+        <translation>DTD soubory (*.dtd)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="613"/>
+        <source>D Files (*.d)</source>
+        <translation>D soubory (*.d)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="616"/>
+        <source>D Interface Files (*.di)</source>
+        <translation>D Interface soubory (*.di)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="631"/>
+        <source>Perl Files (*.pl)</source>
+        <translation>Perl soubory (*.pl)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="634"/>
+        <source>Perl Module Files (*.pm)</source>
+        <translation>Perl Module soubory (*.pm)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="643"/>
+        <source>Batch Files (*.bat)</source>
+        <translation>Batch soubory (*.bat)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="646"/>
+        <source>TeX Files (*.tex)</source>
+        <translation>TeX soubory (*.tex)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="649"/>
+        <source>TeX Template Files (*.sty)</source>
+        <translation>TeX Template soubory (*.sty)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="652"/>
+        <source>Diff Files (*.diff)</source>
+        <translation>Diff soubory (*.diff)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="655"/>
+        <source>Make Files (*.mak)</source>
+        <translation>Make soubory (*.mak)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="658"/>
+        <source>Properties Files (*.ini)</source>
+        <translation>Properties soubory (*.ini)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="661"/>
+        <source>Configuration Files (*.cfg)</source>
+        <translation>Konfigurační soubory (*.cfg)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="667"/>
+        <source>CMake Files (CMakeLists.txt)</source>
+        <translation>CMake soubory (CMakeLists.txt)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="670"/>
+        <source>CMake Macro Files (*.cmake)</source>
+        <translation>CMake makro soubory (*.cmake)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="673"/>
+        <source>VHDL Files (*.vhd)</source>
+        <translation>VHDL soubory (*.vhd)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="676"/>
+        <source>TCL Files (*.tcl)</source>
+        <translation>TCL soubory (*.tcl)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="679"/>
+        <source>Tk Files (*.tk)</source>
+        <translation>Tk soubory (*.tk)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="102"/>
+        <source>Fortran</source>
+        <translation></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="104"/>
+        <source>Fortran77</source>
+        <translation></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="122"/>
+        <source>Pascal</source>
+        <translation></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="477"/>
+        <source>Fortran Files (*.f90 *.f95 *.f2k)</source>
+        <translation>Fortran soubory (*.f90 *.f95 *.f2k)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="480"/>
+        <source>Fortran77 Files (*.f *.for)</source>
+        <translation>Fortran77 soubory (*.f *.for)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="483"/>
+        <source>Pascal Files (*.dpr *.dpk *.pas *.dfm *.inc *.pp)</source>
+        <translation>Pascal soubory (*.dpr *.dpk *.pas *.dfm *.inc *.pp)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="682"/>
+        <source>Fortran Files (*.f95)</source>
+        <translation>Fortran soubory (*.f95)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="685"/>
+        <source>Fortran77 Files (*.f)</source>
+        <translation>Fortran77 soubory (*.f)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="688"/>
+        <source>Pascal Files (*.pas)</source>
+        <translation>Pascal soubory (*.pas)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="126"/>
+        <source>PostScript</source>
         <translation></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="151"/>
-        <source>VHDL</source>
-        <translation></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="575"/>
-        <source>Quixote Template Files (*.ptl)</source>
-        <translation>Quixote Template soubory (*.ptl)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="578"/>
-        <source>Ruby Files (*.rb)</source>
-        <translation>Ruby soubory (*.rb)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="581"/>
-        <source>IDL Files (*.idl)</source>
-        <translation>IDL soubory (*.idl)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="408"/>
-        <source>C Files (*.h *.c)</source>
-        <translation>C soubory (*.h *.c)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="411"/>
-        <source>C++ Files (*.h *.hpp *.hh *.cxx *.cpp *.cc)</source>
-        <translation>C++ soubory (*.h *.hpp *.hh *.cxx *.cpp *.cc)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="596"/>
-        <source>C# Files (*.cs)</source>
-        <translation>C# soubory (*.cs)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="417"/>
-        <source>HTML Files (*.html *.htm *.asp *.shtml)</source>
-        <translation>HTML soubory (*.html *.htm *.asp *.shtml)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="608"/>
-        <source>CSS Files (*.css)</source>
-        <translation>CSS soubory (*.css)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="611"/>
-        <source>QSS Files (*.qss)</source>
-        <translation>QSS soubory (*.qss)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="426"/>
-        <source>PHP Files (*.php *.php3 *.php4 *.php5 *.phtml)</source>
-        <translation>PHP soubory (*.php *.php3 *.php4 *.php5 *.phtml)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="623"/>
-        <source>Qt Resource Files (*.qrc)</source>
-        <translation>Qt Resource soubory (*.qrc)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="435"/>
-        <source>D Files (*.d *.di)</source>
-        <translation>D soubory (*.d *.di)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="632"/>
-        <source>Java Files (*.java)</source>
-        <translation>Java soubory (*.java)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="635"/>
-        <source>JavaScript Files (*.js)</source>
-        <translation>JavaScript soubory (*.js)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="638"/>
-        <source>SQL Files (*.sql)</source>
-        <translation>SQL soubory (*.sql)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="641"/>
-        <source>Docbook Files (*.docbook)</source>
-        <translation>Docbook soubory (*.docbook)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="450"/>
-        <source>Perl Files (*.pl *.pm *.ph)</source>
-        <translation>Perl soubory (*.pl *.pm *.ph)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="650"/>
-        <source>Lua Files (*.lua)</source>
-        <translation>Lua soubory (*.lua)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="456"/>
-        <source>Tex Files (*.tex *.sty *.aux *.toc *.idx)</source>
-        <translation>Tex soubory (*.tex *.sty *.aux *.toc *.idx)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="653"/>
-        <source>Shell Files (*.sh)</source>
-        <translation>Shell soubory (*.sh)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="462"/>
-        <source>Batch Files (*.bat *.cmd)</source>
-        <translation>Batch soubory (*.bat *.cmd)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="465"/>
-        <source>Diff Files (*.diff *.patch)</source>
-        <translation>Diff soubory (*.diff *.patch)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="468"/>
-        <source>Makefiles (*makefile Makefile *.mak)</source>
-        <translation type="unfinished">Makefiles (*.mak)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="471"/>
-        <source>Properties Files (*.properties *.ini *.inf *.reg *.cfg *.cnf *.rc)</source>
-        <translation>Properties soubory (*.properties *.ini *.inf *.reg *.cfg *.cnf *.rc)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="677"/>
-        <source>Povray Files (*.pov)</source>
-        <translation>Povray soubory (*.pov)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="478"/>
-        <source>CMake Files (CMakeLists.txt *.cmake *.ctest)</source>
-        <translation>CMake soubory (CMakeLists.txt *.cmake *.ctest)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="481"/>
-        <source>VHDL Files (*.vhd *.vhdl)</source>
-        <translation>VHDL soubory (*.vhd *.vhdl)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="746"/>
-        <source>All Files (*)</source>
-        <translation>Všechny soubory (*)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="147"/>
-        <source>TCL</source>
-        <translation>TCL</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="484"/>
-        <source>TCL/Tk Files (*.tcl *.tk)</source>
-        <translation>TCL/Tk soubory (*.tcl *.tk)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="587"/>
-        <source>C Files (*.c)</source>
-        <translation>C soubory (*.c)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="590"/>
-        <source>C++ Files (*.cpp)</source>
-        <translation>C++ soubory (*.cpp)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="593"/>
-        <source>C++/C Header Files (*.h)</source>
-        <translation>C++/C hlavičkové soubory (*.h)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="599"/>
-        <source>HTML Files (*.html)</source>
-        <translation>HTML soubory (*.html)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="602"/>
-        <source>PHP Files (*.php)</source>
-        <translation>PHP soubory (*.php)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="605"/>
-        <source>ASP Files (*.asp)</source>
-        <translation>ASP soubory (*.asp)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="614"/>
-        <source>XML Files (*.xml)</source>
-        <translation>XML soubory (*.xml)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="617"/>
-        <source>XSL Files (*.xsl)</source>
-        <translation>XSL soubory (*.xsl)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="620"/>
-        <source>DTD Files (*.dtd)</source>
-        <translation>DTD soubory (*.dtd)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="626"/>
-        <source>D Files (*.d)</source>
-        <translation>D soubory (*.d)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="629"/>
-        <source>D Interface Files (*.di)</source>
-        <translation>D Interface soubory (*.di)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="644"/>
-        <source>Perl Files (*.pl)</source>
-        <translation>Perl soubory (*.pl)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="647"/>
-        <source>Perl Module Files (*.pm)</source>
-        <translation>Perl Module soubory (*.pm)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="656"/>
-        <source>Batch Files (*.bat)</source>
-        <translation>Batch soubory (*.bat)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="659"/>
-        <source>TeX Files (*.tex)</source>
-        <translation>TeX soubory (*.tex)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="662"/>
-        <source>TeX Template Files (*.sty)</source>
-        <translation>TeX Template soubory (*.sty)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="665"/>
-        <source>Diff Files (*.diff)</source>
-        <translation>Diff soubory (*.diff)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="668"/>
-        <source>Make Files (*.mak)</source>
-        <translation>Make soubory (*.mak)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="671"/>
-        <source>Properties Files (*.ini)</source>
-        <translation>Properties soubory (*.ini)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="674"/>
-        <source>Configuration Files (*.cfg)</source>
-        <translation>Konfigurační soubory (*.cfg)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="680"/>
-        <source>CMake Files (CMakeLists.txt)</source>
-        <translation>CMake soubory (CMakeLists.txt)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="683"/>
-        <source>CMake Macro Files (*.cmake)</source>
-        <translation>CMake makro soubory (*.cmake)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="686"/>
-        <source>VHDL Files (*.vhd)</source>
-        <translation>VHDL soubory (*.vhd)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="689"/>
-        <source>TCL Files (*.tcl)</source>
-        <translation>TCL soubory (*.tcl)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="692"/>
-        <source>Tk Files (*.tk)</source>
-        <translation>Tk soubory (*.tk)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="104"/>
-        <source>Fortran</source>
-        <translation></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="106"/>
-        <source>Fortran77</source>
-        <translation></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="124"/>
-        <source>Pascal</source>
-        <translation></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="487"/>
-        <source>Fortran Files (*.f90 *.f95 *.f2k)</source>
-        <translation>Fortran soubory (*.f90 *.f95 *.f2k)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="490"/>
-        <source>Fortran77 Files (*.f *.for)</source>
-        <translation>Fortran77 soubory (*.f *.for)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="493"/>
-        <source>Pascal Files (*.dpr *.dpk *.pas *.dfm *.inc *.pp)</source>
-        <translation>Pascal soubory (*.dpr *.dpk *.pas *.dfm *.inc *.pp)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="695"/>
-        <source>Fortran Files (*.f95)</source>
-        <translation>Fortran soubory (*.f95)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="698"/>
-        <source>Fortran77 Files (*.f)</source>
-        <translation>Fortran77 soubory (*.f)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="701"/>
-        <source>Pascal Files (*.pas)</source>
-        <translation>Pascal soubory (*.pas)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="128"/>
-        <source>PostScript</source>
+        <source>XML</source>
         <translation></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="153"/>
-        <source>XML</source>
-        <translation></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="155"/>
         <source>YAML</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="429"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="419"/>
         <source>XML Files (*.xml *.xsl *.xslt *.dtd *.svg *.xul *.xsd)</source>
         <translation>XML soubory (*.xml *.xsl *.xslt *.dtd *.svg *.xul *.xsd)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="704"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="691"/>
         <source>PostScript Files (*.ps)</source>
         <translation>PostScript soubory (*.ps)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="499"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="489"/>
         <source>YAML Files (*.yaml *.yml)</source>
         <translation>YAML soubory (*.yaml *.yml)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="707"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="694"/>
         <source>YAML Files (*.yml)</source>
         <translation>YAML soubory (*.yml)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="183"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="173"/>
         <source>Pygments</source>
         <translation>Pygments</translation>
     </message>
@@ -45431,145 +45431,150 @@
         <translation type="obsolete">Python GUI soubory (*.pyw *.pyw2 *.pyw3)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="560"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="547"/>
         <source>Python3 Files (*.py)</source>
         <translation>Python3 soubory (*.py)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="563"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="550"/>
         <source>Python3 GUI Files (*.pyw)</source>
         <translation>Python3 GUI soubory (*.pyw)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="137"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="135"/>
         <source>Python3</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="118"/>
+        <source>Matlab</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="120"/>
-        <source>Matlab</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="122"/>
         <source>Octave</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="502"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="495"/>
         <source>Matlab Files (*.m *.m.matlab)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="710"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="700"/>
         <source>Matlab Files (*.m)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="713"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="703"/>
         <source>Octave Files (*.m.octave)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="505"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="498"/>
         <source>Octave Files (*.m *.m.octave)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="141"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="139"/>
         <source>QSS</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="155"/>
+        <source>Gettext</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="706"/>
+        <source>Gettext Files (*.po)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="157"/>
-        <source>Gettext</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="716"/>
-        <source>Gettext Files (*.po)</source>
+        <source>CoffeeScript</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="709"/>
+        <source>CoffeeScript Files (*.coffee)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="159"/>
-        <source>CoffeeScript</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="719"/>
-        <source>CoffeeScript Files (*.coffee)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="165"/>
         <source>JSON</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="725"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="712"/>
         <source>JSON Files (*.json)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="170"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="161"/>
         <source>Markdown</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="730"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="715"/>
         <source>Markdown Files (*.md)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="134"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="132"/>
         <source>Protocol (protobuf)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="584"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="571"/>
         <source>Protocol Files (*.proto)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="98"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="96"/>
         <source>Cython</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="393"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="383"/>
         <source>Cython Files (*.pyx *.pxd *.pxi)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="566"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="553"/>
         <source>Cython Files (*.pyx)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="569"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="556"/>
         <source>Cython Declaration Files (*.pxd)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="572"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="559"/>
         <source>Cython Include Files (*.pxi)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="139"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="137"/>
         <source>MicroPython</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="387"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="377"/>
         <source>Python Files (*.py *.py3)</source>
         <translation type="unfinished">Python soubory (*.py *.py3)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="390"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="380"/>
         <source>Python GUI Files (*.pyw *.pyw3)</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="697"/>
+        <source>TOML Files (*.toml)</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>LfConvertDataDialog</name>
@@ -47589,23 +47594,23 @@
 <context>
     <name>MicrosoftEngine</name>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="187"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="190"/>
         <source>You have not registered for the Microsoft Translation service.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="193"/>
-        <source>No valid access token available.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="170"/>
-        <source>No translation available.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="205"/>
-        <source>No Text-to-Speech for the selected language available.</source>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="196"/>
+        <source>MS Translator: No valid access token available.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="173"/>
+        <source>MS Translator: No translation available.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="211"/>
+        <source>MS Translator: No Text-to-Speech for the selected language available.</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -47955,168 +47960,168 @@
         <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="2176"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2175"/>
         <source>About</source>
         <translation>O aplikaci</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2176"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2175"/>
         <source>&amp;About</source>
         <translation>O &amp;aplikaci</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2180"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2179"/>
         <source>Display information about this software</source>
         <translation>Zobrazit informace a tomto software</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2182"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2181"/>
         <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="2188"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2187"/>
         <source>About Qt</source>
         <translation>O Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2188"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2187"/>
         <source>About &amp;Qt</source>
         <translation>O &amp;Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2192"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2191"/>
         <source>Display information about the Qt toolkit</source>
         <translation>Zobrazit informace o Qt toolkitu</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2194"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2193"/>
         <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="2224"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2223"/>
         <source>&amp;File</source>
         <translation>S&amp;oubor</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2236"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2235"/>
         <source>&amp;Edit</source>
         <translation>&amp;Edit</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2256"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2255"/>
         <source>&amp;Help</source>
         <translation>&amp;Nápověda</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2318"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2317"/>
         <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="2325"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2324"/>
         <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="2330"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2329"/>
         <source>Ready</source>
         <translation>Hotovo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2415"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2414"/>
         <source>File loaded</source>
         <translation>Soubor načten</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2851"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2849"/>
         <source>Untitled</source>
         <translation>Beze jména</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2533"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2532"/>
         <source>Mini Editor</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2892"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2890"/>
         <source>Select all</source>
         <translation>Vybrat vše</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2893"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2891"/>
         <source>Deselect all</source>
         <translation>Zrušit celý výběr</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2907"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2905"/>
         <source>Languages</source>
         <translation>Jazyky</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2910"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2908"/>
         <source>No Language</source>
         <translation>Žádný jazyk</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2386"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2385"/>
         <source>Open File</source>
         <translation>Otevřít soubor</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2504"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2503"/>
         <source>File saved</source>
         <translation>Soubor uložen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2311"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2310"/>
         <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="2201"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2200"/>
         <source>What&apos;s This?</source>
         <translation>Co je to?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2201"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2200"/>
         <source>&amp;What&apos;s This?</source>
         <translation>&amp;Co je to?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2201"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2200"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation></translation>
     </message>
     <message>
+        <location filename="../QScintilla/MiniEditor.py" line="2206"/>
+        <source>Context sensitive help</source>
+        <translation>Kontextově senzitivní nápověda</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/MiniEditor.py" line="2207"/>
-        <source>Context sensitive help</source>
-        <translation>Kontextově senzitivní nápověda</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2208"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Zobrazit kontextově senzitivní nápovědu&lt;/b&gt;&lt;p&gt;V režimu &quot;Co je to?&quot; se nad různými prvky aplikace u kurzoru zobrazí otazník. Když pak kliknete na tyto prvky, zobrazí se krátký popis co daný prvek znamená a jak jej použít. V dialogových oknech se tato funkce spustí tlačítkem kontextové nápovědy na horní liště.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2268"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2267"/>
         <source>File</source>
         <translation>Soubor</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2281"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2280"/>
         <source>Edit</source>
         <translation>Editovat</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2291"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2290"/>
         <source>Find</source>
         <translation>Hledat</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2298"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2297"/>
         <source>Help</source>
         <translation>Nápověda</translation>
     </message>
@@ -48142,22 +48147,22 @@
         <translation>Tisk aktuálního souboru</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2814"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2812"/>
         <source>Printing...</source>
         <translation>Tisk...</translation>
     </message>
     <message>
+        <location filename="../QScintilla/MiniEditor.py" line="2830"/>
+        <source>Printing completed</source>
+        <translation>Tisk je hotov</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/MiniEditor.py" line="2832"/>
-        <source>Printing completed</source>
-        <translation>Tisk je hotov</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2834"/>
         <source>Error while printing</source>
         <translation>Chyba během tisku</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2837"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2835"/>
         <source>Printing aborted</source>
         <translation>Tisk byl zrušen</translation>
     </message>
@@ -48182,22 +48187,22 @@
         <translation>&lt;b&gt;Náhkled tisku&lt;/b&gt;&lt;p&gt;Náhkled tisku aktuálního souboru.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2934"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2932"/>
         <source>Guessed</source>
         <translation>Odhadem</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2956"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2954"/>
         <source>Alternatives</source>
         <translation>Alternativy</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2972"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2970"/>
         <source>Pygments Lexer</source>
         <translation>Pygments Lexer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2972"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2970"/>
         <source>Select the Pygments lexer to apply.</source>
         <translation>Použít Pygments lexer.</translation>
     </message>
@@ -48212,32 +48217,32 @@
         <translation>Poz: {0:5}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2386"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2385"/>
         <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="2496"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2495"/>
         <source>Save File</source>
         <translation>Uložit soubor</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2496"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2495"/>
         <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="2533"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2532"/>
         <source>{0}[*] - {1}</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2952"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2950"/>
         <source>Alternatives ({0})</source>
         <translation>Alternativy ({0})</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2357"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2356"/>
         <source>The document has unsaved changes.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -48252,7 +48257,7 @@
         <translation type="unfinished">Eric5 Mini editor je odvozen od modulu QScintilla. Lze jej použít pro jednoduché úpravy, kde není nutné mít k dispozici všechny vlastnosti plného editoru. {6 ?}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2357"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2356"/>
         <source>eric6 Mini Editor</source>
         <translation type="unfinished">eric5 Mini Editor {6 ?}</translation>
     </message>
@@ -48277,17 +48282,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3490"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3488"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3490"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3488"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2516"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2515"/>
         <source>[*] - {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -48295,463 +48300,463 @@
 <context>
     <name>MiscellaneousChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="492"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="490"/>
         <source>coding magic comment not found</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="495"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="493"/>
         <source>unknown encoding ({0}) found in coding magic comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="498"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="496"/>
         <source>copyright notice not present</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="501"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="499"/>
         <source>copyright notice contains invalid author</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="702"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="700"/>
         <source>found {0} formatter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="705"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="703"/>
         <source>format string does contain unindexed parameters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="708"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="706"/>
         <source>docstring does contain unindexed parameters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="711"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="709"/>
         <source>other string does contain unindexed parameters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="714"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="712"/>
         <source>format call uses too large index ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="717"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="715"/>
         <source>format call uses missing keyword ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="720"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="718"/>
         <source>format call uses keyword arguments but no named entries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="723"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="721"/>
         <source>format call uses variable arguments but no numbered entries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="726"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="724"/>
         <source>format call uses implicit and explicit indexes together</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="729"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="727"/>
         <source>format call provides unused index ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="732"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="730"/>
         <source>format call provides unused keyword ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="751"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="749"/>
         <source>expected these __future__ imports: {0}; but only got: {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="754"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="752"/>
         <source>expected these __future__ imports: {0}; but got none</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="761"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="759"/>
         <source>print statement found</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="764"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="762"/>
         <source>one element tuple found</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="800"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="798"/>
         <source>{0}: {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="504"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="502"/>
         <source>&quot;{0}&quot; is a Python builtin and is being shadowed; consider renaming the variable</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="508"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="506"/>
         <source>&quot;{0}&quot; is used as an argument and thus shadows a Python builtin; consider renaming the argument</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="512"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="510"/>
         <source>unnecessary generator - rewrite as a list comprehension</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="515"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="513"/>
         <source>unnecessary generator - rewrite as a set comprehension</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="518"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="516"/>
         <source>unnecessary generator - rewrite as a dict comprehension</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="521"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="519"/>
         <source>unnecessary list comprehension - rewrite as a set comprehension</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="524"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="522"/>
         <source>unnecessary list comprehension - rewrite as a dict comprehension</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="530"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="528"/>
         <source>unnecessary list comprehension - &quot;{0}&quot; can take a generator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="770"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="768"/>
         <source>mutable default argument of type {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="555"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="553"/>
         <source>sort keys - &apos;{0}&apos; should be before &apos;{1}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="738"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="736"/>
         <source>logging statement uses &apos;%&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="744"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="742"/>
         <source>logging statement uses f-string</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="747"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="745"/>
         <source>logging statement uses &apos;warn&apos; instead of &apos;warning&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="735"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="733"/>
         <source>logging statement uses string.format()</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="741"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="739"/>
         <source>logging statement uses &apos;+&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="757"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="755"/>
         <source>gettext import with alias _ found: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="648"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="646"/>
         <source>Python does not support the unary prefix increment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="657"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="655"/>
         <source>&apos;sys.maxint&apos; is not defined in Python 3 - use &apos;sys.maxsize&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="660"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="658"/>
         <source>&apos;BaseException.message&apos; has been deprecated as of Python 2.6 and is removed in Python 3 - use &apos;str(e)&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="664"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="662"/>
         <source>assigning to &apos;os.environ&apos; does not clear the environment - use &apos;os.environ.clear()&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="688"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="686"/>
         <source>Python 3 does not include &apos;.iter*&apos; methods on dictionaries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="691"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="689"/>
         <source>Python 3 does not include &apos;.view*&apos; methods on dictionaries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="694"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="692"/>
         <source>&apos;.next()&apos; does not exist in Python 3</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="697"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="695"/>
         <source>&apos;__metaclass__&apos; does nothing on Python 3 - use &apos;class MyClass(BaseClass, metaclass=...)&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="773"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="771"/>
         <source>mutable default argument of function call &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="651"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="649"/>
         <source>using .strip() with multi-character strings is misleading</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="678"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="676"/>
         <source>using &apos;hasattr(x, &quot;__call__&quot;)&apos; to test if &apos;x&apos; is callable is unreliable</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="668"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="666"/>
         <source>loop control variable {0} not used within the loop body - start the name with an underscore</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="776"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="774"/>
         <source>None should not be added at any return if function has no return value except None</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="780"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="778"/>
         <source>an explicit value at every return should be added if function has a return value except None</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="784"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="782"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="788"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="786"/>
         <source>a value should not be assigned to a variable if it will be used as a return value only</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="654"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="652"/>
         <source>do not call assert False since python -O removes these calls</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="672"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="670"/>
         <source>unncessary f-string</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="675"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="673"/>
         <source>cannot use &apos;self.__class__&apos; as first argument of &apos;super()&apos; call</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="682"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="680"/>
         <source>do not call getattr with a constant attribute value</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="685"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="683"/>
         <source>do not call setattr with a constant attribute value</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="796"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="794"/>
         <source>commented code lines should be removed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="792"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="790"/>
         <source>prefer implied line continuation inside parentheses, brackets and braces as opposed to a backslash</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="559"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="557"/>
         <source>use of &apos;datetime.datetime()&apos; without &apos;tzinfo&apos; argument should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="563"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="561"/>
         <source>use of &apos;datetime.datetime.today()&apos; should be avoided.
 Use &apos;datetime.datetime.now(tz=)&apos; instead.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="567"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="565"/>
         <source>use of &apos;datetime.datetime.utcnow()&apos; should be avoided.
 Use &apos;datetime.datetime.now(tz=)&apos; instead.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="571"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="569"/>
         <source>use of &apos;datetime.datetime.utcfromtimestamp()&apos; should be avoided.
 Use &apos;datetime.datetime.fromtimestamp(, tz=)&apos; instead.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="575"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="573"/>
         <source>use of &apos;datetime.datetime.now()&apos; without &apos;tz&apos; argument should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="579"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="577"/>
         <source>use of &apos;datetime.datetime.fromtimestamp()&apos; without &apos;tz&apos; argument should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="583"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="581"/>
         <source>use of &apos;datetime.datetime.strptime()&apos; should be followed by &apos;.replace(tzinfo=)&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="590"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="588"/>
         <source>use of &apos;datetime.date()&apos; should be avoided.
 Use &apos;datetime.datetime(, tzinfo=).date()&apos; instead.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="594"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="592"/>
         <source>use of &apos;datetime.date.today()&apos; should be avoided.
 Use &apos;datetime.datetime.now(tz=).date()&apos; instead.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="598"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="596"/>
         <source>use of &apos;datetime.date.fromtimestamp()&apos; should be avoided.
 Use &apos;datetime.datetime.fromtimestamp(tz=).date()&apos; instead.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="608"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="606"/>
         <source>use of &apos;datetime.time()&apos; without &apos;tzinfo&apos; argument should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="587"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="585"/>
         <source>use of &apos;datetime.datetime.fromordinal()&apos; should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="602"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="600"/>
         <source>use of &apos;datetime.date.fromordinal()&apos; should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="605"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="603"/>
         <source>use of &apos;datetime.date.fromisoformat()&apos; should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="527"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="525"/>
         <source>unnecessary {0} call - rewrite as a literal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="533"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="531"/>
         <source>unnecessary {0} literal - rewrite as a {1} literal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="536"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="534"/>
         <source>unnecessary {0} passed to tuple() - rewrite as a {1} literal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="539"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="537"/>
         <source>unnecessary {0} passed to list() - rewrite as a {1} literal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="542"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="540"/>
         <source>unnecessary list call - remove the outer call to list()</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="545"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="543"/>
         <source>unnecessary list comprehension - &quot;in&quot; can take a generator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="548"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="546"/>
         <source>unnecessary {0} passed to tuple() - remove the outer call to {1}()</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="551"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="549"/>
         <source>unnecessary {0} passed to list() - remove the outer call to {1}()</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="613"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="611"/>
         <source>&apos;sys.version[:3]&apos; referenced (Python 3.10), use &apos;sys.version_info&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="616"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="614"/>
         <source>&apos;sys.version[2]&apos; referenced (Python 3.10), use &apos;sys.version_info&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="619"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="617"/>
         <source>&apos;sys.version&apos; compared to string (Python 3.10), use &apos;sys.version_info&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="623"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="621"/>
         <source>&apos;sys.version_info[0] == 3&apos; referenced (Python 4), use &apos;&gt;=&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="626"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="624"/>
         <source>&apos;six.PY3&apos; referenced (Python 4), use &apos;not six.PY2&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="629"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="627"/>
         <source>&apos;sys.version_info[1]&apos; compared to integer (Python 4), compare &apos;sys.version_info&apos; to tuple</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="633"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="631"/>
         <source>&apos;sys.version_info.minor&apos; compared to integer (Python 4), compare &apos;sys.version_info&apos; to tuple</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="637"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="635"/>
         <source>&apos;sys.version[0]&apos; referenced (Python 10), use &apos;sys.version_info&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="640"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="638"/>
         <source>&apos;sys.version&apos; compared to string (Python 10), use &apos;sys.version_info&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="644"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="642"/>
         <source>&apos;sys.version[:1]&apos; referenced (Python 10), use &apos;sys.version_info&apos;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -49195,84 +49200,84 @@
     <name>MyMemoryEngine</name>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MyMemoryEngine.py" line="72"/>
-        <source>Only texts up to {0} characters are allowed.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MyMemoryEngine.py" line="95"/>
-        <source>Invalid response received</source>
+        <source>MyMemory: Only texts up to {0} characters are allowed.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MyMemoryEngine.py" line="99"/>
+        <source>MyMemory: Invalid response received</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
 <context>
     <name>NamingStyleChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="432"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="430"/>
         <source>class names should use CapWords convention</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="435"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="433"/>
         <source>function name should be lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="438"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="436"/>
         <source>argument name should be lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="441"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="439"/>
         <source>first argument of a class method should be named &apos;cls&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="444"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="442"/>
         <source>first argument of a method should be named &apos;self&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="447"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="445"/>
         <source>first argument of a static method should not be named &apos;self&apos; or &apos;cls</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="451"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="449"/>
         <source>module names should be lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="454"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="452"/>
         <source>package names should be lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="457"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="455"/>
         <source>constant imported as non constant</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="460"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="458"/>
         <source>lowercase imported as non lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="463"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="461"/>
         <source>camelcase imported as lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="466"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="464"/>
         <source>camelcase imported as constant</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="469"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="467"/>
         <source>variable in function should be lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="472"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="470"/>
         <source>names &apos;l&apos;, &apos;O&apos; and &apos;I&apos; should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
@@ -56458,12 +56463,12 @@
     <name>PromtEngine</name>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/PromtEngine.py" line="97"/>
-        <source>Invalid response received</source>
+        <source>Promt: Invalid response received</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/PromtEngine.py" line="106"/>
-        <source>This direction of translation is not available.</source>
+        <source>Promt: This direction of translation is not available.</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -58712,7 +58717,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="694"/>
+        <location filename="../UI/PythonDisViewer.py" line="696"/>
         <source>Code Object &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -58722,22 +58727,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="450"/>
+        <location filename="../UI/PythonDisViewer.py" line="452"/>
         <source>No editor has been opened.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="462"/>
+        <location filename="../UI/PythonDisViewer.py" line="464"/>
         <source>The current editor does not contain any source code.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="468"/>
+        <location filename="../UI/PythonDisViewer.py" line="470"/>
         <source>The current editor does not contain Python source code.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="517"/>
+        <location filename="../UI/PythonDisViewer.py" line="519"/>
         <source>Disassembly of last traceback</source>
         <translation type="unfinished"></translation>
     </message>
@@ -58767,72 +58772,72 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="809"/>
+        <location filename="../UI/PythonDisViewer.py" line="811"/>
         <source>Name</source>
         <translation type="unfinished">Jméno</translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="811"/>
-        <source>Filename</source>
-        <translation type="unfinished">Jméno souboru</translation>
-    </message>
-    <message>
         <location filename="../UI/PythonDisViewer.py" line="813"/>
-        <source>First Line</source>
-        <translation type="unfinished"></translation>
+        <source>Filename</source>
+        <translation type="unfinished">Jméno souboru</translation>
     </message>
     <message>
         <location filename="../UI/PythonDisViewer.py" line="815"/>
-        <source>Argument Count</source>
+        <source>First Line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/PythonDisViewer.py" line="817"/>
+        <source>Argument Count</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="819"/>
         <source>Positional-only Arguments</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="823"/>
-        <source>Number of Locals</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/PythonDisViewer.py" line="825"/>
-        <source>Stack Size</source>
+        <source>Number of Locals</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/PythonDisViewer.py" line="827"/>
+        <source>Stack Size</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="829"/>
         <source>Flags</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="830"/>
+        <location filename="../UI/PythonDisViewer.py" line="832"/>
         <source>Constants</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="833"/>
+        <location filename="../UI/PythonDisViewer.py" line="835"/>
         <source>Names</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="836"/>
+        <location filename="../UI/PythonDisViewer.py" line="838"/>
         <source>Variable Names</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="839"/>
+        <location filename="../UI/PythonDisViewer.py" line="841"/>
         <source>Free Variables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="842"/>
+        <location filename="../UI/PythonDisViewer.py" line="844"/>
         <source>Cell Variables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="820"/>
+        <location filename="../UI/PythonDisViewer.py" line="822"/>
         <source>Keyword-only Arguments</source>
         <translation type="unfinished"></translation>
     </message>
@@ -81781,3193 +81786,3193 @@
 <context>
     <name>ViewManager</name>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="635"/>
+        <location filename="../ViewManager/ViewManager.py" line="634"/>
         <source>New</source>
         <translation>Nový</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="635"/>
+        <location filename="../ViewManager/ViewManager.py" line="634"/>
         <source>&amp;New</source>
         <translation>&amp;Nový</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="635"/>
+        <location filename="../ViewManager/ViewManager.py" line="634"/>
         <source>Ctrl+N</source>
         <comment>File|New</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="643"/>
+        <location filename="../ViewManager/ViewManager.py" line="642"/>
         <source>Open an empty editor window</source>
         <translation>Otevřít prázdné editační okno</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="646"/>
+        <location filename="../ViewManager/ViewManager.py" line="645"/>
         <source>&lt;b&gt;New&lt;/b&gt;&lt;p&gt;An empty editor window will be created.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nový&lt;/b&gt;
 &lt;p&gt;Bude otevřeno prázdné editační okno.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="654"/>
+        <location filename="../ViewManager/ViewManager.py" line="653"/>
         <source>Open</source>
         <translation>Otevřít</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="654"/>
+        <location filename="../ViewManager/ViewManager.py" line="653"/>
         <source>&amp;Open...</source>
         <translation>&amp;Otevřít...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="654"/>
+        <location filename="../ViewManager/ViewManager.py" line="653"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="662"/>
+        <location filename="../ViewManager/ViewManager.py" line="661"/>
         <source>Open a file</source>
         <translation>Otevřít soubor</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="664"/>
+        <location filename="../ViewManager/ViewManager.py" line="663"/>
         <source>&lt;b&gt;Open a file&lt;/b&gt;&lt;p&gt;You will be asked for the name of a file to be opened in an editor window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Otevřít soubor&lt;/b&gt;
 &lt;p&gt;Budete dotázáni na jméno souboru, který se má otevřít do editačního okna.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="675"/>
+        <location filename="../ViewManager/ViewManager.py" line="674"/>
         <source>Close</source>
         <translation>Zavřít</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="675"/>
+        <location filename="../ViewManager/ViewManager.py" line="674"/>
         <source>&amp;Close</source>
         <translation>&amp;Zavřít</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="675"/>
+        <location filename="../ViewManager/ViewManager.py" line="674"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="683"/>
+        <location filename="../ViewManager/ViewManager.py" line="682"/>
         <source>Close the current window</source>
         <translation>Zavřít aktuální okno</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="686"/>
+        <location filename="../ViewManager/ViewManager.py" line="685"/>
         <source>&lt;b&gt;Close Window&lt;/b&gt;&lt;p&gt;Close the current window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Zavřít okno&lt;/b&gt;
 &lt;p&gt;Zavřít aktuální okno.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="694"/>
+        <location filename="../ViewManager/ViewManager.py" line="693"/>
         <source>Close All</source>
         <translation>Zavřít vše</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="694"/>
+        <location filename="../ViewManager/ViewManager.py" line="693"/>
         <source>Clos&amp;e All</source>
         <translation>Zavřít vš&amp;e</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="698"/>
+        <location filename="../ViewManager/ViewManager.py" line="697"/>
         <source>Close all editor windows</source>
         <translation>Zavřít všechny editační okna</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="701"/>
+        <location filename="../ViewManager/ViewManager.py" line="700"/>
         <source>&lt;b&gt;Close All Windows&lt;/b&gt;&lt;p&gt;Close all editor windows.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Zavřít všechna okna&lt;/b&gt;
 &lt;p&gt;Zavřít všechna editační okna.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="712"/>
         <source>Save</source>
         <translation>Uložit</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="712"/>
         <source>&amp;Save</source>
         <translation>&amp;Uložit</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="712"/>
         <source>Ctrl+S</source>
         <comment>File|Save</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="720"/>
+        <location filename="../ViewManager/ViewManager.py" line="719"/>
         <source>Save the current file</source>
         <translation>Uložit aktuální soubor</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="722"/>
+        <location filename="../ViewManager/ViewManager.py" line="721"/>
         <source>&lt;b&gt;Save File&lt;/b&gt;&lt;p&gt;Save the contents of current editor window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Uložit soubor&lt;/b&gt;
 &lt;p&gt;Uložit obsah aktuálního editačního okna.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="729"/>
         <source>Save as</source>
         <translation>Uložit jako</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="729"/>
         <source>Save &amp;as...</source>
         <translation>U&amp;ložit jako...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="729"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="737"/>
+        <location filename="../ViewManager/ViewManager.py" line="736"/>
         <source>Save the current file to a new one</source>
         <translation>Uložit aktuální soubor do nového</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="739"/>
+        <location filename="../ViewManager/ViewManager.py" line="738"/>
         <source>&lt;b&gt;Save File as&lt;/b&gt;&lt;p&gt;Save the contents of current editor window to a new file. The file can be entered in a file selection dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Uložit soubor jako&lt;/b&gt;
 &lt;p&gt;Uložit obsah aktuálního editačního okna do nového souboru. Název souboru bude zadán v dialogu výběru souboru.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="764"/>
+        <location filename="../ViewManager/ViewManager.py" line="763"/>
         <source>Save all</source>
         <translation>Uložit vše</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="769"/>
+        <location filename="../ViewManager/ViewManager.py" line="768"/>
         <source>Save all files</source>
         <translation>Uložit všechny soubory</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="771"/>
+        <location filename="../ViewManager/ViewManager.py" line="770"/>
         <source>&lt;b&gt;Save All Files&lt;/b&gt;&lt;p&gt;Save the contents of all editor windows.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Uložit všechny soubory&lt;/b&gt;
 &lt;p&gt;Uložit obsah všech editačních oken.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="781"/>
+        <location filename="../ViewManager/ViewManager.py" line="780"/>
         <source>Print</source>
         <translation>Tisk</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="781"/>
+        <location filename="../ViewManager/ViewManager.py" line="780"/>
         <source>&amp;Print</source>
         <translation>&amp;Tisk</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="781"/>
+        <location filename="../ViewManager/ViewManager.py" line="780"/>
         <source>Ctrl+P</source>
         <comment>File|Print</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="788"/>
+        <location filename="../ViewManager/ViewManager.py" line="787"/>
         <source>Print the current file</source>
         <translation>Tisk aktuálního souboru</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="790"/>
+        <location filename="../ViewManager/ViewManager.py" line="789"/>
         <source>&lt;b&gt;Print File&lt;/b&gt;&lt;p&gt;Print the contents of current editor window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Tisk souboru&lt;/b&gt;
 &lt;p&gt;Tisk obsahu aktuálního editačního okna.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="816"/>
+        <location filename="../ViewManager/ViewManager.py" line="815"/>
         <source>Search File</source>
         <translation>Najít soubor</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="816"/>
+        <location filename="../ViewManager/ViewManager.py" line="815"/>
         <source>Search &amp;File...</source>
         <translation>N&amp;ajít soubor...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="816"/>
+        <location filename="../ViewManager/ViewManager.py" line="815"/>
         <source>Alt+Ctrl+F</source>
         <comment>File|Search File</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="822"/>
+        <location filename="../ViewManager/ViewManager.py" line="821"/>
         <source>Search for a file</source>
         <translation>Vyhledat soubor</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="824"/>
+        <location filename="../ViewManager/ViewManager.py" line="823"/>
         <source>&lt;b&gt;Search File&lt;/b&gt;&lt;p&gt;Search for a file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Najít soubor&lt;/b&gt;
 &lt;p&gt;Hledání souboru.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="838"/>
+        <location filename="../ViewManager/ViewManager.py" line="837"/>
         <source>&amp;File</source>
         <translation>S&amp;oubor</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="840"/>
+        <location filename="../ViewManager/ViewManager.py" line="839"/>
         <source>Open &amp;Recent Files</source>
         <translation>Otevřít poslední soubo&amp;ry</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="843"/>
+        <location filename="../ViewManager/ViewManager.py" line="842"/>
         <source>Open &amp;Bookmarked Files</source>
         <translation>Otevřít sou&amp;bory ze záložek</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="891"/>
+        <location filename="../ViewManager/ViewManager.py" line="890"/>
         <source>File</source>
         <translation>Soubor</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="938"/>
+        <location filename="../ViewManager/ViewManager.py" line="937"/>
         <source>Undo</source>
         <translation>Undo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="938"/>
+        <location filename="../ViewManager/ViewManager.py" line="937"/>
         <source>&amp;Undo</source>
         <translation>&amp;Vrátit</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="938"/>
+        <location filename="../ViewManager/ViewManager.py" line="937"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="938"/>
+        <location filename="../ViewManager/ViewManager.py" line="937"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="947"/>
+        <location filename="../ViewManager/ViewManager.py" line="946"/>
         <source>Undo the last change</source>
         <translation>Vrátit poslední změnu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="949"/>
+        <location filename="../ViewManager/ViewManager.py" line="948"/>
         <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last change done in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Undo&lt;/b&gt;
 &lt;p&gt;Vrátit poslední změnu v aktuálním editačním okně.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="957"/>
+        <location filename="../ViewManager/ViewManager.py" line="956"/>
         <source>Redo</source>
         <translation>Redo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="957"/>
+        <location filename="../ViewManager/ViewManager.py" line="956"/>
         <source>&amp;Redo</source>
         <translation>&amp;Znovu použít</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="957"/>
+        <location filename="../ViewManager/ViewManager.py" line="956"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="965"/>
+        <location filename="../ViewManager/ViewManager.py" line="964"/>
         <source>Redo the last change</source>
         <translation>Znovu použít poslední změnu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="967"/>
+        <location filename="../ViewManager/ViewManager.py" line="966"/>
         <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last change done in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Redo&lt;/b&gt;
 &lt;p&gt;Znovu použít poslení změnu, která byla provedena v aktuálním editačním okně.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="984"/>
+        <location filename="../ViewManager/ViewManager.py" line="983"/>
         <source>Revert to last saved state</source>
         <translation>Vrátit se k poslednímu uloženému stavu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="975"/>
+        <location filename="../ViewManager/ViewManager.py" line="974"/>
         <source>Re&amp;vert to last saved state</source>
         <translation>Vrátit se k &amp;poslednímu uloženému stavu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="975"/>
+        <location filename="../ViewManager/ViewManager.py" line="974"/>
         <source>Ctrl+Y</source>
         <comment>Edit|Revert</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="985"/>
         <source>&lt;b&gt;Revert to last saved state&lt;/b&gt;&lt;p&gt;Undo all changes up to the last saved state of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vrátit poslwední uložený stav&lt;/b&gt;
 &lt;p&gt;Zruší všechny změny, které byly provedeny od posledního uložení.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <source>Cut</source>
         <translation>Vyjmout</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <source>Cu&amp;t</source>
         <translation>Vyjmou&amp;t</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1006"/>
+        <location filename="../ViewManager/ViewManager.py" line="1005"/>
         <source>Cut the selection</source>
         <translation>Vyjmout výběr</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1008"/>
+        <location filename="../ViewManager/ViewManager.py" line="1007"/>
         <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected text of the current editor to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vyjmout&lt;/b&gt;
 &lt;p&gt;Vyjme vybraný text z aktuálního editačního okna a vloží jej do schránky.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1017"/>
+        <location filename="../ViewManager/ViewManager.py" line="1016"/>
         <source>Copy</source>
         <translation>Kopírovat</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1017"/>
+        <location filename="../ViewManager/ViewManager.py" line="1016"/>
         <source>&amp;Copy</source>
         <translation>&amp;Kopírovat</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1017"/>
+        <location filename="../ViewManager/ViewManager.py" line="1016"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1017"/>
+        <location filename="../ViewManager/ViewManager.py" line="1016"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1026"/>
+        <location filename="../ViewManager/ViewManager.py" line="1025"/>
         <source>Copy the selection</source>
         <translation>Kopírovat výběr</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1028"/>
+        <location filename="../ViewManager/ViewManager.py" line="1027"/>
         <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected text of the current editor to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Kopírovat&lt;/b&gt;
 &lt;p&gt;Zkopíruje vybraný text v aktuálním editačním okně a uloží jej do schránky.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1037"/>
+        <location filename="../ViewManager/ViewManager.py" line="1036"/>
         <source>Paste</source>
         <translation>Vložit</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1037"/>
+        <location filename="../ViewManager/ViewManager.py" line="1036"/>
         <source>&amp;Paste</source>
         <translation>V&amp;ložit</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1037"/>
+        <location filename="../ViewManager/ViewManager.py" line="1036"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1037"/>
+        <location filename="../ViewManager/ViewManager.py" line="1036"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1046"/>
+        <location filename="../ViewManager/ViewManager.py" line="1045"/>
         <source>Paste the last cut/copied text</source>
         <translation>Vložit text ze schránky</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1048"/>
+        <location filename="../ViewManager/ViewManager.py" line="1047"/>
         <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the last cut/copied text from the clipboard to the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vložit&lt;/b&gt;
 &lt;p&gt;Vloží text, který byl uložen do schránky při předchozím kroku Vyjmout nebo Kopírovat.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1057"/>
+        <location filename="../ViewManager/ViewManager.py" line="1056"/>
         <source>Clear</source>
         <translation>Vyčistit</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1057"/>
+        <location filename="../ViewManager/ViewManager.py" line="1056"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1065"/>
+        <location filename="../ViewManager/ViewManager.py" line="1064"/>
         <source>Clear all text</source>
         <translation>Vyčistit všechen text</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1067"/>
+        <location filename="../ViewManager/ViewManager.py" line="1066"/>
         <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Delete all text of the current editor.&lt;/p&gt;</source>
         <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="../ViewManager/ViewManager.py" line="1092"/>
+        <location filename="../ViewManager/ViewManager.py" line="1091"/>
         <source>Indent</source>
         <translation>Odsadit</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1092"/>
+        <location filename="../ViewManager/ViewManager.py" line="1091"/>
         <source>&amp;Indent</source>
         <translation>Odsad&amp;it</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1092"/>
+        <location filename="../ViewManager/ViewManager.py" line="1091"/>
         <source>Ctrl+I</source>
         <comment>Edit|Indent</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1100"/>
+        <location filename="../ViewManager/ViewManager.py" line="1099"/>
         <source>Indent line</source>
         <translation>Odsadit řádek</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1102"/>
+        <location filename="../ViewManager/ViewManager.py" line="1101"/>
         <source>&lt;b&gt;Indent&lt;/b&gt;&lt;p&gt;Indents the current line or the lines of the selection by one level.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Odsadit&lt;/b&gt;
 &lt;p&gt;Odsadí aktuální řádek nebo vybrané řádky o jednu úroveň.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1111"/>
+        <location filename="../ViewManager/ViewManager.py" line="1110"/>
         <source>Unindent</source>
         <translation>Zrušit odsazení</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1111"/>
+        <location filename="../ViewManager/ViewManager.py" line="1110"/>
         <source>U&amp;nindent</source>
         <translation>Zrušit odsaze&amp;ní</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1111"/>
+        <location filename="../ViewManager/ViewManager.py" line="1110"/>
         <source>Ctrl+Shift+I</source>
         <comment>Edit|Unindent</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1119"/>
+        <location filename="../ViewManager/ViewManager.py" line="1118"/>
         <source>Unindent line</source>
         <translation>Zrušit odsazení řádku</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1121"/>
+        <location filename="../ViewManager/ViewManager.py" line="1120"/>
         <source>&lt;b&gt;Unindent&lt;/b&gt;&lt;p&gt;Unindents the current line or the lines of the selection by one level.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Zrušit odsazení&lt;/b&gt;
 &lt;p&gt;Zruší odsazení akruálního řádku nebo vybraných řádků o jednu úroveň.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1130"/>
+        <location filename="../ViewManager/ViewManager.py" line="1129"/>
         <source>Smart indent</source>
         <translation>Chytré odsazení</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1136"/>
+        <location filename="../ViewManager/ViewManager.py" line="1135"/>
         <source>Smart indent Line or Selection</source>
         <translation>Chytré odsazení řádku nebo výběru</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1138"/>
+        <location filename="../ViewManager/ViewManager.py" line="1137"/>
         <source>&lt;b&gt;Smart indent&lt;/b&gt;&lt;p&gt;Indents the current line or the lines of the current selection smartly.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Chytré odsazení&lt;/b&gt;
 &lt;p&gt;Odsadí aktuální řádek nebo výběr podle významu předchozího kódu.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1147"/>
+        <location filename="../ViewManager/ViewManager.py" line="1146"/>
         <source>Comment</source>
         <translation>Vytvořit Komentář</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1147"/>
+        <location filename="../ViewManager/ViewManager.py" line="1146"/>
         <source>C&amp;omment</source>
         <translation>Vytvořit K&amp;omentář</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1147"/>
+        <location filename="../ViewManager/ViewManager.py" line="1146"/>
         <source>Ctrl+M</source>
         <comment>Edit|Comment</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1155"/>
+        <location filename="../ViewManager/ViewManager.py" line="1154"/>
         <source>Comment Line or Selection</source>
         <translation>Vytvořit z řádky nebo výběru komentář</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1157"/>
+        <location filename="../ViewManager/ViewManager.py" line="1156"/>
         <source>&lt;b&gt;Comment&lt;/b&gt;&lt;p&gt;Comments the current line or the lines of the current selection.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Komentář&lt;/b&gt;
 &lt;p&gt;Z aktuální řádky nebo vybraných řádků vytvoří komentář.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1166"/>
+        <location filename="../ViewManager/ViewManager.py" line="1165"/>
         <source>Uncomment</source>
         <translation>Zrušit komentář</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1166"/>
+        <location filename="../ViewManager/ViewManager.py" line="1165"/>
         <source>Unco&amp;mment</source>
         <translation>Zrušit ko&amp;mentář</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1166"/>
+        <location filename="../ViewManager/ViewManager.py" line="1165"/>
         <source>Alt+Ctrl+M</source>
         <comment>Edit|Uncomment</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1174"/>
+        <location filename="../ViewManager/ViewManager.py" line="1173"/>
         <source>Uncomment Line or Selection</source>
         <translation>Zrušit komentář na řádce nebo výběru</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1176"/>
+        <location filename="../ViewManager/ViewManager.py" line="1175"/>
         <source>&lt;b&gt;Uncomment&lt;/b&gt;&lt;p&gt;Uncomments the current line or the lines of the current selection.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Zrušit komentář&lt;/b&gt;
 &lt;p&gt;Zruší komentář na aktuálním řádku nebo výběru.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1207"/>
+        <location filename="../ViewManager/ViewManager.py" line="1206"/>
         <source>Stream Comment</source>
         <translation>Stream komentář</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1212"/>
+        <location filename="../ViewManager/ViewManager.py" line="1211"/>
         <source>Stream Comment Line or Selection</source>
         <translation>Steram komentář řádky nebo výběru</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1215"/>
+        <location filename="../ViewManager/ViewManager.py" line="1214"/>
         <source>&lt;b&gt;Stream Comment&lt;/b&gt;&lt;p&gt;Stream comments the current line or the current selection.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Stream komentář&lt;/b&gt;
 &lt;p&gt;Stream zakomentuje aktuální řádku nebo výběr.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1224"/>
+        <location filename="../ViewManager/ViewManager.py" line="1223"/>
         <source>Box Comment</source>
         <translation>Box komentář</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1229"/>
+        <location filename="../ViewManager/ViewManager.py" line="1228"/>
         <source>Box Comment Line or Selection</source>
         <translation>Box komentář řádku nebo výběru</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1231"/>
+        <location filename="../ViewManager/ViewManager.py" line="1230"/>
         <source>&lt;b&gt;Box Comment&lt;/b&gt;&lt;p&gt;Box comments the current line or the lines of the current selection.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Box komentář&lt;/b&gt;
 &lt;p&gt;Bok komentář vytvoří komnetář z aktuálního řádku nebo výběru.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1240"/>
+        <location filename="../ViewManager/ViewManager.py" line="1239"/>
         <source>Select to brace</source>
         <translation>Vybrat obsah závorek</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1240"/>
+        <location filename="../ViewManager/ViewManager.py" line="1239"/>
         <source>Select to &amp;brace</source>
         <translation>Vy&amp;brat obsah závorek</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1240"/>
+        <location filename="../ViewManager/ViewManager.py" line="1239"/>
         <source>Ctrl+E</source>
         <comment>Edit|Select to brace</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1247"/>
+        <location filename="../ViewManager/ViewManager.py" line="1246"/>
         <source>Select text to the matching brace</source>
         <translation>Výběr textu, který je mezi závorkami</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1258"/>
+        <location filename="../ViewManager/ViewManager.py" line="1257"/>
         <source>Select all</source>
         <translation>Vybrat vše</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1258"/>
+        <location filename="../ViewManager/ViewManager.py" line="1257"/>
         <source>&amp;Select all</source>
         <translation>Vybrat vš&amp;e</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1258"/>
+        <location filename="../ViewManager/ViewManager.py" line="1257"/>
         <source>Ctrl+A</source>
         <comment>Edit|Select all</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1266"/>
+        <location filename="../ViewManager/ViewManager.py" line="1265"/>
         <source>Select all text</source>
         <translation>Vybrat všechen text</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1275"/>
         <source>Deselect all</source>
         <translation>Zrušit celý výběr</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1275"/>
         <source>&amp;Deselect all</source>
         <translation>Z&amp;rušit celý výběr</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1275"/>
         <source>Alt+Ctrl+A</source>
         <comment>Edit|Deselect all</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1283"/>
+        <location filename="../ViewManager/ViewManager.py" line="1282"/>
         <source>Deselect all text</source>
         <translation>Zrušit výběr</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1300"/>
+        <location filename="../ViewManager/ViewManager.py" line="1299"/>
         <source>Convert Line End Characters</source>
         <translation>Konvertovat znaky konce řádků</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1293"/>
+        <location filename="../ViewManager/ViewManager.py" line="1292"/>
         <source>Convert &amp;Line End Characters</source>
         <translation>Konvertovat znaky konce řá&amp;dků</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1302"/>
+        <location filename="../ViewManager/ViewManager.py" line="1301"/>
         <source>&lt;b&gt;Convert Line End Characters&lt;/b&gt;&lt;p&gt;Convert the line end characters to the currently set type.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Konvertovet znaky konce řádků&lt;/b&gt;
 &lt;p&gt;Konvertuje znaky konců řádků na aktuální nastavený typ.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1316"/>
+        <location filename="../ViewManager/ViewManager.py" line="1315"/>
         <source>Shorten empty lines</source>
         <translation>Zkrátit prázdné řádky</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1318"/>
+        <location filename="../ViewManager/ViewManager.py" line="1317"/>
         <source>&lt;b&gt;Shorten empty lines&lt;/b&gt;&lt;p&gt;Shorten lines consisting solely of whitespace characters.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Zkrátit prázné řádky&lt;/b&gt;
 &lt;p&gt;Zkrátí řádky, které obsabují jen prázdné znaky.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1327"/>
+        <location filename="../ViewManager/ViewManager.py" line="1326"/>
         <source>&amp;Complete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2778"/>
+        <location filename="../ViewManager/ViewManager.py" line="2776"/>
         <source>Complete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1334"/>
+        <location filename="../ViewManager/ViewManager.py" line="1333"/>
         <source>Complete current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1336"/>
+        <location filename="../ViewManager/ViewManager.py" line="1335"/>
         <source>&lt;b&gt;Complete&lt;/b&gt;&lt;p&gt;Performs a completion of the word containing the cursor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1345"/>
+        <location filename="../ViewManager/ViewManager.py" line="1344"/>
         <source>Complete from Document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1355"/>
+        <location filename="../ViewManager/ViewManager.py" line="1354"/>
         <source>Complete current word from Document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1358"/>
+        <location filename="../ViewManager/ViewManager.py" line="1357"/>
         <source>&lt;b&gt;Complete from Document&lt;/b&gt;&lt;p&gt;Performs a completion from document of the word containing the cursor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1368"/>
+        <location filename="../ViewManager/ViewManager.py" line="1367"/>
         <source>Complete from APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1378"/>
+        <location filename="../ViewManager/ViewManager.py" line="1377"/>
         <source>Complete current word from APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1381"/>
+        <location filename="../ViewManager/ViewManager.py" line="1380"/>
         <source>&lt;b&gt;Complete from APIs&lt;/b&gt;&lt;p&gt;Performs a completion from APIs of the word containing the cursor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1391"/>
+        <location filename="../ViewManager/ViewManager.py" line="1390"/>
         <source>Complete from Document and APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1401"/>
+        <location filename="../ViewManager/ViewManager.py" line="1400"/>
         <source>Complete current word from Document and APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1404"/>
+        <location filename="../ViewManager/ViewManager.py" line="1403"/>
         <source>&lt;b&gt;Complete from Document and APIs&lt;/b&gt;&lt;p&gt;Performs a completion from document and APIs of the word containing the cursor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1481"/>
+        <location filename="../ViewManager/ViewManager.py" line="1480"/>
         <source>Move left one character</source>
         <translation>Posun o jeden znak doleva</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1481"/>
+        <location filename="../ViewManager/ViewManager.py" line="1480"/>
         <source>Left</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1495"/>
+        <location filename="../ViewManager/ViewManager.py" line="1494"/>
         <source>Move right one character</source>
         <translation>Posun o jeden znak doprava</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1495"/>
+        <location filename="../ViewManager/ViewManager.py" line="1494"/>
         <source>Right</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1509"/>
+        <location filename="../ViewManager/ViewManager.py" line="1508"/>
         <source>Move up one line</source>
         <translation>Posun o jeden řádek nahoru</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1509"/>
+        <location filename="../ViewManager/ViewManager.py" line="1508"/>
         <source>Up</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1521"/>
+        <location filename="../ViewManager/ViewManager.py" line="1520"/>
         <source>Move down one line</source>
         <translation>Posun o jeden řádek dolu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1521"/>
+        <location filename="../ViewManager/ViewManager.py" line="1520"/>
         <source>Down</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1533"/>
+        <location filename="../ViewManager/ViewManager.py" line="1532"/>
         <source>Move left one word part</source>
         <translation>Posun o jednu část slova doleva</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1567"/>
+        <location filename="../ViewManager/ViewManager.py" line="1566"/>
         <source>Alt+Left</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1547"/>
+        <location filename="../ViewManager/ViewManager.py" line="1546"/>
         <source>Move right one word part</source>
         <translation>Posun o jednu část slova doprava</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2448"/>
+        <location filename="../ViewManager/ViewManager.py" line="2446"/>
         <source>Alt+Right</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1561"/>
+        <location filename="../ViewManager/ViewManager.py" line="1560"/>
         <source>Move left one word</source>
         <translation>Posun o jedno slovo doleva</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1612"/>
+        <location filename="../ViewManager/ViewManager.py" line="1611"/>
         <source>Ctrl+Left</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1576"/>
+        <location filename="../ViewManager/ViewManager.py" line="1575"/>
         <source>Move right one word</source>
         <translation>Posun o jedno slovo doprava</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2202"/>
+        <location filename="../ViewManager/ViewManager.py" line="2200"/>
         <source>Ctrl+Right</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2403"/>
+        <location filename="../ViewManager/ViewManager.py" line="2401"/>
         <source>Home</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1615"/>
+        <location filename="../ViewManager/ViewManager.py" line="1614"/>
         <source>Alt+Home</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2418"/>
+        <location filename="../ViewManager/ViewManager.py" line="2416"/>
         <source>End</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1638"/>
+        <location filename="../ViewManager/ViewManager.py" line="1637"/>
         <source>Scroll view down one line</source>
         <translation>Posun pohledu  jeden řádek dolů</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1728"/>
+        <location filename="../ViewManager/ViewManager.py" line="1727"/>
         <source>Ctrl+Down</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1650"/>
+        <location filename="../ViewManager/ViewManager.py" line="1649"/>
         <source>Scroll view up one line</source>
         <translation>Posun pohledu o jeden řádek nahoru</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1711"/>
+        <location filename="../ViewManager/ViewManager.py" line="1710"/>
         <source>Ctrl+Up</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1661"/>
+        <location filename="../ViewManager/ViewManager.py" line="1660"/>
         <source>Move up one paragraph</source>
         <translation>Posun na předchozí odstavec</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1661"/>
+        <location filename="../ViewManager/ViewManager.py" line="1660"/>
         <source>Alt+Up</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1670"/>
+        <location filename="../ViewManager/ViewManager.py" line="1669"/>
         <source>Move down one paragraph</source>
         <translation>Posun na následující odstavec</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1670"/>
+        <location filename="../ViewManager/ViewManager.py" line="1669"/>
         <source>Alt+Down</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1682"/>
+        <location filename="../ViewManager/ViewManager.py" line="1681"/>
         <source>Move up one page</source>
         <translation>Posun na předchozí stranu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1682"/>
+        <location filename="../ViewManager/ViewManager.py" line="1681"/>
         <source>PgUp</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1691"/>
+        <location filename="../ViewManager/ViewManager.py" line="1690"/>
         <source>Move down one page</source>
         <translation>Posun na následující stranu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1691"/>
+        <location filename="../ViewManager/ViewManager.py" line="1690"/>
         <source>PgDown</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1714"/>
+        <location filename="../ViewManager/ViewManager.py" line="1713"/>
         <source>Ctrl+Home</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1731"/>
+        <location filename="../ViewManager/ViewManager.py" line="1730"/>
         <source>Ctrl+End</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1737"/>
+        <location filename="../ViewManager/ViewManager.py" line="1736"/>
         <source>Indent one level</source>
         <translation>Odsadit o jednu úroveň</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1737"/>
+        <location filename="../ViewManager/ViewManager.py" line="1736"/>
         <source>Tab</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1746"/>
+        <location filename="../ViewManager/ViewManager.py" line="1745"/>
         <source>Unindent one level</source>
         <translation>Zrušit odsazení o jednu úroveň</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1746"/>
+        <location filename="../ViewManager/ViewManager.py" line="1745"/>
         <source>Shift+Tab</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1756"/>
+        <location filename="../ViewManager/ViewManager.py" line="1755"/>
         <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="1756"/>
+        <location filename="../ViewManager/ViewManager.py" line="1755"/>
         <source>Shift+Left</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1771"/>
+        <location filename="../ViewManager/ViewManager.py" line="1770"/>
         <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="1771"/>
+        <location filename="../ViewManager/ViewManager.py" line="1770"/>
         <source>Shift+Right</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1786"/>
+        <location filename="../ViewManager/ViewManager.py" line="1785"/>
         <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="1786"/>
+        <location filename="../ViewManager/ViewManager.py" line="1785"/>
         <source>Shift+Up</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1801"/>
+        <location filename="../ViewManager/ViewManager.py" line="1800"/>
         <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="1801"/>
+        <location filename="../ViewManager/ViewManager.py" line="1800"/>
         <source>Shift+Down</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1816"/>
+        <location filename="../ViewManager/ViewManager.py" line="1815"/>
         <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="1852"/>
+        <location filename="../ViewManager/ViewManager.py" line="1851"/>
         <source>Alt+Shift+Left</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1830"/>
+        <location filename="../ViewManager/ViewManager.py" line="1829"/>
         <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="2463"/>
+        <location filename="../ViewManager/ViewManager.py" line="2461"/>
         <source>Alt+Shift+Right</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1844"/>
+        <location filename="../ViewManager/ViewManager.py" line="1843"/>
         <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="2557"/>
+        <location filename="../ViewManager/ViewManager.py" line="2555"/>
         <source>Ctrl+Shift+Left</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1861"/>
+        <location filename="../ViewManager/ViewManager.py" line="1860"/>
         <source>Extend selection right one word</source>
         <translation>Rozšířit výběr o jedno slovo vpravo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2219"/>
+        <location filename="../ViewManager/ViewManager.py" line="2217"/>
         <source>Ctrl+Shift+Right</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1890"/>
+        <location filename="../ViewManager/ViewManager.py" line="1889"/>
         <source>Shift+Home</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2323"/>
+        <location filename="../ViewManager/ViewManager.py" line="2321"/>
         <source>Alt+Shift+Home</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1907"/>
+        <location filename="../ViewManager/ViewManager.py" line="1906"/>
         <source>Shift+End</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1913"/>
+        <location filename="../ViewManager/ViewManager.py" line="1912"/>
         <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="1913"/>
+        <location filename="../ViewManager/ViewManager.py" line="1912"/>
         <source>Alt+Shift+Up</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1926"/>
+        <location filename="../ViewManager/ViewManager.py" line="1925"/>
         <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="1926"/>
+        <location filename="../ViewManager/ViewManager.py" line="1925"/>
         <source>Alt+Shift+Down</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1939"/>
+        <location filename="../ViewManager/ViewManager.py" line="1938"/>
         <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="1939"/>
+        <location filename="../ViewManager/ViewManager.py" line="1938"/>
         <source>Shift+PgUp</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1951"/>
+        <location filename="../ViewManager/ViewManager.py" line="1950"/>
         <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="1951"/>
+        <location filename="../ViewManager/ViewManager.py" line="1950"/>
         <source>Shift+PgDown</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1978"/>
+        <location filename="../ViewManager/ViewManager.py" line="1977"/>
         <source>Ctrl+Shift+Home</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1995"/>
+        <location filename="../ViewManager/ViewManager.py" line="1994"/>
         <source>Ctrl+Shift+End</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2001"/>
+        <location filename="../ViewManager/ViewManager.py" line="2000"/>
         <source>Delete previous character</source>
         <translation>Smazat předchozí znak</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2001"/>
+        <location filename="../ViewManager/ViewManager.py" line="2000"/>
         <source>Backspace</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2013"/>
+        <location filename="../ViewManager/ViewManager.py" line="2012"/>
         <source>Shift+Backspace</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2032"/>
+        <location filename="../ViewManager/ViewManager.py" line="2031"/>
         <source>Delete current character</source>
         <translation>Smazat aktuální znak</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2032"/>
+        <location filename="../ViewManager/ViewManager.py" line="2031"/>
         <source>Del</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2046"/>
+        <location filename="../ViewManager/ViewManager.py" line="2045"/>
         <source>Delete word to left</source>
         <translation>Smazat slovo doleva</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2046"/>
+        <location filename="../ViewManager/ViewManager.py" line="2045"/>
         <source>Ctrl+Backspace</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2057"/>
+        <location filename="../ViewManager/ViewManager.py" line="2056"/>
         <source>Delete word to right</source>
         <translation>Smazat slovo doprava</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2057"/>
+        <location filename="../ViewManager/ViewManager.py" line="2056"/>
         <source>Ctrl+Del</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2067"/>
+        <location filename="../ViewManager/ViewManager.py" line="2066"/>
         <source>Delete line to left</source>
         <translation>Smazat řádku doleva</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2067"/>
+        <location filename="../ViewManager/ViewManager.py" line="2066"/>
         <source>Ctrl+Shift+Backspace</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2078"/>
+        <location filename="../ViewManager/ViewManager.py" line="2077"/>
         <source>Delete line to right</source>
         <translation>Smazat řádku doprava</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2087"/>
+        <location filename="../ViewManager/ViewManager.py" line="2086"/>
         <source>Ctrl+Shift+Del</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2093"/>
+        <location filename="../ViewManager/ViewManager.py" line="2092"/>
         <source>Insert new line</source>
         <translation>Vložit nový řádek</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2093"/>
+        <location filename="../ViewManager/ViewManager.py" line="2092"/>
         <source>Return</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2093"/>
+        <location filename="../ViewManager/ViewManager.py" line="2092"/>
         <source>Enter</source>
         <translation>Enter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2116"/>
+        <location filename="../ViewManager/ViewManager.py" line="2115"/>
         <source>Delete current line</source>
         <translation>Smazat aktuální řádek</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2116"/>
+        <location filename="../ViewManager/ViewManager.py" line="2115"/>
         <source>Ctrl+Shift+L</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2127"/>
+        <location filename="../ViewManager/ViewManager.py" line="2126"/>
         <source>Duplicate current line</source>
         <translation>Duplikovat aktuální řádek</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2127"/>
+        <location filename="../ViewManager/ViewManager.py" line="2126"/>
         <source>Ctrl+D</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2138"/>
+        <location filename="../ViewManager/ViewManager.py" line="2137"/>
         <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="2138"/>
+        <location filename="../ViewManager/ViewManager.py" line="2137"/>
         <source>Ctrl+T</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2162"/>
+        <location filename="../ViewManager/ViewManager.py" line="2160"/>
         <source>Cut current line</source>
         <translation>Vyjmout aktuální řádek</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2162"/>
+        <location filename="../ViewManager/ViewManager.py" line="2160"/>
         <source>Alt+Shift+L</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2172"/>
+        <location filename="../ViewManager/ViewManager.py" line="2170"/>
         <source>Copy current line</source>
         <translation>Kopírovat aktuální řádek</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2172"/>
+        <location filename="../ViewManager/ViewManager.py" line="2170"/>
         <source>Ctrl+Shift+T</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2183"/>
+        <location filename="../ViewManager/ViewManager.py" line="2181"/>
         <source>Toggle insert/overtype</source>
         <translation>Přepnout vkládání/přepisování</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2183"/>
+        <location filename="../ViewManager/ViewManager.py" line="2181"/>
         <source>Ins</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2747"/>
+        <location filename="../ViewManager/ViewManager.py" line="2745"/>
         <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="2747"/>
+        <location filename="../ViewManager/ViewManager.py" line="2745"/>
         <source>Alt+Shift+U</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2759"/>
+        <location filename="../ViewManager/ViewManager.py" line="2757"/>
         <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="2759"/>
+        <location filename="../ViewManager/ViewManager.py" line="2757"/>
         <source>Ctrl+Shift+U</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2205"/>
+        <location filename="../ViewManager/ViewManager.py" line="2203"/>
         <source>Alt+End</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2225"/>
+        <location filename="../ViewManager/ViewManager.py" line="2223"/>
         <source>Formfeed</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2234"/>
+        <location filename="../ViewManager/ViewManager.py" line="2232"/>
         <source>Escape</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2234"/>
+        <location filename="../ViewManager/ViewManager.py" line="2232"/>
         <source>Esc</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2243"/>
+        <location filename="../ViewManager/ViewManager.py" line="2241"/>
         <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="2243"/>
+        <location filename="../ViewManager/ViewManager.py" line="2241"/>
         <source>Alt+Ctrl+Down</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2259"/>
+        <location filename="../ViewManager/ViewManager.py" line="2257"/>
         <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="2259"/>
+        <location filename="../ViewManager/ViewManager.py" line="2257"/>
         <source>Alt+Ctrl+Up</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2274"/>
+        <location filename="../ViewManager/ViewManager.py" line="2272"/>
         <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="2274"/>
+        <location filename="../ViewManager/ViewManager.py" line="2272"/>
         <source>Alt+Ctrl+Left</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2292"/>
+        <location filename="../ViewManager/ViewManager.py" line="2290"/>
         <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="2292"/>
+        <location filename="../ViewManager/ViewManager.py" line="2290"/>
         <source>Alt+Ctrl+Right</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2348"/>
+        <location filename="../ViewManager/ViewManager.py" line="2346"/>
         <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="2363"/>
+        <location filename="../ViewManager/ViewManager.py" line="2361"/>
         <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="2381"/>
+        <location filename="../ViewManager/ViewManager.py" line="2379"/>
         <source>Duplicate current selection</source>
         <translation>Duplikovat aktuální výběr</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2381"/>
+        <location filename="../ViewManager/ViewManager.py" line="2379"/>
         <source>Ctrl+Shift+D</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3354"/>
+        <location filename="../ViewManager/ViewManager.py" line="3352"/>
         <source>&amp;Search</source>
         <translation>V&amp;yhledat</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2788"/>
+        <location filename="../ViewManager/ViewManager.py" line="2786"/>
         <source>&amp;Edit</source>
         <translation>&amp;Edit</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2845"/>
+        <location filename="../ViewManager/ViewManager.py" line="2843"/>
         <source>Edit</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3449"/>
+        <location filename="../ViewManager/ViewManager.py" line="3447"/>
         <source>Search</source>
         <translation>Vyhledat</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2877"/>
+        <location filename="../ViewManager/ViewManager.py" line="2875"/>
         <source>&amp;Search...</source>
         <translation>V&amp;yhledat...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2877"/>
+        <location filename="../ViewManager/ViewManager.py" line="2875"/>
         <source>Ctrl+F</source>
         <comment>Search|Search</comment>
         <translation></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="2883"/>
+        <source>Search for a text</source>
+        <translation>Hledat text</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="2885"/>
-        <source>Search for a text</source>
-        <translation>Hledat text</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2887"/>
         <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="2897"/>
+        <location filename="../ViewManager/ViewManager.py" line="2895"/>
         <source>Search next</source>
         <translation>Hledat text</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2897"/>
+        <location filename="../ViewManager/ViewManager.py" line="2895"/>
         <source>Search &amp;next</source>
         <translation>Hledat &amp;další</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2897"/>
+        <location filename="../ViewManager/ViewManager.py" line="2895"/>
         <source>F3</source>
         <comment>Search|Search next</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2918"/>
+        <location filename="../ViewManager/ViewManager.py" line="2916"/>
         <source>Search previous</source>
         <translation>Hledat předchozí</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2918"/>
+        <location filename="../ViewManager/ViewManager.py" line="2916"/>
         <source>Search &amp;previous</source>
         <translation>Hledat &amp;předchozí</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2918"/>
+        <location filename="../ViewManager/ViewManager.py" line="2916"/>
         <source>Shift+F3</source>
         <comment>Search|Search previous</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3003"/>
+        <location filename="../ViewManager/ViewManager.py" line="3001"/>
         <source>Replace</source>
         <translation>Nahradit</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3003"/>
+        <location filename="../ViewManager/ViewManager.py" line="3001"/>
         <source>&amp;Replace...</source>
         <translation>Nah&amp;radit...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3003"/>
+        <location filename="../ViewManager/ViewManager.py" line="3001"/>
         <source>Ctrl+R</source>
         <comment>Search|Replace</comment>
         <translation></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3008"/>
+        <source>Replace some text</source>
+        <translation>Hledat nějaký text</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3010"/>
-        <source>Replace some text</source>
-        <translation>Hledat nějaký text</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3012"/>
         <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>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3389"/>
+        <location filename="../ViewManager/ViewManager.py" line="3387"/>
         <source>Quicksearch</source>
         <translation>Rychlé hledání</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3090"/>
+        <location filename="../ViewManager/ViewManager.py" line="3088"/>
         <source>&amp;Quicksearch</source>
         <translation>Rychlé hl&amp;edání</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3090"/>
+        <location filename="../ViewManager/ViewManager.py" line="3088"/>
         <source>Ctrl+Shift+K</source>
         <comment>Search|Quicksearch</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3098"/>
+        <location filename="../ViewManager/ViewManager.py" line="3096"/>
         <source>Perform a quicksearch</source>
         <translation>Provést rychlé hledání</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3111"/>
+        <location filename="../ViewManager/ViewManager.py" line="3109"/>
         <source>Quicksearch backwards</source>
         <translation>Rychlé hledání zpět</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3111"/>
+        <location filename="../ViewManager/ViewManager.py" line="3109"/>
         <source>Quicksearch &amp;backwards</source>
         <translation>Rychlé hledání &amp;zpět</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3111"/>
+        <location filename="../ViewManager/ViewManager.py" line="3109"/>
         <source>Ctrl+Shift+J</source>
         <comment>Search|Quicksearch backwards</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3121"/>
+        <location filename="../ViewManager/ViewManager.py" line="3119"/>
         <source>Perform a quicksearch backwards</source>
         <translation>Provést rychlé hledání zpět</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3133"/>
+        <location filename="../ViewManager/ViewManager.py" line="3131"/>
         <source>Quicksearch extend</source>
         <translation>Rychlé hledání rozšířit</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3133"/>
+        <location filename="../ViewManager/ViewManager.py" line="3131"/>
         <source>Quicksearch e&amp;xtend</source>
         <translation>Rychlé hl&amp;edání rozšířit</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3133"/>
+        <location filename="../ViewManager/ViewManager.py" line="3131"/>
         <source>Ctrl+Shift+H</source>
         <comment>Search|Quicksearch extend</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3141"/>
+        <location filename="../ViewManager/ViewManager.py" line="3139"/>
         <source>Extend the quicksearch to the end of the current word</source>
         <translation>Rozšířit rychlé hledání na konec aktuálního slova</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3144"/>
+        <location filename="../ViewManager/ViewManager.py" line="3142"/>
         <source>&lt;b&gt;Quicksearch extend&lt;/b&gt;&lt;p&gt;This extends the quicksearch text to the end of the word currently found.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rychlé hlednání rozšířit&lt;/b&gt;
 &lt;p&gt;Rychlé hledání se rozšíří na konec aktuálně nalezeného slova.&lt;p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3162"/>
+        <location filename="../ViewManager/ViewManager.py" line="3160"/>
         <source>Goto Line</source>
         <translation>Jít na řádek</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3154"/>
+        <location filename="../ViewManager/ViewManager.py" line="3152"/>
         <source>&amp;Goto Line...</source>
         <translation>&amp;Jít na řádek...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3154"/>
+        <location filename="../ViewManager/ViewManager.py" line="3152"/>
         <source>Ctrl+G</source>
         <comment>Search|Goto Line</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3164"/>
+        <location filename="../ViewManager/ViewManager.py" line="3162"/>
         <source>&lt;b&gt;Goto Line&lt;/b&gt;&lt;p&gt;Go to a specific line of text in the current editor. A dialog is shown to enter the linenumber.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Jít na řádek&lt;/b&gt;
 &lt;p&gt;Jít na určený řádek. Zobrazí se dialogové okno, kde se zadá číslo požadovaného řádku.&lt;p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3179"/>
+        <source>Goto Brace</source>
+        <translation>Jít na závorku</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3171"/>
+        <source>Goto &amp;Brace</source>
+        <translation>Jít na závork&amp;u</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3171"/>
+        <source>Ctrl+L</source>
+        <comment>Search|Goto Brace</comment>
+        <translation></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3181"/>
-        <source>Goto Brace</source>
-        <translation>Jít na závorku</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3173"/>
-        <source>Goto &amp;Brace</source>
-        <translation>Jít na závork&amp;u</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3173"/>
-        <source>Ctrl+L</source>
-        <comment>Search|Goto Brace</comment>
-        <translation></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3183"/>
         <source>&lt;b&gt;Goto Brace&lt;/b&gt;&lt;p&gt;Go to the matching brace in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Jít na závorku&lt;/b&gt;
 &lt;p&gt;Jíta na závoku, která patří do páru s tou, na které se nachází kurzor.&lt;p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3261"/>
+        <location filename="../ViewManager/ViewManager.py" line="3259"/>
         <source>Search in Files</source>
         <translation>Hledat v souborech</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3261"/>
+        <location filename="../ViewManager/ViewManager.py" line="3259"/>
         <source>Search in &amp;Files...</source>
         <translation>&amp;Hledat v souborech...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3261"/>
+        <location filename="../ViewManager/ViewManager.py" line="3259"/>
         <source>Shift+Ctrl+F</source>
         <comment>Search|Search Files</comment>
         <translation></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3267"/>
+        <source>Search for a text in files</source>
+        <translation>Hledat text v souborech</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3269"/>
-        <source>Search for a text in files</source>
-        <translation>Hledat text v souborech</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3271"/>
         <source>&lt;b&gt;Search in Files&lt;/b&gt;&lt;p&gt;Search for some text in the files of a directory tree or the project. A dialog is shown to enter the searchtext and options for the search and to display the result.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Hledat v souborech&lt;/b&gt;
 &lt;p&gt;Hledat text v souborech v adresářích nebo projektu. Je zobrazeno dialogové okno, do kterého se zadá hledaný text a nastavení a ve kterém se zobrazuje výsledek hledání.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3487"/>
         <source>Zoom in</source>
         <translation>Přiblížit</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3487"/>
         <source>Zoom &amp;in</source>
         <translation>Př&amp;iblížit</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3487"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3496"/>
+        <source>Zoom in on the text</source>
+        <translation>Zvětšovací lupa</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3498"/>
-        <source>Zoom in on the text</source>
-        <translation>Zvětšovací lupa</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3500"/>
         <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="3508"/>
+        <location filename="../ViewManager/ViewManager.py" line="3506"/>
         <source>Zoom out</source>
         <translation>Oddálit</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3508"/>
+        <location filename="../ViewManager/ViewManager.py" line="3506"/>
         <source>Zoom &amp;out</source>
         <translation>&amp;Oddálit</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3508"/>
+        <location filename="../ViewManager/ViewManager.py" line="3506"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3515"/>
+        <source>Zoom out on the text</source>
+        <translation>Zmenšovací lupa</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3517"/>
-        <source>Zoom out on the text</source>
-        <translation>Zmenšovací lupa</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3519"/>
         <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="3546"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>Zoom</source>
         <translation>Lupa</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3546"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>&amp;Zoom</source>
         <translation>&amp;Lupa</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3546"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>Ctrl+#</source>
         <comment>View|Zoom</comment>
         <translation></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3552"/>
+        <source>Zoom the text</source>
+        <translation>Lupa na text</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3554"/>
-        <source>Zoom the text</source>
-        <translation>Lupa na text</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3556"/>
         <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>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3567"/>
+        <source>Toggle all folds</source>
+        <translation>Složit/rozložit všechna skládání</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3563"/>
+        <source>&amp;Toggle all folds</source>
+        <translation type="unfinished">Složit/rozložit všechn&amp;a skládání</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3569"/>
-        <source>Toggle all folds</source>
-        <translation>Složit/rozložit všechna skládání</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3565"/>
-        <source>&amp;Toggle all folds</source>
-        <translation type="unfinished">Složit/rozložit všechn&amp;a skládání</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3571"/>
         <source>&lt;b&gt;Toggle all folds&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Složit/rozložit všechna skládání&lt;/b&gt;&lt;p&gt;Složí/rozloží všechna skládání v aktuálním editoru.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3583"/>
+        <source>Toggle all folds (including children)</source>
+        <translation>Složit/rozložit všechna skládání (i s podsložkami)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3577"/>
+        <source>Toggle all &amp;folds (including children)</source>
+        <translation>Složit/rozložit všechna &amp;skládání (i s podsložkami)</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3585"/>
-        <source>Toggle all folds (including children)</source>
-        <translation>Složit/rozložit všechna skládání (i s podsložkami)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3579"/>
-        <source>Toggle all &amp;folds (including children)</source>
-        <translation>Složit/rozložit všechna &amp;skládání (i s podsložkami)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3587"/>
         <source>&lt;b&gt;Toggle all folds (including children)&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor including all children.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Složit/rozložit všechna skládání (i s podsložkami)&lt;/b&gt;&lt;p&gt;Složí nebo rozloží všechna skládání i s podsložkami.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3599"/>
+        <source>Toggle current fold</source>
+        <translation>Složit/rozložit aktuální složený blok</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3595"/>
+        <source>Toggle &amp;current fold</source>
+        <translation>Složit/rozložit aktuální složený &amp;blok</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3601"/>
-        <source>Toggle current fold</source>
-        <translation>Složit/rozložit aktuální složený blok</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3597"/>
-        <source>Toggle &amp;current fold</source>
-        <translation>Složit/rozložit aktuální složený &amp;blok</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3603"/>
         <source>&lt;b&gt;Toggle current fold&lt;/b&gt;&lt;p&gt;Toggle the folds of the current line of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Složit/rozložit aktuální složený blok&lt;/b&gt;&lt;p&gt;Složí nebo rozloží aktuální složený blok v aktuálním editoru.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3631"/>
+        <source>Remove all highlights</source>
+        <translation>Odebrat všechna zvýraznění</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3633"/>
-        <source>Remove all highlights</source>
-        <translation>Odebrat všechna zvýraznění</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3635"/>
         <source>&lt;b&gt;Remove all highlights&lt;/b&gt;&lt;p&gt;Remove the highlights of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Odebrat všechna zvýraznění&lt;/b&gt;&lt;p&gt;Odebrat zvýraznění ve všech editorech.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3681"/>
+        <location filename="../ViewManager/ViewManager.py" line="3679"/>
         <source>Split view</source>
         <translation>Rozdělit pohled</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3681"/>
+        <location filename="../ViewManager/ViewManager.py" line="3679"/>
         <source>&amp;Split view</source>
         <translation>&amp;Rozdělit pohled</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3684"/>
+        <source>Add a split to the view</source>
+        <translation>Přidat další rozdělení pohledu</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3686"/>
-        <source>Add a split to the view</source>
-        <translation>Přidat další rozdělení pohledu</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3688"/>
         <source>&lt;b&gt;Split view&lt;/b&gt;&lt;p&gt;Add a split to the view.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rozdělit pohled&lt;/b&gt;&lt;p&gt;Přidá další okno na aktuální pohled.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3696"/>
+        <location filename="../ViewManager/ViewManager.py" line="3694"/>
         <source>Arrange horizontally</source>
         <translation>Uspořádat horizontálně</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3696"/>
+        <location filename="../ViewManager/ViewManager.py" line="3694"/>
         <source>Arrange &amp;horizontally</source>
         <translation>Uspořádat &amp;horizontálně</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3698"/>
+        <source>Arrange the splitted views horizontally</source>
+        <translation>Uspořádat rozdělené pohledy horizontálně</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3700"/>
-        <source>Arrange the splitted views horizontally</source>
-        <translation>Uspořádat rozdělené pohledy horizontálně</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3702"/>
         <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Uspořádat horizontálně&lt;/b&gt;&lt;p&gt;Uspořádat rozdělené pohledy horizontálně.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3711"/>
+        <location filename="../ViewManager/ViewManager.py" line="3709"/>
         <source>Remove split</source>
         <translation>Odebrat rozdělený pohled</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3711"/>
+        <location filename="../ViewManager/ViewManager.py" line="3709"/>
         <source>&amp;Remove split</source>
         <translation>Odebra&amp;t rozdělený pohled</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3714"/>
+        <source>Remove the current split</source>
+        <translation>Odebrat aktuální rozdělení pohledu</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3716"/>
-        <source>Remove the current split</source>
-        <translation>Odebrat aktuální rozdělení pohledu</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3718"/>
         <source>&lt;b&gt;Remove split&lt;/b&gt;&lt;p&gt;Remove the current split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Odebrat rozdělený pohled&lt;/b&gt;&lt;p&gt;Odebrat aktuální rozdělený pohled.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3726"/>
+        <location filename="../ViewManager/ViewManager.py" line="3724"/>
         <source>Next split</source>
         <translation>Další rozdělený pohled</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3726"/>
+        <location filename="../ViewManager/ViewManager.py" line="3724"/>
         <source>&amp;Next split</source>
         <translation>Další rozděle&amp;ný pohled</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3726"/>
+        <location filename="../ViewManager/ViewManager.py" line="3724"/>
         <source>Ctrl+Alt+N</source>
         <comment>View|Next split</comment>
         <translation></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3731"/>
+        <source>Move to the next split</source>
+        <translation>Posun na další rozdělený pohled</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3733"/>
-        <source>Move to the next split</source>
-        <translation>Posun na další rozdělený pohled</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3735"/>
         <source>&lt;b&gt;Next split&lt;/b&gt;&lt;p&gt;Move to the next split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Další rozdělený pohled&lt;/b&gt;&lt;p&gt;Posun na další rozdělený pohled.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3743"/>
+        <location filename="../ViewManager/ViewManager.py" line="3741"/>
         <source>Previous split</source>
         <translation>Předchozí rozdělený pohled</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3743"/>
+        <location filename="../ViewManager/ViewManager.py" line="3741"/>
         <source>&amp;Previous split</source>
         <translation>&amp;Předchozí rozdělený pohled</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3743"/>
+        <location filename="../ViewManager/ViewManager.py" line="3741"/>
         <source>Ctrl+Alt+P</source>
         <comment>View|Previous split</comment>
         <translation></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3747"/>
+        <source>Move to the previous split</source>
+        <translation>Posun na předchozí rozdělený pohled</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3749"/>
-        <source>Move to the previous split</source>
-        <translation>Posun na předchozí rozdělený pohled</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3751"/>
         <source>&lt;b&gt;Previous split&lt;/b&gt;&lt;p&gt;Move to the previous split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Předchozí rozdělený pohled&lt;/b&gt;&lt;p&gt;Posun na předchozí rozdělený pohled.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3835"/>
+        <location filename="../ViewManager/ViewManager.py" line="3833"/>
         <source>&amp;View</source>
         <translation>Poh&amp;led</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3872"/>
+        <location filename="../ViewManager/ViewManager.py" line="3870"/>
         <source>View</source>
         <translation>Pohled</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3906"/>
+        <source>Start Macro Recording</source>
+        <translation>Spustit záznam makra</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3900"/>
+        <source>S&amp;tart Macro Recording</source>
+        <translation>Spus&amp;tit záznam makra</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3908"/>
-        <source>Start Macro Recording</source>
-        <translation>Spustit záznam makra</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3902"/>
-        <source>S&amp;tart Macro Recording</source>
-        <translation>Spus&amp;tit záznam makra</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3910"/>
         <source>&lt;b&gt;Start Macro Recording&lt;/b&gt;&lt;p&gt;Start recording editor commands into a new macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Spustit záznam makra&lt;/b&gt;&lt;p&gt;Spustí se záznam příkazů do nového makra.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3920"/>
+        <source>Stop Macro Recording</source>
+        <translation>Zastavit záznam makra</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3916"/>
+        <source>Sto&amp;p Macro Recording</source>
+        <translation>Sto&amp;p záznamu makra</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3922"/>
-        <source>Stop Macro Recording</source>
-        <translation>Zastavit záznam makra</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3918"/>
-        <source>Sto&amp;p Macro Recording</source>
-        <translation>Sto&amp;p záznamu makra</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3924"/>
         <source>&lt;b&gt;Stop Macro Recording&lt;/b&gt;&lt;p&gt;Stop recording editor commands into a new macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Stop záznamu makra&lt;/b&gt;&lt;p&gt;Zastaví se nahrávání příkazů do makra.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3934"/>
+        <source>Run Macro</source>
+        <translation>Spustit makro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3930"/>
+        <source>&amp;Run Macro</source>
+        <translation>Spustit mak&amp;ro</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3936"/>
-        <source>Run Macro</source>
-        <translation>Spustit makro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3932"/>
-        <source>&amp;Run Macro</source>
-        <translation>Spustit mak&amp;ro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3938"/>
         <source>&lt;b&gt;Run Macro&lt;/b&gt;&lt;p&gt;Run a previously recorded editor macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Spustit makro&lt;/b&gt;&lt;p&gt;Spustit nahrané makro.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3948"/>
+        <source>Delete Macro</source>
+        <translation>Smazat makro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3944"/>
+        <source>&amp;Delete Macro</source>
+        <translation>Smazat makr&amp;o</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3950"/>
-        <source>Delete Macro</source>
-        <translation>Smazat makro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3946"/>
-        <source>&amp;Delete Macro</source>
-        <translation>Smazat makr&amp;o</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3952"/>
         <source>&lt;b&gt;Delete Macro&lt;/b&gt;&lt;p&gt;Delete a previously recorded editor macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Smazat makro&lt;/b&gt;&lt;p&gt;Smaže se nahrané makro.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3962"/>
+        <source>Load Macro</source>
+        <translation>Načíst makro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3958"/>
+        <source>&amp;Load Macro</source>
+        <translation>&amp;Načíst makro</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3964"/>
-        <source>Load Macro</source>
-        <translation>Načíst makro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3960"/>
-        <source>&amp;Load Macro</source>
-        <translation>&amp;Načíst makro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3966"/>
         <source>&lt;b&gt;Load Macro&lt;/b&gt;&lt;p&gt;Load an editor macro from a file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Načíst makro&lt;/b&gt;&lt;p&gt;Načte se makro ze souboru.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3976"/>
+        <source>Save Macro</source>
+        <translation>Uložit makro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3972"/>
+        <source>&amp;Save Macro</source>
+        <translation>&amp;Uložit makro</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3978"/>
-        <source>Save Macro</source>
-        <translation>Uložit makro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3974"/>
-        <source>&amp;Save Macro</source>
-        <translation>&amp;Uložit makro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3980"/>
         <source>&lt;b&gt;Save Macro&lt;/b&gt;&lt;p&gt;Save a previously recorded editor macro to a file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Uložit makro&lt;/b&gt;&lt;p&gt;Nahrané makro se uloží do souboru.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3996"/>
+        <location filename="../ViewManager/ViewManager.py" line="3994"/>
         <source>&amp;Macros</source>
         <translation>&amp;Makra</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4020"/>
+        <source>Toggle Bookmark</source>
+        <translation>Přepnout záložku</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <source>&amp;Toggle Bookmark</source>
+        <translation>Přepnou&amp;t záložku</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <source>Alt+Ctrl+T</source>
+        <comment>Bookmark|Toggle</comment>
+        <translation></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4022"/>
-        <source>Toggle Bookmark</source>
-        <translation>Přepnout záložku</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4014"/>
-        <source>&amp;Toggle Bookmark</source>
-        <translation>Přepnou&amp;t záložku</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4014"/>
-        <source>Alt+Ctrl+T</source>
-        <comment>Bookmark|Toggle</comment>
-        <translation></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4024"/>
         <source>&lt;b&gt;Toggle Bookmark&lt;/b&gt;&lt;p&gt;Toggle a bookmark at the current line of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Přepnout záložku&lt;/b&gt;&lt;p&gt;Vytvoří/zruší záložku na aktuálním řádku v aktuálním editoru.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4039"/>
+        <source>Next Bookmark</source>
+        <translation>Následující záložka</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4031"/>
+        <source>&amp;Next Bookmark</source>
+        <translation>&amp;Následující záložka</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4031"/>
+        <source>Ctrl+PgDown</source>
+        <comment>Bookmark|Next</comment>
+        <translation></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4041"/>
-        <source>Next Bookmark</source>
-        <translation>Následující záložka</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4033"/>
-        <source>&amp;Next Bookmark</source>
-        <translation>&amp;Následující záložka</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4033"/>
-        <source>Ctrl+PgDown</source>
-        <comment>Bookmark|Next</comment>
-        <translation></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4043"/>
         <source>&lt;b&gt;Next Bookmark&lt;/b&gt;&lt;p&gt;Go to next bookmark of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Následující záložka&lt;/b&gt;&lt;p&gt;Přesun na následující záložku v aktuálním editoru.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4057"/>
+        <source>Previous Bookmark</source>
+        <translation>Předchozí záložka</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4049"/>
+        <source>&amp;Previous Bookmark</source>
+        <translation>&amp;Předchozí záložka</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4049"/>
+        <source>Ctrl+PgUp</source>
+        <comment>Bookmark|Previous</comment>
+        <translation></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4059"/>
-        <source>Previous Bookmark</source>
-        <translation>Předchozí záložka</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4051"/>
-        <source>&amp;Previous Bookmark</source>
-        <translation>&amp;Předchozí záložka</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4051"/>
-        <source>Ctrl+PgUp</source>
-        <comment>Bookmark|Previous</comment>
-        <translation></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4061"/>
         <source>&lt;b&gt;Previous Bookmark&lt;/b&gt;&lt;p&gt;Go to previous bookmark of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Předchozí záložka&lt;/b&gt;&lt;p&gt;Přesun na předchozí záložku.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4074"/>
+        <source>Clear Bookmarks</source>
+        <translation>Vyčistit záložky</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <source>&amp;Clear Bookmarks</source>
+        <translation>Vyčistit (zr&amp;ušit) záložky</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <source>Alt+Ctrl+C</source>
+        <comment>Bookmark|Clear</comment>
+        <translation></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4076"/>
-        <source>Clear Bookmarks</source>
-        <translation>Vyčistit záložky</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4069"/>
-        <source>&amp;Clear Bookmarks</source>
-        <translation>Vyčistit (zr&amp;ušit) záložky</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4069"/>
-        <source>Alt+Ctrl+C</source>
-        <comment>Bookmark|Clear</comment>
-        <translation></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4078"/>
         <source>&lt;b&gt;Clear Bookmarks&lt;/b&gt;&lt;p&gt;Clear bookmarks of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vyčistit (zrušit) záložky&lt;/b&gt;&lt;p&gt;Zruší se všechny záložky ve všech editorech.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4090"/>
+        <source>Goto Syntax Error</source>
+        <translation>Jít na Syntaktickou chybu</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4084"/>
+        <source>&amp;Goto Syntax Error</source>
+        <translation>&amp;Jít na Syntaktickou chybu</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4092"/>
-        <source>Goto Syntax Error</source>
-        <translation>Jít na Syntaktickou chybu</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4086"/>
-        <source>&amp;Goto Syntax Error</source>
-        <translation>&amp;Jít na Syntaktickou chybu</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4094"/>
         <source>&lt;b&gt;Goto Syntax Error&lt;/b&gt;&lt;p&gt;Go to next syntax error of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Jít na Syntax error&lt;/b&gt;&lt;p&gt;Přesun na syntaktickou chybu v aktuálním editoru.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4105"/>
+        <source>Clear Syntax Errors</source>
+        <translation>Vyčistit Syntaktické chyby</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4100"/>
+        <source>Clear &amp;Syntax Errors</source>
+        <translation>V&amp;yčistit Syntaktické chyby</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4107"/>
-        <source>Clear Syntax Errors</source>
-        <translation>Vyčistit Syntaktické chyby</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4102"/>
-        <source>Clear &amp;Syntax Errors</source>
-        <translation>V&amp;yčistit Syntaktické chyby</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4109"/>
         <source>&lt;b&gt;Clear Syntax Errors&lt;/b&gt;&lt;p&gt;Clear syntax errors of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vyčistit syntaktické chyby&lt;/b&gt;&lt;p&gt;Smažou se záznamy o syntaktických chybách ve všech editorech.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4175"/>
+        <source>Next uncovered line</source>
+        <translation>Následují problémová řádka</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4169"/>
+        <source>&amp;Next uncovered line</source>
+        <translation>Nás&amp;ledující problémová řádka</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4177"/>
-        <source>Next uncovered line</source>
-        <translation>Následují problémová řádka</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4171"/>
-        <source>&amp;Next uncovered line</source>
-        <translation>Nás&amp;ledující problémová řádka</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4179"/>
         <source>&lt;b&gt;Next uncovered line&lt;/b&gt;&lt;p&gt;Go to next line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Následující problémová řádka&lt;/b&gt;&lt;p&gt;Jít na řádku v aktuálním editoru, která byla nalezena jako problémová.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4194"/>
+        <source>Previous uncovered line</source>
+        <translation>Předchozí problémová řádka</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4186"/>
+        <source>&amp;Previous uncovered line</source>
+        <translation>Př&amp;edchozí problémová řádka</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4196"/>
-        <source>Previous uncovered line</source>
-        <translation>Předchozí problémová řádka</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4188"/>
-        <source>&amp;Previous uncovered line</source>
-        <translation>Př&amp;edchozí problémová řádka</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4198"/>
         <source>&lt;b&gt;Previous uncovered line&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Předchozí problémová řádka&lt;/b&gt;&lt;p&gt;Jít na předchozí řádku v aktuálním editoru, která byla nalezena jako problémová.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4212"/>
+        <source>Next Task</source>
+        <translation>Následující úloha</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4206"/>
+        <source>&amp;Next Task</source>
+        <translation>Následující úlo&amp;ha</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4214"/>
-        <source>Next Task</source>
-        <translation>Následující úloha</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4208"/>
-        <source>&amp;Next Task</source>
-        <translation>Následující úlo&amp;ha</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4216"/>
         <source>&lt;b&gt;Next Task&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a task.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Následující úloha&lt;/b&gt;&lt;p&gt;Jít na řádek v aktuálním editoru, na kterém je následující úloha.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4229"/>
+        <source>Previous Task</source>
+        <translation>Předchozí úloha</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4222"/>
+        <source>&amp;Previous Task</source>
+        <translation>Předchozí úl&amp;oha</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4231"/>
-        <source>Previous Task</source>
-        <translation>Předchozí úloha</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4224"/>
-        <source>&amp;Previous Task</source>
-        <translation>Předchozí úl&amp;oha</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4233"/>
         <source>&lt;b&gt;Previous Task&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a task.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Předchozí úloha&lt;/b&gt;&lt;p&gt;Jít na řádek, na kterém se nachází předchozí úloha.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4287"/>
+        <location filename="../ViewManager/ViewManager.py" line="4285"/>
         <source>&amp;Bookmarks</source>
         <translation>&amp;Záložky</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4333"/>
+        <location filename="../ViewManager/ViewManager.py" line="4331"/>
         <source>Bookmarks</source>
         <translation>Záložky</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4485"/>
+        <location filename="../ViewManager/ViewManager.py" line="4483"/>
         <source>Open files</source>
         <translation>Otevřené soubory</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4529"/>
+        <location filename="../ViewManager/ViewManager.py" line="4527"/>
         <source>File Modified</source>
         <translation>Soubor změněn</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5373"/>
+        <location filename="../ViewManager/ViewManager.py" line="5371"/>
         <source>&amp;Clear</source>
         <translation>&amp;Vyčistit</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5367"/>
+        <location filename="../ViewManager/ViewManager.py" line="5365"/>
         <source>&amp;Add</source>
         <translation>Přid&amp;at</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5370"/>
+        <location filename="../ViewManager/ViewManager.py" line="5368"/>
         <source>&amp;Edit...</source>
         <translation>&amp;Edit...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1249"/>
+        <location filename="../ViewManager/ViewManager.py" line="1248"/>
         <source>&lt;b&gt;Select to brace&lt;/b&gt;&lt;p&gt;Select text of the current editor to the matching brace.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vybrat obsah závorek&lt;/b&gt;&lt;p&gt;Vybere se text, který se nachází mezi závorkami.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1268"/>
+        <location filename="../ViewManager/ViewManager.py" line="1267"/>
         <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Select all text of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vybrat vše&lt;/b&gt;&lt;p&gt;Vybere se všechen text v aktuálním editoru.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1285"/>
+        <location filename="../ViewManager/ViewManager.py" line="1284"/>
         <source>&lt;b&gt;Deselect All&lt;/b&gt;&lt;p&gt;Deselect all text of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Zrušit výběr&lt;/b&gt;&lt;p&gt;Zruší výběr textu v aktuálním editoru.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="914"/>
+        <location filename="../ViewManager/ViewManager.py" line="913"/>
         <source>Export as</source>
         <translation>Exportovat jako</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3435"/>
+        <location filename="../ViewManager/ViewManager.py" line="3433"/>
         <source>Quicksearch Textedit</source>
         <translation>Rychlé hledání texteditoru</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2938"/>
+        <location filename="../ViewManager/ViewManager.py" line="2936"/>
         <source>Clear search markers</source>
         <translation>Vyčistit značky hledání</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2938"/>
+        <location filename="../ViewManager/ViewManager.py" line="2936"/>
         <source>Ctrl+3</source>
         <comment>Search|Clear search markers</comment>
         <translation></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="2944"/>
+        <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="2946"/>
-        <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="2948"/>
         <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="2904"/>
+        <source>Search next occurrence of text</source>
+        <translation>Hledat další výskyt textu</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="2906"/>
-        <source>Search next occurrence of text</source>
-        <translation>Hledat další výskyt textu</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2908"/>
         <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="2924"/>
+        <source>Search previous occurrence of text</source>
+        <translation>Hledat předchozí výskyt textu</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="2926"/>
-        <source>Search previous occurrence of text</source>
-        <translation>Hledat předchozí výskyt textu</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2928"/>
         <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="3100"/>
+        <location filename="../ViewManager/ViewManager.py" line="3098"/>
         <source>&lt;b&gt;Quicksearch&lt;/b&gt;&lt;p&gt;This activates the quicksearch function of the IDE by giving focus to the quicksearch entry field. If this field is already active and contains text, it searches for the next occurrence of this text.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rychlé hledání&lt;/b&gt;&lt;p&gt;Aktivuje se funkce rychlého hledání. Kurzor se přemístí do okna zadání hledaného výrazu. Je-li toto okno aktivní a obsahuje-li text, vyhledává v textu výskyt tohoto výrazu.&lt;p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3124"/>
+        <location filename="../ViewManager/ViewManager.py" line="3122"/>
         <source>&lt;b&gt;Quicksearch backwards&lt;/b&gt;&lt;p&gt;This searches the previous occurrence of the quicksearch text.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rychlé hledání zpět&lt;/b&gt;&lt;p&gt;Vyhledává se předchozí výskyt výrazu v rychlém hledání.&lt;p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3408"/>
+        <location filename="../ViewManager/ViewManager.py" line="3406"/>
         <source>&lt;p&gt;Enter the searchtext directly into this field. The search will be performed case insensitive. The quicksearch function is activated upon activation of the quicksearch next action (default key Ctrl+Shift+K), if this entry field does not have the input focus. Otherwise it searches for the next occurrence of the text entered. The quicksearch backwards action (default key Ctrl+Shift+J) searches backward. Activating the &apos;quicksearch extend&apos; action (default key Ctrl+Shift+H) extends the current searchtext to the end of the currently found word. The quicksearch can be ended by pressing the Return key while the quicksearch entry has the the input focus.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Pište hledaný text přímo do okna Rychlého hledání. Při zadávání se neberou na zřetel velké/malé znaky. Pokud okno nemá fokus, aktivujte jej příkazem Rychlé hledání (defaultně Ctrl+Shift+K). Jinak se pokračuje v hledání dalšího výskytu zadaného textu. Rychlé hledání nazpět (defaultně Ctr+Shift+J) prohledává text směrem k začátku dokumentu. Rozšířené rychlé hledání (defaultně Ctrl+Shift+H) rozšíří hledaný text na celé slovo, na kterém je kurzor. Rychlé hledání je ukončeno stiskem klávesy Enter za předpokladu, že fokus se nachází v okně Rychlého hledání.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1414"/>
+        <location filename="../ViewManager/ViewManager.py" line="1413"/>
         <source>Calltip</source>
         <translation>Rychlé tipy</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1414"/>
+        <location filename="../ViewManager/ViewManager.py" line="1413"/>
         <source>&amp;Calltip</source>
         <translation>&amp;Rychlé tipy</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1421"/>
+        <location filename="../ViewManager/ViewManager.py" line="1420"/>
         <source>Show Calltips</source>
         <translation>Zobrazit Rychlé tipy</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1423"/>
+        <location filename="../ViewManager/ViewManager.py" line="1422"/>
         <source>&lt;b&gt;Calltip&lt;/b&gt;&lt;p&gt;Show calltips based on the characters immediately to the left of the cursor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rychlé tipy&lt;/b&gt;&lt;p&gt;Zobrazit Rychlé typy založené na znacích hned vlevo vedle kurzoru.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="799"/>
+        <location filename="../ViewManager/ViewManager.py" line="798"/>
         <source>Print Preview</source>
         <translation>Náhled tisku</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="804"/>
+        <location filename="../ViewManager/ViewManager.py" line="803"/>
         <source>Print preview of the current file</source>
         <translation>Náhled tisku aktuálního souboru</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="806"/>
+        <location filename="../ViewManager/ViewManager.py" line="805"/>
         <source>&lt;b&gt;Print Preview&lt;/b&gt;&lt;p&gt;Print preview of the current editor window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Náhled tisku&lt;/b&gt;&lt;p&gt;Náhled tisku aktuálního editačního okna.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2103"/>
+        <location filename="../ViewManager/ViewManager.py" line="2102"/>
         <source>Insert new line below current line</source>
         <translation>Vložit nový řádek pod aktuální</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2103"/>
+        <location filename="../ViewManager/ViewManager.py" line="2102"/>
         <source>Shift+Return</source>
         <translation>Shift+Return</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2103"/>
+        <location filename="../ViewManager/ViewManager.py" line="2102"/>
         <source>Shift+Enter</source>
         <translation>Shift+Enter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3281"/>
+        <location filename="../ViewManager/ViewManager.py" line="3279"/>
         <source>Replace in Files</source>
         <translation>Nahradit v souborech</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3281"/>
+        <location filename="../ViewManager/ViewManager.py" line="3279"/>
         <source>Replace in F&amp;iles...</source>
         <translation>Nahrad&amp;it v souborech...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3281"/>
+        <location filename="../ViewManager/ViewManager.py" line="3279"/>
         <source>Shift+Ctrl+R</source>
         <comment>Search|Replace in Files</comment>
         <translation></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3286"/>
+        <source>Search for a text in files and replace it</source>
+        <translation>Hledat text v souborech a nahradit jej</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3288"/>
-        <source>Search for a text in files and replace it</source>
-        <translation>Hledat text v souborech a nahradit jej</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3290"/>
         <source>&lt;b&gt;Replace in Files&lt;/b&gt;&lt;p&gt;Search for some text in the files of a directory tree or the project and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and to display the result.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nahradit v souborech&lt;/b&gt;&lt;p&gt;Hledání zadaného textu v souborech v adresářovém stromu projektu a jeho nahrazení. Je zobrazeno dialogové okno pro zadání hledaného textu, textu nahrazujícího a volby pro hledání a zobrazní výsledku.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4366"/>
+        <location filename="../ViewManager/ViewManager.py" line="4364"/>
         <source>Shift+F7</source>
         <comment>Spelling|Spell Check</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4375"/>
+        <location filename="../ViewManager/ViewManager.py" line="4373"/>
         <source>Perform spell check of current editor</source>
         <translation>Spustit kontrolu pravopisu v aktuálním editoru</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4385"/>
+        <location filename="../ViewManager/ViewManager.py" line="4383"/>
         <source>Automatic spell checking</source>
         <translation>Automatická kontrola pravopisu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4385"/>
+        <location filename="../ViewManager/ViewManager.py" line="4383"/>
         <source>&amp;Automatic spell checking</source>
         <translation>&amp;Automatická kontrola pravopisu</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4391"/>
+        <source>(De-)Activate automatic spell checking</source>
+        <translation>(De-)aktivovat akutomatickou kontrolu</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4393"/>
-        <source>(De-)Activate automatic spell checking</source>
-        <translation>(De-)aktivovat akutomatickou kontrolu</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4395"/>
         <source>&lt;b&gt;Automatic spell checking&lt;/b&gt;&lt;p&gt;Activate or deactivate the automatic spell checking function of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Automatická kontrola pravopisu&lt;/b&gt;&lt;p&gt;Zapnout neobo vypnout automatickou kontrolu pravopisu ve všech editorech.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4462"/>
+        <location filename="../ViewManager/ViewManager.py" line="4460"/>
         <source>Spelling</source>
         <translation>Pravopis</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4529"/>
+        <location filename="../ViewManager/ViewManager.py" line="4527"/>
         <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="../ViewManager/ViewManager.py" line="4928"/>
+        <location filename="../ViewManager/ViewManager.py" line="4926"/>
         <source>Line: {0:5}</source>
         <translation>Řádek: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4934"/>
+        <location filename="../ViewManager/ViewManager.py" line="4932"/>
         <source>Pos: {0:5}</source>
         <translation>Poz: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4124"/>
+        <location filename="../ViewManager/ViewManager.py" line="4122"/>
         <source>Next warning message</source>
         <translation>Další varování</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4118"/>
+        <location filename="../ViewManager/ViewManager.py" line="4116"/>
         <source>&amp;Next warning message</source>
         <translation>Další varová&amp;ní</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4143"/>
+        <location filename="../ViewManager/ViewManager.py" line="4141"/>
         <source>Previous warning message</source>
         <translation>Předchozí varování</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4135"/>
+        <location filename="../ViewManager/ViewManager.py" line="4133"/>
         <source>&amp;Previous warning message</source>
         <translation>&amp;Předchozí varování</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4161"/>
+        <location filename="../ViewManager/ViewManager.py" line="4159"/>
         <source>Clear Warning Messages</source>
         <translation>Vyčistit varovná hlášení</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4154"/>
+        <location filename="../ViewManager/ViewManager.py" line="4152"/>
         <source>Clear &amp;Warning Messages</source>
         <translation>&amp;Vyčistit varovná hlášení</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1082"/>
+        <location filename="../ViewManager/ViewManager.py" line="1081"/>
         <source>Join Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1075"/>
+        <location filename="../ViewManager/ViewManager.py" line="1074"/>
         <source>Ctrl+J</source>
         <comment>Edit|Join Lines</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1084"/>
+        <location filename="../ViewManager/ViewManager.py" line="1083"/>
         <source>&lt;b&gt;Join Lines&lt;/b&gt;&lt;p&gt;Join the current and the next lines.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3202"/>
+        <location filename="../ViewManager/ViewManager.py" line="3200"/>
         <source>Goto Last Edit Location</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3191"/>
+        <location filename="../ViewManager/ViewManager.py" line="3189"/>
         <source>Goto Last &amp;Edit Location</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3191"/>
+        <location filename="../ViewManager/ViewManager.py" line="3189"/>
         <source>Ctrl+Shift+G</source>
         <comment>Search|Goto Last Edit Location</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3205"/>
+        <location filename="../ViewManager/ViewManager.py" line="3203"/>
         <source>&lt;b&gt;Goto Last Edit Location&lt;/b&gt;&lt;p&gt;Go to the location of the last edit in the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3214"/>
+        <location filename="../ViewManager/ViewManager.py" line="3212"/>
         <source>Goto Previous Method or Class</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3214"/>
+        <location filename="../ViewManager/ViewManager.py" line="3212"/>
         <source>Ctrl+Shift+Up</source>
         <comment>Search|Goto Previous Method or Class</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3224"/>
+        <location filename="../ViewManager/ViewManager.py" line="3222"/>
         <source>Go to the previous method or class definition</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3228"/>
+        <location filename="../ViewManager/ViewManager.py" line="3226"/>
         <source>&lt;b&gt;Goto Previous Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the previous method or class definition and highlights the name.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3238"/>
+        <location filename="../ViewManager/ViewManager.py" line="3236"/>
         <source>Goto Next Method or Class</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3238"/>
+        <location filename="../ViewManager/ViewManager.py" line="3236"/>
         <source>Ctrl+Shift+Down</source>
         <comment>Search|Goto Next Method or Class</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3246"/>
+        <source>Go to the next method or class definition</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3248"/>
-        <source>Go to the next method or class definition</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3250"/>
         <source>&lt;b&gt;Goto Next Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the next method or class definition and highlights the name.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3759"/>
+        <location filename="../ViewManager/ViewManager.py" line="3757"/>
         <source>Preview</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3762"/>
+        <source>Preview the current file in the web browser</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3764"/>
-        <source>Preview the current file in the web browser</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3766"/>
         <source>&lt;b&gt;Preview&lt;/b&gt;&lt;p&gt;This opens the web browser with a preview of the current file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1490"/>
+        <location filename="../ViewManager/ViewManager.py" line="1489"/>
         <source>Meta+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1503"/>
+        <location filename="../ViewManager/ViewManager.py" line="1502"/>
         <source>Meta+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1515"/>
+        <location filename="../ViewManager/ViewManager.py" line="1514"/>
         <source>Meta+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1527"/>
+        <location filename="../ViewManager/ViewManager.py" line="1526"/>
         <source>Meta+N</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1588"/>
+        <location filename="../ViewManager/ViewManager.py" line="1587"/>
         <source>Move to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1604"/>
+        <location filename="../ViewManager/ViewManager.py" line="1603"/>
         <source>Move to start of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1621"/>
+        <location filename="../ViewManager/ViewManager.py" line="1620"/>
         <source>Move to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1629"/>
+        <location filename="../ViewManager/ViewManager.py" line="1628"/>
         <source>Meta+E</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1697"/>
+        <location filename="../ViewManager/ViewManager.py" line="1696"/>
         <source>Meta+V</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1703"/>
+        <location filename="../ViewManager/ViewManager.py" line="1702"/>
         <source>Move to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1720"/>
+        <location filename="../ViewManager/ViewManager.py" line="1719"/>
         <source>Move to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1765"/>
+        <location filename="../ViewManager/ViewManager.py" line="1764"/>
         <source>Meta+Shift+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1780"/>
+        <location filename="../ViewManager/ViewManager.py" line="1779"/>
         <source>Meta+Shift+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1795"/>
+        <location filename="../ViewManager/ViewManager.py" line="1794"/>
         <source>Meta+Shift+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1810"/>
+        <location filename="../ViewManager/ViewManager.py" line="1809"/>
         <source>Meta+Shift+N</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1878"/>
+        <location filename="../ViewManager/ViewManager.py" line="1877"/>
         <source>Extend selection to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1896"/>
+        <location filename="../ViewManager/ViewManager.py" line="1895"/>
         <source>Extend selection to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1904"/>
+        <location filename="../ViewManager/ViewManager.py" line="1903"/>
         <source>Meta+Shift+E</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1961"/>
+        <location filename="../ViewManager/ViewManager.py" line="1960"/>
         <source>Meta+Shift+V</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1967"/>
+        <location filename="../ViewManager/ViewManager.py" line="1966"/>
         <source>Extend selection to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1975"/>
+        <location filename="../ViewManager/ViewManager.py" line="1974"/>
         <source>Ctrl+Shift+Up</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1984"/>
+        <location filename="../ViewManager/ViewManager.py" line="1983"/>
         <source>Extend selection to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1992"/>
+        <location filename="../ViewManager/ViewManager.py" line="1991"/>
         <source>Ctrl+Shift+Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2010"/>
+        <location filename="../ViewManager/ViewManager.py" line="2009"/>
         <source>Meta+H</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2019"/>
+        <location filename="../ViewManager/ViewManager.py" line="2018"/>
         <source>Delete previous character if not at start of line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2040"/>
+        <location filename="../ViewManager/ViewManager.py" line="2039"/>
         <source>Meta+D</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2084"/>
+        <location filename="../ViewManager/ViewManager.py" line="2083"/>
         <source>Meta+K</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2194"/>
+        <location filename="../ViewManager/ViewManager.py" line="2192"/>
         <source>Move to end of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2211"/>
+        <location filename="../ViewManager/ViewManager.py" line="2209"/>
         <source>Extend selection to end of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2253"/>
+        <location filename="../ViewManager/ViewManager.py" line="2251"/>
         <source>Meta+Alt+Shift+N</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2268"/>
+        <location filename="../ViewManager/ViewManager.py" line="2266"/>
         <source>Meta+Alt+Shift+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2286"/>
+        <location filename="../ViewManager/ViewManager.py" line="2284"/>
         <source>Meta+Alt+Shift+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2304"/>
+        <location filename="../ViewManager/ViewManager.py" line="2302"/>
         <source>Meta+Alt+Shift+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2310"/>
+        <location filename="../ViewManager/ViewManager.py" line="2308"/>
         <source>Extend rectangular selection to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2329"/>
+        <location filename="../ViewManager/ViewManager.py" line="2327"/>
         <source>Extend rectangular selection to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2339"/>
+        <location filename="../ViewManager/ViewManager.py" line="2337"/>
         <source>Meta+Alt+Shift+E</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2342"/>
+        <location filename="../ViewManager/ViewManager.py" line="2340"/>
         <source>Alt+Shift+End</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2363"/>
+        <location filename="../ViewManager/ViewManager.py" line="2361"/>
         <source>Alt+Shift+PgDown</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2375"/>
+        <location filename="../ViewManager/ViewManager.py" line="2373"/>
         <source>Meta+Alt+Shift+V</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2395"/>
+        <location filename="../ViewManager/ViewManager.py" line="2393"/>
         <source>Scroll to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2410"/>
+        <location filename="../ViewManager/ViewManager.py" line="2408"/>
         <source>Scroll to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2425"/>
+        <location filename="../ViewManager/ViewManager.py" line="2423"/>
         <source>Scroll vertically to center current line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2433"/>
+        <location filename="../ViewManager/ViewManager.py" line="2431"/>
         <source>Meta+L</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2440"/>
+        <location filename="../ViewManager/ViewManager.py" line="2438"/>
         <source>Move to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2455"/>
+        <location filename="../ViewManager/ViewManager.py" line="2453"/>
         <source>Extend selection to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2471"/>
+        <location filename="../ViewManager/ViewManager.py" line="2469"/>
         <source>Move to end of previous word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2483"/>
+        <location filename="../ViewManager/ViewManager.py" line="2481"/>
         <source>Extend selection to end of previous word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2495"/>
+        <location filename="../ViewManager/ViewManager.py" line="2493"/>
         <source>Move to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2503"/>
+        <location filename="../ViewManager/ViewManager.py" line="2501"/>
         <source>Meta+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2510"/>
+        <location filename="../ViewManager/ViewManager.py" line="2508"/>
         <source>Extend selection to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2521"/>
+        <location filename="../ViewManager/ViewManager.py" line="2519"/>
         <source>Meta+Shift+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2528"/>
+        <location filename="../ViewManager/ViewManager.py" line="2526"/>
         <source>Extend rectangular selection to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2538"/>
+        <location filename="../ViewManager/ViewManager.py" line="2536"/>
         <source>Meta+Alt+Shift+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2546"/>
+        <location filename="../ViewManager/ViewManager.py" line="2544"/>
         <source>Extend selection to start of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2565"/>
+        <location filename="../ViewManager/ViewManager.py" line="2563"/>
         <source>Move to start of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2579"/>
+        <location filename="../ViewManager/ViewManager.py" line="2577"/>
         <source>Extend selection to start of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2594"/>
+        <location filename="../ViewManager/ViewManager.py" line="2592"/>
         <source>Move to first visible character in display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2611"/>
+        <location filename="../ViewManager/ViewManager.py" line="2609"/>
         <source>Extend selection to first visible character in display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2628"/>
+        <location filename="../ViewManager/ViewManager.py" line="2626"/>
         <source>Move to end of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2642"/>
+        <location filename="../ViewManager/ViewManager.py" line="2640"/>
         <source>Extend selection to end of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2657"/>
+        <location filename="../ViewManager/ViewManager.py" line="2655"/>
         <source>Stuttered move up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2669"/>
+        <location filename="../ViewManager/ViewManager.py" line="2667"/>
         <source>Stuttered extend selection up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2682"/>
+        <location filename="../ViewManager/ViewManager.py" line="2680"/>
         <source>Stuttered move down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2694"/>
+        <location filename="../ViewManager/ViewManager.py" line="2692"/>
         <source>Stuttered extend selection down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2707"/>
+        <location filename="../ViewManager/ViewManager.py" line="2705"/>
         <source>Delete right to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2715"/>
+        <location filename="../ViewManager/ViewManager.py" line="2713"/>
         <source>Alt+Del</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2722"/>
+        <location filename="../ViewManager/ViewManager.py" line="2720"/>
         <source>Move selected lines up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2734"/>
+        <location filename="../ViewManager/ViewManager.py" line="2732"/>
         <source>Move selected lines down one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2348"/>
+        <location filename="../ViewManager/ViewManager.py" line="2346"/>
         <source>Alt+Shift+PgUp</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1185"/>
+        <location filename="../ViewManager/ViewManager.py" line="1184"/>
         <source>Toggle Comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1185"/>
+        <location filename="../ViewManager/ViewManager.py" line="1184"/>
         <source>Ctrl+Shift+M</source>
         <comment>Edit|Toggle Comment</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1193"/>
+        <location filename="../ViewManager/ViewManager.py" line="1192"/>
         <source>Toggle the comment of the current line, selection or comment block</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1197"/>
+        <location filename="../ViewManager/ViewManager.py" line="1196"/>
         <source>&lt;b&gt;Toggle Comment&lt;/b&gt;&lt;p&gt;If the current line does not start with a block comment, the current line or selection is commented. If it is already commented, this comment block is uncommented. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3525"/>
         <source>Zoom reset</source>
         <translation type="unfinished">Resetovat lupu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3525"/>
         <source>Zoom &amp;reset</source>
         <translation type="unfinished">&amp;Resetovat lupu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3525"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3533"/>
+        <source>Reset the zoom of the text</source>
+        <translation type="unfinished">Resetovat lupu textu</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3535"/>
-        <source>Reset the zoom of the text</source>
-        <translation type="unfinished">Resetovat lupu textu</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3537"/>
         <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="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3487"/>
         <source>Zoom In</source>
         <comment>View|Zoom in</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3508"/>
+        <location filename="../ViewManager/ViewManager.py" line="3506"/>
         <source>Zoom Out</source>
         <comment>View|Zoom out</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="764"/>
+        <location filename="../ViewManager/ViewManager.py" line="763"/>
         <source>Save a&amp;ll</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4246"/>
+        <source>Next Change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4240"/>
+        <source>&amp;Next Change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4248"/>
-        <source>Next Change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4242"/>
-        <source>&amp;Next Change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4250"/>
         <source>&lt;b&gt;Next Change&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4264"/>
+        <source>Previous Change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4257"/>
+        <source>&amp;Previous Change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4266"/>
-        <source>Previous Change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4259"/>
-        <source>&amp;Previous Change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4268"/>
         <source>&lt;b&gt;Previous Change&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4366"/>
+        <location filename="../ViewManager/ViewManager.py" line="4364"/>
         <source>Check spelling</source>
         <translation type="unfinished">Kontrola pravopisu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4366"/>
+        <location filename="../ViewManager/ViewManager.py" line="4364"/>
         <source>Check &amp;spelling...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4377"/>
+        <location filename="../ViewManager/ViewManager.py" line="4375"/>
         <source>&lt;b&gt;Check spelling&lt;/b&gt;&lt;p&gt;Perform a spell check of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4424"/>
+        <source>Edit Dictionary</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4426"/>
-        <source>Edit Dictionary</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4428"/>
         <source>Project Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4431"/>
+        <location filename="../ViewManager/ViewManager.py" line="4429"/>
         <source>Project Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4436"/>
+        <location filename="../ViewManager/ViewManager.py" line="4434"/>
         <source>User Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4439"/>
+        <location filename="../ViewManager/ViewManager.py" line="4437"/>
         <source>User Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6639"/>
+        <location filename="../ViewManager/ViewManager.py" line="6637"/>
         <source>Edit Spelling Dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6614"/>
+        <location filename="../ViewManager/ViewManager.py" line="6612"/>
         <source>Editing {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6596"/>
+        <location filename="../ViewManager/ViewManager.py" line="6594"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6626"/>
+        <location filename="../ViewManager/ViewManager.py" line="6624"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6639"/>
+        <location filename="../ViewManager/ViewManager.py" line="6637"/>
         <source>The spelling dictionary was saved successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2957"/>
+        <location filename="../ViewManager/ViewManager.py" line="2955"/>
         <source>Search current word forward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2957"/>
+        <location filename="../ViewManager/ViewManager.py" line="2955"/>
         <source>Ctrl+.</source>
         <comment>Search|Search current word forward</comment>
         <translation type="unfinished">Ctrl+.</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2968"/>
+        <location filename="../ViewManager/ViewManager.py" line="2966"/>
         <source>Search next occurrence of the current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2971"/>
+        <location filename="../ViewManager/ViewManager.py" line="2969"/>
         <source>&lt;b&gt;Search current word forward&lt;/b&gt;&lt;p&gt;Search the next occurrence of the current word of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2980"/>
+        <location filename="../ViewManager/ViewManager.py" line="2978"/>
         <source>Search current word backward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2980"/>
+        <location filename="../ViewManager/ViewManager.py" line="2978"/>
         <source>Ctrl+,</source>
         <comment>Search|Search current word backward</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2991"/>
+        <location filename="../ViewManager/ViewManager.py" line="2989"/>
         <source>Search previous occurrence of the current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2994"/>
+        <location filename="../ViewManager/ViewManager.py" line="2992"/>
         <source>&lt;b&gt;Search current word backward&lt;/b&gt;&lt;p&gt;Search the previous occurrence of the current word of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3301"/>
+        <location filename="../ViewManager/ViewManager.py" line="3299"/>
         <source>Search in Open Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3301"/>
+        <location filename="../ViewManager/ViewManager.py" line="3299"/>
         <source>Search in Open Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3301"/>
+        <location filename="../ViewManager/ViewManager.py" line="3299"/>
         <source>Meta+Ctrl+Alt+F</source>
         <comment>Search|Search Open Files</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3310"/>
+        <source>Search for a text in open files</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3312"/>
-        <source>Search for a text in open files</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3314"/>
         <source>&lt;b&gt;Search in Open Files&lt;/b&gt;&lt;p&gt;Search for some text in the currently opened files. A dialog is shown to enter the searchtext and options for the search and to display the result.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3324"/>
+        <location filename="../ViewManager/ViewManager.py" line="3322"/>
         <source>Replace in Open Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3324"/>
+        <location filename="../ViewManager/ViewManager.py" line="3322"/>
         <source>Meta+Ctrl+Alt+R</source>
         <comment>Search|Replace in Open Files</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3332"/>
+        <source>Search for a text in open files and replace it</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3334"/>
-        <source>Search for a text in open files and replace it</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3336"/>
         <source>&lt;b&gt;Replace in Open Files&lt;/b&gt;&lt;p&gt;Search for some text in the currently opened files and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and to display the result.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3324"/>
+        <location filename="../ViewManager/ViewManager.py" line="3322"/>
         <source>Replace in Open Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1450"/>
+        <location filename="../ViewManager/ViewManager.py" line="1449"/>
         <source>Sort</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1450"/>
+        <location filename="../ViewManager/ViewManager.py" line="1449"/>
         <source>Ctrl+Alt+S</source>
         <comment>Edit|Sort</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1457"/>
+        <location filename="../ViewManager/ViewManager.py" line="1456"/>
         <source>Sort the lines containing the rectangular selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1460"/>
+        <location filename="../ViewManager/ViewManager.py" line="1459"/>
         <source>&lt;b&gt;Sort&lt;/b&gt;&lt;p&gt;Sort the lines spanned by a rectangular selection based on the selection ignoring leading and trailing whitespace.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4955"/>
+        <location filename="../ViewManager/ViewManager.py" line="4953"/>
         <source>Language: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4962"/>
+        <location filename="../ViewManager/ViewManager.py" line="4960"/>
         <source>EOL Mode: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3643"/>
+        <location filename="../ViewManager/ViewManager.py" line="3641"/>
         <source>New Document View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3643"/>
+        <location filename="../ViewManager/ViewManager.py" line="3641"/>
         <source>New &amp;Document View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3646"/>
+        <source>Open a new view of the current document</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3648"/>
-        <source>Open a new view of the current document</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3650"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3660"/>
+        <location filename="../ViewManager/ViewManager.py" line="3658"/>
         <source>New Document View (with new split)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3667"/>
+        <location filename="../ViewManager/ViewManager.py" line="3665"/>
         <source>Open a new view of the current document in a new split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3670"/>
+        <location filename="../ViewManager/ViewManager.py" line="3668"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document in a new split. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4126"/>
+        <location filename="../ViewManager/ViewManager.py" line="4124"/>
         <source>&lt;b&gt;Next warning message&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4145"/>
+        <location filename="../ViewManager/ViewManager.py" line="4143"/>
         <source>&lt;b&gt;Previous warning message&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4163"/>
+        <location filename="../ViewManager/ViewManager.py" line="4161"/>
         <source>&lt;b&gt;Clear Warning Messages&lt;/b&gt;&lt;p&gt;Clear pyflakes warning messages of all editors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1327"/>
+        <location filename="../ViewManager/ViewManager.py" line="1326"/>
         <source>Ctrl+Space</source>
         <comment>Edit|Complete</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1345"/>
+        <location filename="../ViewManager/ViewManager.py" line="1344"/>
         <source>Ctrl+Shift+Space</source>
         <comment>Edit|Complete from Document</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1368"/>
+        <location filename="../ViewManager/ViewManager.py" line="1367"/>
         <source>Ctrl+Alt+Space</source>
         <comment>Edit|Complete from APIs</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1391"/>
+        <location filename="../ViewManager/ViewManager.py" line="1390"/>
         <source>Alt+Shift+Space</source>
         <comment>Edit|Complete from Document and APIs</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1414"/>
+        <location filename="../ViewManager/ViewManager.py" line="1413"/>
         <source>Meta+Alt+Space</source>
         <comment>Edit|Calltip</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="748"/>
+        <location filename="../ViewManager/ViewManager.py" line="747"/>
         <source>Save Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="748"/>
+        <location filename="../ViewManager/ViewManager.py" line="747"/>
         <source>Save &amp;Copy...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="753"/>
+        <location filename="../ViewManager/ViewManager.py" line="752"/>
         <source>Save a copy of the current file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="755"/>
+        <location filename="../ViewManager/ViewManager.py" line="754"/>
         <source>&lt;b&gt;Save Copy&lt;/b&gt;&lt;p&gt;Save a copy of the contents of current editor window. The file can be entered in a file selection dialog.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -84978,141 +84983,141 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3022"/>
+        <location filename="../ViewManager/ViewManager.py" line="3020"/>
         <source>Replace and Search</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3022"/>
+        <location filename="../ViewManager/ViewManager.py" line="3020"/>
         <source>Meta+R</source>
         <comment>Search|Replace and Search</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3032"/>
+        <location filename="../ViewManager/ViewManager.py" line="3030"/>
         <source>Replace the found text and search the next occurrence</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3035"/>
+        <location filename="../ViewManager/ViewManager.py" line="3033"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3046"/>
+        <location filename="../ViewManager/ViewManager.py" line="3044"/>
         <source>Replace Occurrence</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3046"/>
+        <location filename="../ViewManager/ViewManager.py" line="3044"/>
         <source>Ctrl+Meta+R</source>
         <comment>Search|Replace Occurrence</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3054"/>
+        <source>Replace the found text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3056"/>
-        <source>Replace the found text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3058"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3068"/>
+        <location filename="../ViewManager/ViewManager.py" line="3066"/>
         <source>Replace All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3068"/>
+        <location filename="../ViewManager/ViewManager.py" line="3066"/>
         <source>Shift+Meta+R</source>
         <comment>Search|Replace All</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3076"/>
+        <source>Replace search text occurrences</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3078"/>
-        <source>Replace search text occurrences</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3080"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1432"/>
+        <location filename="../ViewManager/ViewManager.py" line="1431"/>
         <source>Code Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1432"/>
+        <location filename="../ViewManager/ViewManager.py" line="1431"/>
         <source>Ctrl+Alt+I</source>
         <comment>Edit|Code Info</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1440"/>
+        <location filename="../ViewManager/ViewManager.py" line="1439"/>
         <source>Show Code Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1442"/>
+        <location filename="../ViewManager/ViewManager.py" line="1441"/>
         <source>&lt;b&gt;Code Info&lt;/b&gt;&lt;p&gt;Show code information based on the cursor position.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3614"/>
+        <source>Clear all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3610"/>
+        <source>Clear &amp;all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3616"/>
-        <source>Clear all folds</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3612"/>
-        <source>Clear &amp;all folds</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3618"/>
         <source>&lt;b&gt;Clear all folds&lt;/b&gt;&lt;p&gt;Clear all folds of the current editor, i.e. ensure that all lines are displayed unfolded.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2150"/>
+        <location filename="../ViewManager/ViewManager.py" line="2148"/>
         <source>Reverse selected lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2150"/>
+        <location filename="../ViewManager/ViewManager.py" line="2148"/>
         <source>Meta+Alt+R</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3776"/>
+        <location filename="../ViewManager/ViewManager.py" line="3774"/>
         <source>Python AST Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3779"/>
+        <source>Show the AST for the current Python file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3781"/>
-        <source>Show the AST for the current Python file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3783"/>
         <source>&lt;b&gt;Python AST Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the AST of the current Python source file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3793"/>
+        <location filename="../ViewManager/ViewManager.py" line="3791"/>
         <source>Python Disassembly Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3798"/>
+        <source>Show the Disassembly for the current Python file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3800"/>
-        <source>Show the Disassembly for the current Python file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3802"/>
         <source>&lt;b&gt;Python Disassembly Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the Disassembly of the current Python source file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -87990,7 +87995,7 @@
 <context>
     <name>WebBrowserTools</name>
     <message>
-        <location filename="../WebBrowser/Tools/WebBrowserTools.py" line="249"/>
+        <location filename="../WebBrowser/Tools/WebBrowserTools.py" line="251"/>
         <source>&lt;unknown&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -90722,57 +90727,57 @@
     <name>YandexEngine</name>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="38"/>
-        <source>Invalid API key.</source>
+        <source>Yandex: Invalid API key.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="39"/>
-        <source>API key has been blocked.</source>
+        <source>Yandex: API key has been blocked.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="40"/>
-        <source>Daily limit for requests has been reached.</source>
+        <source>Yandex: Daily limit for requests has been reached.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="41"/>
-        <source>Daily limit for the volume of translated text reached.</source>
+        <source>Yandex: Daily limit for the volume of translated text reached.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="43"/>
-        <source>Text size exceeds the maximum.</source>
+        <source>Yandex: Text size exceeds the maximum.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="44"/>
-        <source>Text could not be translated.</source>
+        <source>Yandex: Text could not be translated.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="45"/>
-        <source>The specified translation direction is not supported.</source>
+        <source>Yandex: The specified translation direction is not supported.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="86"/>
-        <source>Only texts up to {0} characters are allowed.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="91"/>
-        <source>A valid Yandex key is required.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="106"/>
-        <source>Invalid response received</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="112"/>
-        <source>Unknown error code ({0}) received.</source>
+        <source>Yandex: Only texts up to {0} characters are allowed.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="109"/>
+        <source>Yandex: Invalid response received</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="115"/>
+        <source>Yandex: Unknown error code ({0}) received.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="94"/>
+        <source>Yandex: A valid key is required.</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -91200,417 +91205,417 @@
 <context>
     <name>pycodestyle</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="24"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="22"/>
         <source>indentation contains mixed spaces and tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="27"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="25"/>
         <source>indentation is not a multiple of four</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="30"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="28"/>
         <source>expected an indented block</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="33"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="31"/>
         <source>unexpected indentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="36"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="34"/>
         <source>indentation is not a multiple of four (comment)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="39"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="37"/>
         <source>expected an indented block (comment)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="42"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="40"/>
         <source>unexpected indentation (comment)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="48"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="46"/>
         <source>continuation line indentation is not a multiple of four</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="51"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="49"/>
         <source>continuation line missing indentation or outdented</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="54"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="52"/>
         <source>closing bracket does not match indentation of opening bracket&apos;s line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="58"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="56"/>
         <source>closing bracket does not match visual indentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="61"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="59"/>
         <source>continuation line with same indent as next logical line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="64"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="62"/>
         <source>continuation line over-indented for hanging indent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="67"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="65"/>
         <source>continuation line over-indented for visual indent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="70"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="68"/>
         <source>continuation line under-indented for visual indent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="73"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="71"/>
         <source>visually indented line with same indent as next logical line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="76"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="74"/>
         <source>continuation line unaligned for hanging indent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="79"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="77"/>
         <source>closing bracket is missing indentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="82"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="80"/>
         <source>indentation contains tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="85"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="83"/>
         <source>whitespace after &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="94"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="92"/>
         <source>whitespace before &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="97"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="95"/>
         <source>multiple spaces before operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="100"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="98"/>
         <source>multiple spaces after operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="103"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="101"/>
         <source>tab before operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="106"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="104"/>
         <source>tab after operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="109"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="107"/>
         <source>missing whitespace around operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="112"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="110"/>
         <source>missing whitespace around arithmetic operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="115"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="113"/>
         <source>missing whitespace around bitwise or shift operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="118"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="116"/>
         <source>missing whitespace around modulo operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="121"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="119"/>
         <source>missing whitespace after &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="124"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="122"/>
         <source>multiple spaces after &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="127"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="125"/>
         <source>tab after &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="130"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="128"/>
         <source>unexpected spaces around keyword / parameter equals</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="136"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="134"/>
         <source>at least two spaces before inline comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="139"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="137"/>
         <source>inline comment should start with &apos;# &apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="142"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="140"/>
         <source>block comment should start with &apos;# &apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="145"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="143"/>
         <source>too many leading &apos;#&apos; for block comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="148"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="146"/>
         <source>multiple spaces after keyword</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="151"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="149"/>
         <source>multiple spaces before keyword</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="154"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="152"/>
         <source>tab after keyword</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="157"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="155"/>
         <source>tab before keyword</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="160"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="158"/>
         <source>missing whitespace after keyword</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="163"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="161"/>
         <source>trailing whitespace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="166"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="164"/>
         <source>no newline at end of file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="169"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="167"/>
         <source>blank line contains whitespace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="194"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="192"/>
         <source>too many blank lines ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="181"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="179"/>
         <source>blank lines found after function decorator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="197"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="195"/>
         <source>blank line at end of file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="200"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="198"/>
         <source>multiple imports on one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="203"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="201"/>
         <source>module level import not at top of file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="206"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="204"/>
         <source>line too long ({0} &gt; {1} characters)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="209"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="207"/>
         <source>the backslash is redundant between brackets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="212"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="210"/>
         <source>line break before binary operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="221"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="219"/>
         <source>.has_key() is deprecated, use &apos;in&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="224"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="222"/>
         <source>deprecated form of raising exception</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="227"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="225"/>
         <source>&apos;&lt;&gt;&apos; is deprecated, use &apos;!=&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="230"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="228"/>
         <source>backticks are deprecated, use &apos;repr()&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="239"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="237"/>
         <source>multiple statements on one line (colon)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="242"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="240"/>
         <source>multiple statements on one line (semicolon)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="245"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="243"/>
         <source>statement ends with a semicolon</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="248"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="246"/>
         <source>multiple statements on one line (def)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="254"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="252"/>
         <source>comparison to {0} should be {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="257"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="255"/>
         <source>test for membership should be &apos;not in&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="260"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="258"/>
         <source>test for object identity should be &apos;is not&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="263"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="261"/>
         <source>do not compare types, use &apos;isinstance()&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="269"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="267"/>
         <source>do not assign a lambda expression, use a def</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="272"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="270"/>
         <source>ambiguous variable name &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="275"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="273"/>
         <source>ambiguous class definition &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="278"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="276"/>
         <source>ambiguous function definition &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="281"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="279"/>
         <source>{0}: {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="284"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="282"/>
         <source>{0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="266"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="264"/>
         <source>do not use bare except</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="184"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="182"/>
         <source>expected {0} blank lines after class or function definition, found {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="236"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="234"/>
         <source>&apos;async&apos; and &apos;await&apos; are reserved keywords starting with Python 3.7</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="133"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="131"/>
         <source>missing whitespace around parameter equals</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="175"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="173"/>
         <source>expected {0} blank lines, found {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="188"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="186"/>
         <source>expected {0} blank lines before a nested definition, found {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="215"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="213"/>
         <source>line break after binary operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="233"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="231"/>
         <source>invalid escape sequence &apos;\{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="191"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="189"/>
         <source>too many blank lines ({0}) before a nested definition, expected {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="178"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="176"/>
         <source>too many blank lines ({0}), expected {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="45"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="43"/>
         <source>over-indented</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="218"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="216"/>
         <source>doc line too long ({0} &gt; {1} characters)</source>
         <translation type="unfinished"></translation>
     </message>
Binary file eric6/i18n/eric6_de.qm has changed
--- a/eric6/i18n/eric6_de.ts	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/i18n/eric6_de.ts	Sun Oct 04 16:28:51 2020 +0200
@@ -1104,72 +1104,72 @@
 <context>
     <name>AnnotationsChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="808"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="806"/>
         <source>missing type annotation for function argument &apos;{0}&apos;</source>
         <translation>fehlende Typannotation für Funktionsargument &apos;{0}&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="811"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="809"/>
         <source>missing type annotation for &apos;*{0}&apos;</source>
         <translation>fehlende Typannotation für &apos;*{0}&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="814"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="812"/>
         <source>missing type annotation for &apos;**{0}&apos;</source>
         <translation>fehlende Typannotation für &apos;**{0}&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="823"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="821"/>
         <source>missing return type annotation for public function</source>
         <translation>fehlende Rückgabetypannotation für öffentliche Funktion</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="826"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="824"/>
         <source>missing return type annotation for protected function</source>
         <translation>fehlende Rückgabetypannotation für geschützte Funktion</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="829"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="827"/>
         <source>missing return type annotation for private function</source>
         <translation>fehlende Rückgabetypannotation für private Funktion</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="832"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="830"/>
         <source>missing return type annotation for special method</source>
         <translation>fehlende Rückgabetypannotation für spezielle Methode</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="835"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="833"/>
         <source>missing return type annotation for staticmethod</source>
         <translation>fehlende Rückgabetypannotation für statische Methode</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="838"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="836"/>
         <source>missing return type annotation for classmethod</source>
         <translation>fehlende Rückgabetypannotation für Klassenmethode</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="850"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="848"/>
         <source>{0}: {1}</source>
         <translation>{0}: {1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="817"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="815"/>
         <source>missing type annotation for &apos;self&apos; in method</source>
         <translation>fehlende Typannotation für &apos;self&apos; in Methode</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="820"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="818"/>
         <source>missing type annotation for &apos;cls&apos; in classmethod</source>
         <translation>fehlende Typannotation für &apos;cls&apos; in Klassenmethode</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="842"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="840"/>
         <source>type annotation coverage of {0}% is too low</source>
         <translation>Typannotationsabdeckung von {0}% ist zu niedrig</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="846"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="844"/>
         <source>type annotation is too complex ({0} &gt; {1})</source>
         <translation>Typannotation ist zu komplex ({0} &gt; {1})</translation>
     </message>
@@ -3345,7 +3345,7 @@
 <context>
     <name>CodeStyleChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="1130"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="1128"/>
         <source>No message defined for code &apos;{0}&apos;.</source>
         <translation>Keine Nachricht für &apos;{0}&apos; definiert.</translation>
     </message>
@@ -4063,142 +4063,142 @@
 <context>
     <name>CodeStyleFixer</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="858"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="856"/>
         <source>Triple single quotes converted to triple double quotes.</source>
         <translation>Dreifache Einfachanführungszeichen in dreifache Doppelanführungszeichen umgewandelt.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="861"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="859"/>
         <source>Introductory quotes corrected to be {0}&quot;&quot;&quot;</source>
         <translation>Einleitende Anführungszeichen in {0}&quot;&quot;&quot; korrigiert</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="864"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="862"/>
         <source>Single line docstring put on one line.</source>
         <translation>Einzeiligen Docstring auf eine Zeile gebracht.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="867"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="865"/>
         <source>Period added to summary line.</source>
         <translation>Punkt an die Zusammenfassungszeile angefügt.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="894"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="892"/>
         <source>Blank line before function/method docstring removed.</source>
         <translation>Leerzeile vor Funktions-/Methodendocstring entfernt.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="873"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="871"/>
         <source>Blank line inserted before class docstring.</source>
         <translation>Leerzeile vor Klassendocstring eingefügt.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="876"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="874"/>
         <source>Blank line inserted after class docstring.</source>
         <translation>Leerzeile nach Klassendocstring eingefügt.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="879"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="877"/>
         <source>Blank line inserted after docstring summary.</source>
         <translation>Leerzeile nach Docstring Zusammenfassung eingefügt.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="882"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="880"/>
         <source>Blank line inserted after last paragraph of docstring.</source>
         <translation>Leerzeile nach letztem Abschnitt des Docstring eingefügt.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="885"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="883"/>
         <source>Leading quotes put on separate line.</source>
         <translation>Einleitende Anführungszeichen auf separate Zeile gesetzt.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="888"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="886"/>
         <source>Trailing quotes put on separate line.</source>
         <translation>Schließende Anführungszeichen auf separate Zeile gesetzt.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="891"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="889"/>
         <source>Blank line before class docstring removed.</source>
         <translation>Leerzeile vor Klassendocstring entfernt.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="897"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="895"/>
         <source>Blank line after class docstring removed.</source>
         <translation>Leerzeile nach Klassendocstring entfernt.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="900"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="898"/>
         <source>Blank line after function/method docstring removed.</source>
         <translation>Leerzeile nach Funktions-/Methodendocstring entfernt.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="903"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="901"/>
         <source>Blank line after last paragraph removed.</source>
         <translation>Leerzeile nach letzten Abschnitt entfernt.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="906"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="904"/>
         <source>Tab converted to 4 spaces.</source>
         <translation>Tabulator in 4 Leerzeichen gewandelt.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="909"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="907"/>
         <source>Indentation adjusted to be a multiple of four.</source>
         <translation>Einrückung auf ein Vielfaches von vier korrigiert.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="912"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="910"/>
         <source>Indentation of continuation line corrected.</source>
         <translation>Einrückung der Fortsetzungszeile korrigiert.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="915"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="913"/>
         <source>Indentation of closing bracket corrected.</source>
         <translation>Einrückung der schließenden Klammer korrigiert.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="918"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="916"/>
         <source>Missing indentation of continuation line corrected.</source>
         <translation>Fehlende Einrückung der Fortsetzungszeile korrigiert.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="921"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="919"/>
         <source>Closing bracket aligned to opening bracket.</source>
         <translation>Schließende Klammer an öffnender Klammer ausgerichtet.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="924"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="922"/>
         <source>Indentation level changed.</source>
         <translation>Einrückungsebene geändert.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="927"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="925"/>
         <source>Indentation level of hanging indentation changed.</source>
         <translation>Einrückungsebene der hängenden Einrückung geändert.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="930"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="928"/>
         <source>Visual indentation corrected.</source>
         <translation>Visuelle Einrückung korrigiert.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="945"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="943"/>
         <source>Extraneous whitespace removed.</source>
         <translation>Überzählige Leerzeichen gelöscht.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="942"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="940"/>
         <source>Missing whitespace added.</source>
         <translation>Fehlende Leerzeichen eingefügt.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="948"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="946"/>
         <source>Whitespace around comment sign corrected.</source>
         <translation>Leerzeichen um Kommentarzeichen korrigiert.</translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="952"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="950"/>
         <source>%n blank line(s) inserted.</source>
         <translation>
             <numerusform>Eine Leerzeile eingefügt.</numerusform>
@@ -4206,7 +4206,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="955"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="953"/>
         <source>%n superfluous lines removed</source>
         <translation>
             <numerusform>Eine überflüssige Zeile gelöscht</numerusform>
@@ -4214,72 +4214,72 @@
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="959"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="957"/>
         <source>Superfluous blank lines removed.</source>
         <translation>Überflüssige Leerzeilen gelöscht.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="962"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="960"/>
         <source>Superfluous blank lines after function decorator removed.</source>
         <translation>Überflüssige Leerzeilen nach Funktionsdekorator gelöscht.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="965"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="963"/>
         <source>Imports were put on separate lines.</source>
         <translation>Imports wurden auf separate Zeilen verteilt.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="968"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="966"/>
         <source>Long lines have been shortened.</source>
         <translation>Lange Zeilen wurden gekürzt.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="971"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="969"/>
         <source>Redundant backslash in brackets removed.</source>
         <translation>Redundante Backslashes in Klammern entfernt.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="977"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="975"/>
         <source>Compound statement corrected.</source>
         <translation>Compund Statement korrigiert.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="980"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="978"/>
         <source>Comparison to None/True/False corrected.</source>
         <translation>Vergleich mit None/True/False korrigiert.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="983"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="981"/>
         <source>&apos;{0}&apos; argument added.</source>
         <translation>&apos;{0}&apos; Argument hinzugefügt.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="986"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="984"/>
         <source>&apos;{0}&apos; argument removed.</source>
         <translation>&apos;{0}&apos; Argument entfernt.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="989"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="987"/>
         <source>Whitespace stripped from end of line.</source>
         <translation>Leerzeichen am Zeilenende entfernt.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="992"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="990"/>
         <source>newline added to end of file.</source>
         <translation>Zeilenvorschub am Dateiende angefügt.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="995"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="993"/>
         <source>Superfluous trailing blank lines removed from end of file.</source>
         <translation>Überflüssige Leerzeilen am Dateiende gelöscht.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="998"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="996"/>
         <source>&apos;&lt;&gt;&apos; replaced by &apos;!=&apos;.</source>
         <translation>„&lt;&gt;“ durch „!=“ ersetzt.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="1002"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="1000"/>
         <source>Could not save the file! Skipping it. Reason: {0}</source>
         <translation>Datei konnte nicht gespeichert werden! Ursache: {0}</translation>
     </message>
@@ -4765,22 +4765,22 @@
 <context>
     <name>ComplexityChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="479"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="477"/>
         <source>&apos;{0}&apos; is too complex ({1})</source>
         <translation>&apos;{0}&apos; ist zu komplex ({1})</translation>
     </message>
     <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="479"/>
+        <source>source code line is too complex ({0})</source>
+        <translation>Quelltextzeile ist zu komplex ({0})</translation>
+    </message>
+    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="481"/>
-        <source>source code line is too complex ({0})</source>
-        <translation>Quelltextzeile ist zu komplex ({0})</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="483"/>
         <source>overall source code line complexity is too high ({0})</source>
         <translation>mittlere Komplexität der Quelltextzeilen is zu hoch ({0})</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="486"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="484"/>
         <source>{0}: {1}</source>
         <translation>{0}: {1}</translation>
     </message>
@@ -8137,30 +8137,30 @@
 <context>
     <name>DeepLEngine</name>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="73"/>
-        <source>Text to be translated exceeds the translation limit of {0} characters.</source>
-        <translation>Der zu übersetzende Text überschreitet das Längenlimit von {0} Zeichen.</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="95"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="98"/>
         <source>Invalid response received from DeepL</source>
         <translation>Ungültige Antwort von DeepL erhalten</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="98"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="101"/>
         <source>DeepL call returned an unknown result</source>
         <translation>DeepL Aufruf lieferte ein unbekanntes Resultat</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="102"/>
-        <source>&lt;p&gt;No translation found&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Keine Übersetzung gefunden&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="79"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="82"/>
         <source>A valid DeepL Pro key is required.</source>
         <translation>Ein gülter DeepL Pro Schlüssel ist erforderlich.</translation>
     </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="73"/>
+        <source>DeepL: Text to be translated exceeds the translation limit of {0} characters.</source>
+        <translation>DeepL: Der zu übersetzende Text überschreitet das Längenlimit von {0} Zeichen.</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="105"/>
+        <source>&lt;p&gt;DeepL: No translation found&lt;/p&gt;</source>
+        <translation>&lt;p&gt;DeepL: Keine Übersetzung gefunden&lt;/p&gt;</translation>
+    </message>
 </context>
 <context>
     <name>DeleteFilesConfirmationDialog</name>
@@ -8428,237 +8428,237 @@
 <context>
     <name>DocStyleChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="291"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="289"/>
         <source>module is missing a docstring</source>
         <translation>Modul hat keinen Docstring</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="293"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="291"/>
         <source>public function/method is missing a docstring</source>
         <translation>Öffentliche Funktion/Methode hat keinen Docstring</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="296"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="294"/>
         <source>private function/method may be missing a docstring</source>
         <translation>Private Funktion/Methode hat keinen Docstring</translation>
     </message>
     <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="297"/>
+        <source>public class is missing a docstring</source>
+        <translation>Öffentliche Klasse hat keinen Docstring</translation>
+    </message>
+    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="299"/>
-        <source>public class is missing a docstring</source>
-        <translation>Öffentliche Klasse hat keinen Docstring</translation>
+        <source>private class may be missing a docstring</source>
+        <translation>Private Klasse hat keinen Docstring</translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="301"/>
-        <source>private class may be missing a docstring</source>
-        <translation>Private Klasse hat keinen Docstring</translation>
+        <source>docstring not surrounded by &quot;&quot;&quot;</source>
+        <translation>Docstring nicht durch &quot;&quot;&quot; eingeschlossen</translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="303"/>
-        <source>docstring not surrounded by &quot;&quot;&quot;</source>
-        <translation>Docstring nicht durch &quot;&quot;&quot; eingeschlossen</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="305"/>
         <source>docstring containing \ not surrounded by r&quot;&quot;&quot;</source>
         <translation>Docstring, der \ enthält, nicht durch r&quot;&quot;&quot; eingeschlossen</translation>
     </message>
     <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="306"/>
+        <source>one-liner docstring on multiple lines</source>
+        <translation>einzeiliger Docstring über mehrere Zeilen</translation>
+    </message>
+    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="308"/>
-        <source>one-liner docstring on multiple lines</source>
-        <translation>einzeiliger Docstring über mehrere Zeilen</translation>
+        <source>docstring has wrong indentation</source>
+        <translation>Docstring hat falsche Einrückung</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="357"/>
+        <source>docstring summary does not end with a period</source>
+        <translation>Docstring Zusammenfassung endet nicht mit einem Punkt</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="314"/>
+        <source>docstring summary is not in imperative mood (Does instead of Do)</source>
+        <translation>Docstring Zusammenfassung nicht im Imperativ (Tut anstelle Tue)</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="318"/>
+        <source>docstring summary looks like a function&apos;s/method&apos;s signature</source>
+        <translation>Docstring Zusammenfassung scheint Funktion-/Methodensignatur zu sein</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="321"/>
+        <source>docstring does not mention the return value type</source>
+        <translation>Docstring erwähnt nicht den Typ des Rückgabewertes</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="324"/>
+        <source>function/method docstring is separated by a blank line</source>
+        <translation>Funktions-/Methodendocstring ist durch eine Leerzeile abgetrennt</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="327"/>
+        <source>class docstring is not preceded by a blank line</source>
+        <translation>Klassendocstring hat keine führende Leerzeile</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="330"/>
+        <source>class docstring is not followed by a blank line</source>
+        <translation>Klassendocstring hat keine nachfolgende Leerzeile</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="391"/>
+        <source>docstring summary is not followed by a blank line</source>
+        <translation>Docstring Zusammenfassung hat keine folgende Leerzeile</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="336"/>
+        <source>last paragraph of docstring is not followed by a blank line</source>
+        <translation>letzter Abschnitt des Docstring hat keine folgende Leerzeile</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="344"/>
+        <source>private function/method is missing a docstring</source>
+        <translation>Private Funktion/Methode hat keinen Docstring</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="347"/>
+        <source>private class is missing a docstring</source>
+        <translation>Private Klasse hat keinen Docstring</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="351"/>
+        <source>leading quotes of docstring not on separate line</source>
+        <translation>einleitende Anführungszeichen nicht auf separater Zeile</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="354"/>
+        <source>trailing quotes of docstring not on separate line</source>
+        <translation>schließende Anführungszeichen nicht auf separater Zeile</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="361"/>
+        <source>docstring does not contain a @return line but function/method returns something</source>
+        <translation>Docstring enthält keine @return Zeile obwohl die Funktion/Methode etwas zurückgibt</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="365"/>
+        <source>docstring contains a @return line but function/method doesn&apos;t return anything</source>
+        <translation>Docstring enthält eine @return Zeile obwohl die Funktion/Methode nichts zurückgibt</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="369"/>
+        <source>docstring does not contain enough @param/@keyparam lines</source>
+        <translation>Docstring enthält nicht genügend @param/@keyparam Zeilen</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="372"/>
+        <source>docstring contains too many @param/@keyparam lines</source>
+        <translation>Docstring enthält zu viele @param/@keyparam Zeilen</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="375"/>
+        <source>keyword only arguments must be documented with @keyparam lines</source>
+        <translation>&apos;keyword only&apos; Argumente müssen mit @keyparam Zeilen dokumentiert werden</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="378"/>
+        <source>order of @param/@keyparam lines does not match the function/method signature</source>
+        <translation>Reihenfolge der @param/@keyparam Zeilen stimmt nicht mit der Funktions-/Methodensignatur überein</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="381"/>
+        <source>class docstring is preceded by a blank line</source>
+        <translation>Klassendocstring hat eine führende Leerzeile</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="383"/>
+        <source>class docstring is followed by a blank line</source>
+        <translation>Klassendocstring hat eine nachfolgende Leerzeile</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="385"/>
+        <source>function/method docstring is preceded by a blank line</source>
+        <translation>Funktions-/Methodendocstring hat eine führende Leerzeile</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="388"/>
+        <source>function/method docstring is followed by a blank line</source>
+        <translation>Funktions-/Methodendocstring hat eine nachfolgende Leerzeile</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="394"/>
+        <source>last paragraph of docstring is followed by a blank line</source>
+        <translation>letzter Abschnitt des Docstring hat eine folgende Leerzeile</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="397"/>
+        <source>docstring does not contain a @exception line but function/method raises an exception</source>
+        <translation>Docstring enthält keine @exception Zeile obwohl die Funktion/Methode eine Ausnahme erzeugt</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="401"/>
+        <source>docstring contains a @exception line but function/method doesn&apos;t raise an exception</source>
+        <translation>Docstring enthält eine @exception Zeile obwohl die Funktion/Methode keine Ausnahme erzeugt</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="424"/>
+        <source>{0}: {1}</source>
+        <translation>{0}: {1}</translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="310"/>
-        <source>docstring has wrong indentation</source>
-        <translation>Docstring hat falsche Einrückung</translation>
+        <source>docstring does not contain a summary</source>
+        <translation>Docstring enthält keine Zusammenfassung</translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="359"/>
-        <source>docstring summary does not end with a period</source>
-        <translation>Docstring Zusammenfassung endet nicht mit einem Punkt</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="316"/>
-        <source>docstring summary is not in imperative mood (Does instead of Do)</source>
-        <translation>Docstring Zusammenfassung nicht im Imperativ (Tut anstelle Tue)</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="320"/>
-        <source>docstring summary looks like a function&apos;s/method&apos;s signature</source>
-        <translation>Docstring Zusammenfassung scheint Funktion-/Methodensignatur zu sein</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="323"/>
-        <source>docstring does not mention the return value type</source>
-        <translation>Docstring erwähnt nicht den Typ des Rückgabewertes</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="326"/>
-        <source>function/method docstring is separated by a blank line</source>
-        <translation>Funktions-/Methodendocstring ist durch eine Leerzeile abgetrennt</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="329"/>
-        <source>class docstring is not preceded by a blank line</source>
-        <translation>Klassendocstring hat keine führende Leerzeile</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="332"/>
-        <source>class docstring is not followed by a blank line</source>
-        <translation>Klassendocstring hat keine nachfolgende Leerzeile</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="393"/>
-        <source>docstring summary is not followed by a blank line</source>
-        <translation>Docstring Zusammenfassung hat keine folgende Leerzeile</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="338"/>
-        <source>last paragraph of docstring is not followed by a blank line</source>
-        <translation>letzter Abschnitt des Docstring hat keine folgende Leerzeile</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="346"/>
-        <source>private function/method is missing a docstring</source>
-        <translation>Private Funktion/Methode hat keinen Docstring</translation>
+        <source>docstring summary does not start with &apos;{0}&apos;</source>
+        <translation>Docstring Zusammenfassung beginnt nicht mit &apos;{0}&apos;</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="405"/>
+        <source>raised exception &apos;{0}&apos; is not documented in docstring</source>
+        <translation>Ausnahme &apos;{0}&apos; wird geworfen, ist aber nicht dokumentiert</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="408"/>
+        <source>documented exception &apos;{0}&apos; is not raised</source>
+        <translation>dokumentierte Ausnahme &apos;{0}&apos; wird nicht geworfen</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="411"/>
+        <source>docstring does not contain a @signal line but class defines signals</source>
+        <translation>Docstring enthält keine @signal Zeile obwohl die Klasse Signale definiert</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="414"/>
+        <source>docstring contains a @signal line but class doesn&apos;t define signals</source>
+        <translation>Docstring enthält eine @signal Zeile obwohl die Klasse keine Signale definiert</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="417"/>
+        <source>defined signal &apos;{0}&apos; is not documented in docstring</source>
+        <translation>definiertes Signal &apos;{0}&apos; ist nicht dokumentiert</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="420"/>
+        <source>documented signal &apos;{0}&apos; is not defined</source>
+        <translation>dokumentiertes Signal &apos;{0}&apos; ist nicht definiert</translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="349"/>
-        <source>private class is missing a docstring</source>
-        <translation>Private Klasse hat keinen Docstring</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="353"/>
-        <source>leading quotes of docstring not on separate line</source>
-        <translation>einleitende Anführungszeichen nicht auf separater Zeile</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="356"/>
-        <source>trailing quotes of docstring not on separate line</source>
-        <translation>schließende Anführungszeichen nicht auf separater Zeile</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="363"/>
-        <source>docstring does not contain a @return line but function/method returns something</source>
-        <translation>Docstring enthält keine @return Zeile obwohl die Funktion/Methode etwas zurückgibt</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="367"/>
-        <source>docstring contains a @return line but function/method doesn&apos;t return anything</source>
-        <translation>Docstring enthält eine @return Zeile obwohl die Funktion/Methode nichts zurückgibt</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="371"/>
-        <source>docstring does not contain enough @param/@keyparam lines</source>
-        <translation>Docstring enthält nicht genügend @param/@keyparam Zeilen</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="374"/>
-        <source>docstring contains too many @param/@keyparam lines</source>
-        <translation>Docstring enthält zu viele @param/@keyparam Zeilen</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="377"/>
-        <source>keyword only arguments must be documented with @keyparam lines</source>
-        <translation>&apos;keyword only&apos; Argumente müssen mit @keyparam Zeilen dokumentiert werden</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="380"/>
-        <source>order of @param/@keyparam lines does not match the function/method signature</source>
-        <translation>Reihenfolge der @param/@keyparam Zeilen stimmt nicht mit der Funktions-/Methodensignatur überein</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="383"/>
-        <source>class docstring is preceded by a blank line</source>
-        <translation>Klassendocstring hat eine führende Leerzeile</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="385"/>
-        <source>class docstring is followed by a blank line</source>
-        <translation>Klassendocstring hat eine nachfolgende Leerzeile</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="387"/>
-        <source>function/method docstring is preceded by a blank line</source>
-        <translation>Funktions-/Methodendocstring hat eine führende Leerzeile</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="390"/>
-        <source>function/method docstring is followed by a blank line</source>
-        <translation>Funktions-/Methodendocstring hat eine nachfolgende Leerzeile</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="396"/>
-        <source>last paragraph of docstring is followed by a blank line</source>
-        <translation>letzter Abschnitt des Docstring hat eine folgende Leerzeile</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="399"/>
-        <source>docstring does not contain a @exception line but function/method raises an exception</source>
-        <translation>Docstring enthält keine @exception Zeile obwohl die Funktion/Methode eine Ausnahme erzeugt</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="403"/>
-        <source>docstring contains a @exception line but function/method doesn&apos;t raise an exception</source>
-        <translation>Docstring enthält eine @exception Zeile obwohl die Funktion/Methode keine Ausnahme erzeugt</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="426"/>
-        <source>{0}: {1}</source>
-        <translation>{0}: {1}</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="312"/>
-        <source>docstring does not contain a summary</source>
-        <translation>Docstring enthält keine Zusammenfassung</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="361"/>
-        <source>docstring summary does not start with &apos;{0}&apos;</source>
-        <translation>Docstring Zusammenfassung beginnt nicht mit &apos;{0}&apos;</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="407"/>
-        <source>raised exception &apos;{0}&apos; is not documented in docstring</source>
-        <translation>Ausnahme &apos;{0}&apos; wird geworfen, ist aber nicht dokumentiert</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="410"/>
-        <source>documented exception &apos;{0}&apos; is not raised</source>
-        <translation>dokumentierte Ausnahme &apos;{0}&apos; wird nicht geworfen</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="413"/>
-        <source>docstring does not contain a @signal line but class defines signals</source>
-        <translation>Docstring enthält keine @signal Zeile obwohl die Klasse Signale definiert</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="416"/>
-        <source>docstring contains a @signal line but class doesn&apos;t define signals</source>
-        <translation>Docstring enthält eine @signal Zeile obwohl die Klasse keine Signale definiert</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="419"/>
-        <source>defined signal &apos;{0}&apos; is not documented in docstring</source>
-        <translation>definiertes Signal &apos;{0}&apos; ist nicht dokumentiert</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="422"/>
-        <source>documented signal &apos;{0}&apos; is not defined</source>
-        <translation>dokumentiertes Signal &apos;{0}&apos; ist nicht definiert</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="351"/>
         <source>class docstring is still a default string</source>
         <translation>Klassendocstring is noch immer ein Standardstring</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="344"/>
-        <source>function docstring is still a default string</source>
-        <translation>Funktionsdocstring is noch immer ein Standardstring</translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="342"/>
+        <source>function docstring is still a default string</source>
+        <translation>Funktionsdocstring is noch immer ein Standardstring</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="340"/>
         <source>module docstring is still a default string</source>
         <translation>Moduldocstring is noch immer ein Standardstring</translation>
     </message>
@@ -10993,7 +10993,7 @@
         <translation>Drucken abgebrochen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6997"/>
+        <location filename="../QScintilla/Editor.py" line="6996"/>
         <source>File changed</source>
         <translation>Datei geändert</translation>
     </message>
@@ -11058,57 +11058,57 @@
         <translation>Zurück zum letzten gesichert Zustand</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6714"/>
+        <location filename="../QScintilla/Editor.py" line="6713"/>
         <source>Macro Name</source>
         <translation>Makro Name</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6714"/>
+        <location filename="../QScintilla/Editor.py" line="6713"/>
         <source>Select a macro name:</source>
         <translation>Wähle einen Makro Namen:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6785"/>
+        <location filename="../QScintilla/Editor.py" line="6784"/>
         <source>Macro files (*.macro)</source>
         <translation>Makrodateien (*.macro)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6742"/>
+        <location filename="../QScintilla/Editor.py" line="6741"/>
         <source>Load macro file</source>
         <translation>Lade Makrodatei</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6765"/>
+        <location filename="../QScintilla/Editor.py" line="6764"/>
         <source>Error loading macro</source>
         <translation>Fehler beim Makro Laden</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6785"/>
+        <location filename="../QScintilla/Editor.py" line="6784"/>
         <source>Save macro file</source>
         <translation>Makrodatei schreiben</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6802"/>
+        <location filename="../QScintilla/Editor.py" line="6801"/>
         <source>Save macro</source>
         <translation>Makro speichern</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6818"/>
+        <location filename="../QScintilla/Editor.py" line="6817"/>
         <source>Error saving macro</source>
         <translation>Fehler beim Makro speichern</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6831"/>
+        <location filename="../QScintilla/Editor.py" line="6830"/>
         <source>Start Macro Recording</source>
         <translation>Makroaufzeichnung starten</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6857"/>
+        <location filename="../QScintilla/Editor.py" line="6856"/>
         <source>Macro Recording</source>
         <translation>Makroaufzeichnung</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6857"/>
+        <location filename="../QScintilla/Editor.py" line="6856"/>
         <source>Enter name of the macro:</source>
         <translation>Gib einen Namen für das Makro ein:</translation>
     </message>
@@ -11158,42 +11158,42 @@
         <translation>Haltepunkt bearbeiten...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5605"/>
+        <location filename="../QScintilla/Editor.py" line="5604"/>
         <source>Enable breakpoint</source>
         <translation>Haltepunkt aktivieren</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5608"/>
+        <location filename="../QScintilla/Editor.py" line="5607"/>
         <source>Disable breakpoint</source>
         <translation>Haltepunkt deaktivieren</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5983"/>
+        <location filename="../QScintilla/Editor.py" line="5982"/>
         <source>Code Coverage</source>
         <translation>Quelltext Abdeckung</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5983"/>
+        <location filename="../QScintilla/Editor.py" line="5982"/>
         <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="6163"/>
+        <location filename="../QScintilla/Editor.py" line="6162"/>
         <source>Profile Data</source>
         <translation>Profildaten</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6163"/>
+        <location filename="../QScintilla/Editor.py" line="6162"/>
         <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="4767"/>
+        <location filename="../QScintilla/Editor.py" line="4766"/>
         <source>Autocompletion</source>
         <translation>Automatische Vervollständigung</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4767"/>
+        <location filename="../QScintilla/Editor.py" line="4766"/>
         <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>
@@ -11223,7 +11223,7 @@
         <translation>Autom. Speicherung aktiv</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7308"/>
+        <location filename="../QScintilla/Editor.py" line="7307"/>
         <source>Drop Error</source>
         <translation>Drop Fehler</translation>
     </message>
@@ -11233,12 +11233,12 @@
         <translation>Zeige Syntaxfehlermeldung</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6325"/>
+        <location filename="../QScintilla/Editor.py" line="6324"/>
         <source>Syntax Error</source>
         <translation>Syntaxfehler</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6325"/>
+        <location filename="../QScintilla/Editor.py" line="6324"/>
         <source>No syntax error message available.</source>
         <translation>Keine Syntaxfehlermeldung verfügbar.</translation>
     </message>
@@ -11268,17 +11268,17 @@
         <translation>Vorige nichtabgedeckte Zeile</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6046"/>
+        <location filename="../QScintilla/Editor.py" line="6045"/>
         <source>Show Code Coverage Annotations</source>
         <translation>Zeilen ohne Abdeckung Markieren</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6039"/>
+        <location filename="../QScintilla/Editor.py" line="6038"/>
         <source>All lines have been covered.</source>
         <translation>Alle Zeilen sind abgedeckt.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6046"/>
+        <location filename="../QScintilla/Editor.py" line="6045"/>
         <source>There is no coverage file available.</source>
         <translation>Es gibt keine Datei mit Abdeckungsinformationen.</translation>
     </message>
@@ -11288,22 +11288,22 @@
         <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="6756"/>
+        <location filename="../QScintilla/Editor.py" line="6755"/>
         <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="6765"/>
+        <location filename="../QScintilla/Editor.py" line="6764"/>
         <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="6818"/>
+        <location filename="../QScintilla/Editor.py" line="6817"/>
         <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="7308"/>
+        <location filename="../QScintilla/Editor.py" line="7307"/>
         <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>
@@ -11343,82 +11343,82 @@
         <translation>Keine Sprache</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7167"/>
+        <location filename="../QScintilla/Editor.py" line="7166"/>
         <source>{0} (ro)</source>
         <translation>{0} (ro)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7329"/>
+        <location filename="../QScintilla/Editor.py" line="7328"/>
         <source>Resources</source>
         <translation>Ressourcen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7331"/>
+        <location filename="../QScintilla/Editor.py" line="7330"/>
         <source>Add file...</source>
         <translation>Datei hinzufügen...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7333"/>
+        <location filename="../QScintilla/Editor.py" line="7332"/>
         <source>Add files...</source>
         <translation>Dateien hinzufügen...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7335"/>
+        <location filename="../QScintilla/Editor.py" line="7334"/>
         <source>Add aliased file...</source>
         <translation>Aliased-Datei hinzufügen...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7338"/>
+        <location filename="../QScintilla/Editor.py" line="7337"/>
         <source>Add localized resource...</source>
         <translation>Lokalisierte Ressource hinzufügen...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7361"/>
+        <location filename="../QScintilla/Editor.py" line="7360"/>
         <source>Add file resource</source>
         <translation>Dateiressource hinzufügen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7377"/>
+        <location filename="../QScintilla/Editor.py" line="7376"/>
         <source>Add file resources</source>
         <translation>Dateiressourcen hinzufügen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7404"/>
+        <location filename="../QScintilla/Editor.py" line="7403"/>
         <source>Add aliased file resource</source>
         <translation>Aliased-Dateiressourcen hinzufügen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7404"/>
+        <location filename="../QScintilla/Editor.py" line="7403"/>
         <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="7470"/>
+        <location filename="../QScintilla/Editor.py" line="7469"/>
         <source>Package Diagram</source>
         <translation>Package-Diagramm</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7470"/>
+        <location filename="../QScintilla/Editor.py" line="7469"/>
         <source>Include class attributes?</source>
         <translation>Klassenattribute anzeigen?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7506"/>
+        <location filename="../QScintilla/Editor.py" line="7505"/>
         <source>Application Diagram</source>
         <translation>Applikations-Diagramm</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7506"/>
+        <location filename="../QScintilla/Editor.py" line="7505"/>
         <source>Include module names?</source>
         <translation>Modulnamen anzeigen?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7342"/>
+        <location filename="../QScintilla/Editor.py" line="7341"/>
         <source>Add resource frame</source>
         <translation>Ressourcenrahmen hinzufügen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6831"/>
+        <location filename="../QScintilla/Editor.py" line="6830"/>
         <source>Macro recording is already active. Start new?</source>
         <translation>Eine Makroaufzeichnung ist bereits aktiv. Neu starten?</translation>
     </message>
@@ -11468,12 +11468,12 @@
         <translation>Kein Exportformat angegeben. Abbruch...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7492"/>
+        <location filename="../QScintilla/Editor.py" line="7491"/>
         <source>Imports Diagram</source>
         <translation>Imports Diagramm</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7492"/>
+        <location filename="../QScintilla/Editor.py" line="7491"/>
         <source>Include imports from external modules?</source>
         <translation>Imports externer Module anzeigen?</translation>
     </message>
@@ -11548,7 +11548,7 @@
         <translation>Wähle den anzuwendenden Pygments Lexer.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7835"/>
+        <location filename="../QScintilla/Editor.py" line="7834"/>
         <source>Check spelling...</source>
         <translation>Rechtschreibprüfung...</translation>
     </message>
@@ -11558,12 +11558,12 @@
         <translation>Rechtschreibprüfung für Auswahl...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7838"/>
+        <location filename="../QScintilla/Editor.py" line="7837"/>
         <source>Add to dictionary</source>
         <translation>Zum Wörterbuch hinzufügen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7840"/>
+        <location filename="../QScintilla/Editor.py" line="7839"/>
         <source>Ignore All</source>
         <translation>Alle ignorieren</translation>
     </message>
@@ -11608,22 +11608,22 @@
         <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="6802"/>
+        <location filename="../QScintilla/Editor.py" line="6801"/>
         <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="6602"/>
+        <location filename="../QScintilla/Editor.py" line="6601"/>
         <source>Warning: {0}</source>
         <translation>Warnung: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6609"/>
+        <location filename="../QScintilla/Editor.py" line="6608"/>
         <source>Error: {0}</source>
         <translation>Fehler: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6993"/>
+        <location filename="../QScintilla/Editor.py" line="6992"/>
         <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>
@@ -11648,27 +11648,27 @@
         <translation>Vorherige Änderung</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8256"/>
+        <location filename="../QScintilla/Editor.py" line="8255"/>
         <source>Sort Lines</source>
         <translation>Zeilen sortieren</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8256"/>
+        <location filename="../QScintilla/Editor.py" line="8255"/>
         <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="6537"/>
+        <location filename="../QScintilla/Editor.py" line="6536"/>
         <source>Warning</source>
         <translation>Warnung</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6537"/>
+        <location filename="../QScintilla/Editor.py" line="6536"/>
         <source>No warning messages available.</source>
         <translation>Keine Warnmeldungen verfügbar.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6599"/>
+        <location filename="../QScintilla/Editor.py" line="6598"/>
         <source>Style: {0}</source>
         <translation>Stil: {0}</translation>
     </message>
@@ -11693,7 +11693,7 @@
         <translation>Öffnen mit Kodierung</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6987"/>
+        <location filename="../QScintilla/Editor.py" line="6986"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric6. 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 eric6 geöffnet war. Neu einlesen?&lt;/p&gt;</translation>
     </message>
@@ -11708,32 +11708,32 @@
         <translation>Vervollständigen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4897"/>
+        <location filename="../QScintilla/Editor.py" line="4896"/>
         <source>Auto-Completion Provider</source>
         <translation>Provider für automatische Vervollständigungen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4897"/>
+        <location filename="../QScintilla/Editor.py" line="4896"/>
         <source>The completion list provider &apos;{0}&apos; was already registered. Ignoring duplicate request.</source>
         <translation>Der Provider für automatische Vervollständigungen namens &apos;{0}&apos; ist bereits registriert. Die Wiederholung wird ignoriert.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5176"/>
+        <location filename="../QScintilla/Editor.py" line="5175"/>
         <source>Call-Tips Provider</source>
         <translation>Calltipps-Provider</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5176"/>
+        <location filename="../QScintilla/Editor.py" line="5175"/>
         <source>The call-tips provider &apos;{0}&apos; was already registered. Ignoring duplicate request.</source>
         <translation>Der Calltipps-Provider namens &apos;{0}&apos; ist bereits registriert. Die Wiederholung wird ignoriert.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8345"/>
+        <location filename="../QScintilla/Editor.py" line="8344"/>
         <source>Register Mouse Click Handler</source>
         <translation>Maus Klick Handler registrieren</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8345"/>
+        <location filename="../QScintilla/Editor.py" line="8344"/>
         <source>A mouse click handler for &quot;{0}&quot; was already registered by &quot;{1}&quot;. Aborting request by &quot;{2}&quot;...</source>
         <translation>Ein Maus Klick Handler für &quot;{0}&quot; wurde bereits durch &quot;{1}&quot; registriert. Die Anfrage durch &quot;{2}&quot; wird abgebrochen...</translation>
     </message>
@@ -11763,12 +11763,12 @@
         <translation>Auswahl in Konsole ausführen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8466"/>
+        <location filename="../QScintilla/Editor.py" line="8465"/>
         <source>EditorConfig Properties</source>
         <translation>EditorConfig Eigenschaften</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8466"/>
+        <location filename="../QScintilla/Editor.py" line="8465"/>
         <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>
@@ -13538,27 +13538,27 @@
         <translation>Dateien für Hervorhebungsstile (*.e6h *.e4h)</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="681"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="685"/>
         <source>Delete Sub-Style</source>
         <translation>Unterstil löschen</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="681"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="685"/>
         <source>&lt;p&gt;Shall the sub-style &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Soll der Unterstil &lt;b&gt;{0}&lt;/b&gt; wirklich gelöscht werden?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="721"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="725"/>
         <source>{0} - Copy</source>
         <translation>{0} - Kopie</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="749"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="753"/>
         <source>Reset Sub-Styles to Default</source>
         <translation>Unterstile auf Standardwerte setzen</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="749"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="753"/>
         <source>&lt;p&gt;Do you really want to reset all defined sub-styles of &lt;b&gt;{0}&lt;/b&gt; to the default values?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Sollen wirklich alle definierten Unterstile von &lt;b&gt;{0}&lt;/b&gt; auf Standardwerte zurückgesetzt werden?&lt;/p&gt;</translation>
     </message>
@@ -17105,7 +17105,7 @@
 <context>
     <name>EricdocPlugin</name>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="102"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="81"/>
         <source>Qt Help Tools</source>
         <translation>Qt Help Werkzeuge</translation>
     </message>
@@ -17115,22 +17115,22 @@
         <translation>Eric6 Dokumentationsgenerator</translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="145"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="124"/>
         <source>Generate documentation (eric6_doc)</source>
         <translation>Erzeuge Dokumentation (eric6_doc)</translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="145"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="124"/>
         <source>Generate &amp;documentation (eric6_doc)</source>
         <translation>Erzeuge &amp;Dokumentation (eric6_doc)</translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="149"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="128"/>
         <source>Generate API documentation using eric6_doc</source>
         <translation>Erzeuge die API Dokumentation unter Verwendung von eric6_doc</translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="151"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="130"/>
         <source>&lt;b&gt;Generate documentation&lt;/b&gt;&lt;p&gt;Generate API documentation using eric6_doc.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Erzeuge Dokumentation&lt;/b&gt;&lt;p&gt;Erzeuge die API Dokumentation unter Verwendung von eric6_doc.&lt;/p&gt;</translation>
     </message>
@@ -26002,27 +26002,27 @@
 <context>
     <name>Globals</name>
     <message>
-        <location filename="../Globals/__init__.py" line="452"/>
+        <location filename="../Globals/__init__.py" line="421"/>
         <source>{0:4.2f} Bytes</source>
         <translation>{0:4.2f} Bytes</translation>
     </message>
     <message>
-        <location filename="../Globals/__init__.py" line="456"/>
+        <location filename="../Globals/__init__.py" line="425"/>
         <source>{0:4.2f} KiB</source>
         <translation>{0:4.2f} KiB</translation>
     </message>
     <message>
-        <location filename="../Globals/__init__.py" line="460"/>
+        <location filename="../Globals/__init__.py" line="429"/>
         <source>{0:4.2f} MiB</source>
         <translation>{0:4.2f} MiB</translation>
     </message>
     <message>
-        <location filename="../Globals/__init__.py" line="464"/>
+        <location filename="../Globals/__init__.py" line="433"/>
         <source>{0:4.2f} GiB</source>
         <translation>{0:4.2f} GiB</translation>
     </message>
     <message>
-        <location filename="../Globals/__init__.py" line="468"/>
+        <location filename="../Globals/__init__.py" line="437"/>
         <source>{0:4.2f} TiB</source>
         <translation>{0:4.2f} TiB</translation>
     </message>
@@ -26031,49 +26031,49 @@
     <name>GlosbeEngine</name>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GlosbeEngine.py" line="85"/>
-        <source>Invalid response received</source>
-        <translation>Ungültige Antwort empfangen</translation>
+        <source>Glosbe: Invalid response received</source>
+        <translation>Glosbe: Ungültige Antwort empfangen</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GlosbeEngine.py" line="99"/>
-        <source>No translation found.</source>
-        <translation>Keine Übersetzung gefunden.</translation>
+        <source>Glosbe: No translation found.</source>
+        <translation>Glosbe: Keine Übersetzung gefunden.</translation>
     </message>
 </context>
 <context>
     <name>GoogleV1Engine</name>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV1Engine.py" line="165"/>
-        <source>Only texts up to {0} characters are allowed.</source>
-        <translation>Es sind nur Texte bis zu {0} Zeichen erlaubt.</translation>
-    </message>
-    <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV1Engine.py" line="98"/>
-        <source>Invalid response received</source>
-        <translation>Ungültige Antwort empfangen</translation>
+        <source>Google V1: Invalid response received</source>
+        <translation>Google V1: Ungültige Antwort empfangen</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV1Engine.py" line="135"/>
-        <source>No translation found.</source>
-        <translation>Keine Übersetzung gefunden.</translation>
+        <source>Google V1: No translation found.</source>
+        <translation>Google V1: Keine Übersetzung gefunden.</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV1Engine.py" line="165"/>
+        <source>Google V1: Only texts up to {0} characters are allowed.</source>
+        <translation>Google V1: Es sind nur Texte bis zu {0} Zeichen erlaubt.</translation>
     </message>
 </context>
 <context>
     <name>GoogleV2Engine</name>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="72"/>
-        <source>A valid Google Translate key is required.</source>
-        <translation>Ein gülter Google Übersetzer Schlüssel ist erforderlich.</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="83"/>
-        <source>Invalid response received</source>
-        <translation>Ungültige Antwort empfangen</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="89"/>
-        <source>No translation available.</source>
-        <translation>Keine Übersetzungen verfügbar.</translation>
+        <source>Google V2: A valid Google Translate key is required.</source>
+        <translation>Google V2: Ein gülter Google Übersetzer Schlüssel ist erforderlich.</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="84"/>
+        <source>Google V2: Invalid response received</source>
+        <translation>Google V2: Ungültige Antwort empfangen</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="90"/>
+        <source>Google V2: No translation available.</source>
+        <translation>Google V2: Keine Übersetzungen verfügbar.</translation>
     </message>
 </context>
 <context>
@@ -36069,35 +36069,35 @@
 <context>
     <name>IbmWatsonEngine</name>
     <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
+        <source>Error Getting Available Translations</source>
+        <translation>Fehler bei Ermittlung verfügbarer Übersetzungen</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
+        <source>IBM Watson: No translation available.</source>
+        <translation>IBM Watson: Keine Übersetzungen verfügbar.</translation>
+    </message>
+    <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="183"/>
-        <source>A valid IBM Watson Language Translator key is required.</source>
-        <translation>Ein gülter &apos;IBM Watson Language Translator&apos; Schlüssel ist erforderlich.</translation>
+        <source>IBM Watson: A valid Language Translator key is required.</source>
+        <translation>IBM Watson: Ein gülter Language Translator&apos; Schlüssel ist erforderlich.</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="192"/>
-        <source>A valid IBM Watson Language Translator URL is required.</source>
-        <translation>Eine gülte &apos;IBM Watson Language Translator&apos; URL ist erforderlich.</translation>
+        <source>IBM Watson: A valid Language Translator URL is required.</source>
+        <translation>IBM Watson: Eine gülte &apos;Language Translator&apos; URL ist erforderlich.</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="244"/>
-        <source>Invalid response received</source>
-        <translation>Ungültige Antwort empfangen</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
-        <source>No translation available.</source>
-        <translation>Keine Übersetzungen verfügbar.</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
-        <source>Error Getting Available Translations</source>
-        <translation>Fehler bei Ermittlung verfügbarer Übersetzungen</translation>
+        <source>IBM Watson: Invalid response received</source>
+        <translation>IBM Watson: Ungültige Antwort empfangen</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="232"/>
-        <source>The server sent an error indication.
-Error: {0}</source>
-        <translation>Der Server sendete eine Fehlermeldung.
+        <source>IBM Watson: The server sent an error indication.
+ Error: {0}</source>
+        <translation>IBM Watson: Der Server sendete eine Fehlermeldung.
 Fehler: {0}</translation>
     </message>
 </context>
@@ -41825,610 +41825,615 @@
 <context>
     <name>Lexers</name>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="86"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="84"/>
         <source>Bash</source>
         <translation>Bash</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="86"/>
+        <source>Batch</source>
+        <translation>Batch</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="88"/>
-        <source>Batch</source>
-        <translation>Batch</translation>
+        <source>C/C++</source>
+        <translation>C/C++</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="90"/>
-        <source>C/C++</source>
-        <translation>C/C++</translation>
+        <source>C#</source>
+        <translation>C#</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="92"/>
-        <source>C#</source>
-        <translation>C#</translation>
+        <source>CMake</source>
+        <translation>CMake</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="94"/>
-        <source>CMake</source>
-        <translation>CMake</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="96"/>
         <source>CSS</source>
         <translation>CSS</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="98"/>
+        <source>D</source>
+        <translation>D</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="100"/>
-        <source>D</source>
-        <translation>D</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="102"/>
         <source>Diff</source>
         <translation>Diff</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="106"/>
+        <source>HTML/PHP/XML</source>
+        <translation>HTML/PHP/XML</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="108"/>
-        <source>HTML/PHP/XML</source>
-        <translation>HTML/PHP/XML</translation>
+        <source>IDL</source>
+        <translation>IDL</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="110"/>
-        <source>IDL</source>
-        <translation>IDL</translation>
+        <source>Java</source>
+        <translation>Java</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="112"/>
-        <source>Java</source>
-        <translation>Java</translation>
+        <source>JavaScript</source>
+        <translation>JavaScript</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="114"/>
-        <source>JavaScript</source>
-        <translation>JavaScript</translation>
+        <source>Lua</source>
+        <translation>Lua</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="116"/>
-        <source>Lua</source>
-        <translation>Lua</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="118"/>
         <source>Makefile</source>
         <translation>Makefile</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="126"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="124"/>
         <source>Perl</source>
         <translation>Perl</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="128"/>
+        <source>Povray</source>
+        <translation>Povray</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="130"/>
-        <source>Povray</source>
-        <translation>Povray</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="132"/>
         <source>Properties</source>
         <translation>Einstellungen</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="141"/>
+        <source>Ruby</source>
+        <translation>Ruby</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="143"/>
-        <source>Ruby</source>
-        <translation>Ruby</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="145"/>
         <source>SQL</source>
         <translation>SQL</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="149"/>
-        <source>TeX</source>
-        <translation>TeX</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="151"/>
-        <source>VHDL</source>
-        <translation>VHDL</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="575"/>
-        <source>Quixote Template Files (*.ptl)</source>
-        <translation>Quixote-Templatedateien (*.ptl)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="578"/>
-        <source>Ruby Files (*.rb)</source>
-        <translation>Ruby-Dateien (*.rb)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="581"/>
-        <source>IDL Files (*.idl)</source>
-        <translation>IDL-Dateien (*.idl)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="408"/>
-        <source>C Files (*.h *.c)</source>
-        <translation>C-Dateien (*.h *.c)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="411"/>
-        <source>C++ Files (*.h *.hpp *.hh *.cxx *.cpp *.cc)</source>
-        <translation>C++-Dateien (*.h *.hpp *.hh *.cxx *.cpp *.cc)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="596"/>
-        <source>C# Files (*.cs)</source>
-        <translation>C#-Dateien (*.cs)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="417"/>
-        <source>HTML Files (*.html *.htm *.asp *.shtml)</source>
-        <translation>HTML-Dateien (*.html *.htm *.asp *.shtml)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="608"/>
-        <source>CSS Files (*.css)</source>
-        <translation>CSS-Dateien (*.css)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="611"/>
-        <source>QSS Files (*.qss)</source>
-        <translation>QSS-Dateien (*.qss)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="426"/>
-        <source>PHP Files (*.php *.php3 *.php4 *.php5 *.phtml)</source>
-        <translation>PHP-Dateien (*.php *.php3 *.php4 *.php5 *.phtml)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="623"/>
-        <source>Qt Resource Files (*.qrc)</source>
-        <translation>Qt-Ressourcendateien (*.qrc)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="435"/>
-        <source>D Files (*.d *.di)</source>
-        <translation>D-Dateien (*.d *.di)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="632"/>
-        <source>Java Files (*.java)</source>
-        <translation>Java-Dateien (*.java)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="635"/>
-        <source>JavaScript Files (*.js)</source>
-        <translation>JavaScript-Dateien (*.js)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="638"/>
-        <source>SQL Files (*.sql)</source>
-        <translation>SQL-Dateien (*.sql)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="641"/>
-        <source>Docbook Files (*.docbook)</source>
-        <translation>Docbook-Dateien (*.docbook)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="450"/>
-        <source>Perl Files (*.pl *.pm *.ph)</source>
-        <translation>Perl-Dateien (*.pl *,pm *.ph)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="650"/>
-        <source>Lua Files (*.lua)</source>
-        <translation>Lua-Dateien (*.lua)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="456"/>
-        <source>Tex Files (*.tex *.sty *.aux *.toc *.idx)</source>
-        <translation>TeX-Dateien (*.tex *.sty *.aux *.toc *.idx)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="653"/>
-        <source>Shell Files (*.sh)</source>
-        <translation>Shell dateien (*.sh)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="462"/>
-        <source>Batch Files (*.bat *.cmd)</source>
-        <translation>Batch-Dateien (*.bat *.cmd)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="465"/>
-        <source>Diff Files (*.diff *.patch)</source>
-        <translation>Diff-Dateien (*.diff *.patch)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="468"/>
-        <source>Makefiles (*makefile Makefile *.mak)</source>
-        <translation>Make-Dateien (*makefile Makefile *.mak)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="471"/>
-        <source>Properties Files (*.properties *.ini *.inf *.reg *.cfg *.cnf *.rc)</source>
-        <translation>Properties-Dateien (*.properties *.ini *.inf *.reg *.cfg *.cnf *.rc)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="677"/>
-        <source>Povray Files (*.pov)</source>
-        <translation>Povray-Dateien (*.pov)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="478"/>
-        <source>CMake Files (CMakeLists.txt *.cmake *.ctest)</source>
-        <translation>CMakeDateien (CMakeLists.txt *.cmake *.ctest)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="481"/>
-        <source>VHDL Files (*.vhd *.vhdl)</source>
-        <translation>VHDLDateien (*.vhd *.vhdl)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="746"/>
-        <source>All Files (*)</source>
-        <translation>Alle Dateien (*)</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="147"/>
+        <source>TeX</source>
+        <translation>TeX</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="149"/>
+        <source>VHDL</source>
+        <translation>VHDL</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="562"/>
+        <source>Quixote Template Files (*.ptl)</source>
+        <translation>Quixote-Templatedateien (*.ptl)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="565"/>
+        <source>Ruby Files (*.rb)</source>
+        <translation>Ruby-Dateien (*.rb)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="568"/>
+        <source>IDL Files (*.idl)</source>
+        <translation>IDL-Dateien (*.idl)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="398"/>
+        <source>C Files (*.h *.c)</source>
+        <translation>C-Dateien (*.h *.c)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="401"/>
+        <source>C++ Files (*.h *.hpp *.hh *.cxx *.cpp *.cc)</source>
+        <translation>C++-Dateien (*.h *.hpp *.hh *.cxx *.cpp *.cc)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="583"/>
+        <source>C# Files (*.cs)</source>
+        <translation>C#-Dateien (*.cs)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="407"/>
+        <source>HTML Files (*.html *.htm *.asp *.shtml)</source>
+        <translation>HTML-Dateien (*.html *.htm *.asp *.shtml)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="595"/>
+        <source>CSS Files (*.css)</source>
+        <translation>CSS-Dateien (*.css)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="598"/>
+        <source>QSS Files (*.qss)</source>
+        <translation>QSS-Dateien (*.qss)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="416"/>
+        <source>PHP Files (*.php *.php3 *.php4 *.php5 *.phtml)</source>
+        <translation>PHP-Dateien (*.php *.php3 *.php4 *.php5 *.phtml)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="610"/>
+        <source>Qt Resource Files (*.qrc)</source>
+        <translation>Qt-Ressourcendateien (*.qrc)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="425"/>
+        <source>D Files (*.d *.di)</source>
+        <translation>D-Dateien (*.d *.di)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="619"/>
+        <source>Java Files (*.java)</source>
+        <translation>Java-Dateien (*.java)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="622"/>
+        <source>JavaScript Files (*.js)</source>
+        <translation>JavaScript-Dateien (*.js)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="625"/>
+        <source>SQL Files (*.sql)</source>
+        <translation>SQL-Dateien (*.sql)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="628"/>
+        <source>Docbook Files (*.docbook)</source>
+        <translation>Docbook-Dateien (*.docbook)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="440"/>
+        <source>Perl Files (*.pl *.pm *.ph)</source>
+        <translation>Perl-Dateien (*.pl *,pm *.ph)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="637"/>
+        <source>Lua Files (*.lua)</source>
+        <translation>Lua-Dateien (*.lua)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="446"/>
+        <source>Tex Files (*.tex *.sty *.aux *.toc *.idx)</source>
+        <translation>TeX-Dateien (*.tex *.sty *.aux *.toc *.idx)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="640"/>
+        <source>Shell Files (*.sh)</source>
+        <translation>Shell dateien (*.sh)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="452"/>
+        <source>Batch Files (*.bat *.cmd)</source>
+        <translation>Batch-Dateien (*.bat *.cmd)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="455"/>
+        <source>Diff Files (*.diff *.patch)</source>
+        <translation>Diff-Dateien (*.diff *.patch)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="458"/>
+        <source>Makefiles (*makefile Makefile *.mak)</source>
+        <translation>Make-Dateien (*makefile Makefile *.mak)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="461"/>
+        <source>Properties Files (*.properties *.ini *.inf *.reg *.cfg *.cnf *.rc)</source>
+        <translation>Properties-Dateien (*.properties *.ini *.inf *.reg *.cfg *.cnf *.rc)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="664"/>
+        <source>Povray Files (*.pov)</source>
+        <translation>Povray-Dateien (*.pov)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="468"/>
+        <source>CMake Files (CMakeLists.txt *.cmake *.ctest)</source>
+        <translation>CMakeDateien (CMakeLists.txt *.cmake *.ctest)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="471"/>
+        <source>VHDL Files (*.vhd *.vhdl)</source>
+        <translation>VHDLDateien (*.vhd *.vhdl)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="730"/>
+        <source>All Files (*)</source>
+        <translation>Alle Dateien (*)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="145"/>
         <source>TCL</source>
         <translation>TCL</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="484"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="474"/>
         <source>TCL/Tk Files (*.tcl *.tk)</source>
         <translation>TCL-/Tk-Dateien (*.tcl *.tk)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="587"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="574"/>
         <source>C Files (*.c)</source>
         <translation>C-Dateien (*.c)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="590"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="577"/>
         <source>C++ Files (*.cpp)</source>
         <translation>C++-Dateien (*.cpp)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="593"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="580"/>
         <source>C++/C Header Files (*.h)</source>
         <translation>C++-/C-Header Dateien (*.h)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="599"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="586"/>
         <source>HTML Files (*.html)</source>
         <translation>HTML-Dateien (*.html)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="602"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="589"/>
         <source>PHP Files (*.php)</source>
         <translation>PHP-Dateien (*.php)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="605"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="592"/>
         <source>ASP Files (*.asp)</source>
         <translation>ASP-Dateien (*.asp)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="614"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="601"/>
         <source>XML Files (*.xml)</source>
         <translation>XML-Dateien (*.xml)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="617"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="604"/>
         <source>XSL Files (*.xsl)</source>
         <translation>XSL-Dateien (*.xsl)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="620"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="607"/>
         <source>DTD Files (*.dtd)</source>
         <translation>DTD-Dateien (*.dtd)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="626"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="613"/>
         <source>D Files (*.d)</source>
         <translation>D-Dateien (*.d)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="629"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="616"/>
         <source>D Interface Files (*.di)</source>
         <translation>D-Interfacedateien (*.di)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="644"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="631"/>
         <source>Perl Files (*.pl)</source>
         <translation>Perl-Dateien (*.pl)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="647"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="634"/>
         <source>Perl Module Files (*.pm)</source>
         <translation>Perl-Moduldateien (*.pm)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="656"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="643"/>
         <source>Batch Files (*.bat)</source>
         <translation>Batch-Dateien (*.bat)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="659"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="646"/>
         <source>TeX Files (*.tex)</source>
         <translation>TeX-Dateien (*.tex)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="662"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="649"/>
         <source>TeX Template Files (*.sty)</source>
         <translation>TeX-Templatedateien (*.sty)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="665"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="652"/>
         <source>Diff Files (*.diff)</source>
         <translation>Diff-Dateien (*.diff)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="668"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="655"/>
         <source>Make Files (*.mak)</source>
         <translation>Make-Dateien (*.mak)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="671"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="658"/>
         <source>Properties Files (*.ini)</source>
         <translation>Properties-Dateien (*.ini)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="674"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="661"/>
         <source>Configuration Files (*.cfg)</source>
         <translation>Konfigurationsdateien (*.cfg)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="680"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="667"/>
         <source>CMake Files (CMakeLists.txt)</source>
         <translation>CMake-Dateien (CMakeLists.txt)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="683"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="670"/>
         <source>CMake Macro Files (*.cmake)</source>
         <translation>CMake-Makrodateien (*.cmake)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="686"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="673"/>
         <source>VHDL Files (*.vhd)</source>
         <translation>VHDL-Dateien (*.vhd)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="689"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="676"/>
         <source>TCL Files (*.tcl)</source>
         <translation>TCL-Dateien (*.tcl)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="692"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="679"/>
         <source>Tk Files (*.tk)</source>
         <translation>Tk-Dateien (*.tk)</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="102"/>
+        <source>Fortran</source>
+        <translation>Fortran</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="104"/>
-        <source>Fortran</source>
-        <translation>Fortran</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="106"/>
         <source>Fortran77</source>
         <translation>Fortran77</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="124"/>
-        <source>Pascal</source>
-        <translation>Pascal</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="487"/>
-        <source>Fortran Files (*.f90 *.f95 *.f2k)</source>
-        <translation>Fortran-Dateien (*.f90 *.f95 *.f2k)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="490"/>
-        <source>Fortran77 Files (*.f *.for)</source>
-        <translation>Fortran77-Dateien (*.f *.for)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="493"/>
-        <source>Pascal Files (*.dpr *.dpk *.pas *.dfm *.inc *.pp)</source>
-        <translation>Pascal-Dateien (*.dpr *.dpk *.pas *.dfm *.inc *.pp)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="695"/>
-        <source>Fortran Files (*.f95)</source>
-        <translation>Fortran-Dateien (*.f95)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="698"/>
-        <source>Fortran77 Files (*.f)</source>
-        <translation>Fortran77-Dateien (*.f)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="701"/>
-        <source>Pascal Files (*.pas)</source>
-        <translation>Pascal-Dateien (*.pas)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="128"/>
-        <source>PostScript</source>
-        <translation>PostScript</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="153"/>
-        <source>XML</source>
-        <translation>XML</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="155"/>
-        <source>YAML</source>
-        <translation>YAML</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="429"/>
-        <source>XML Files (*.xml *.xsl *.xslt *.dtd *.svg *.xul *.xsd)</source>
-        <translation>XML-Dateien (*.xml *.xsl *.xslt *.dtd *.svg *.xul *.xsd)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="704"/>
-        <source>PostScript Files (*.ps)</source>
-        <translation>PostScript-Dateien (*.ps)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="499"/>
-        <source>YAML Files (*.yaml *.yml)</source>
-        <translation>YAML-Dateien (*.yaml *.yml)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="707"/>
-        <source>YAML Files (*.yml)</source>
-        <translation>YAML-Dateien (*.yml)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="183"/>
-        <source>Pygments</source>
-        <translation>Pygments</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="560"/>
-        <source>Python3 Files (*.py)</source>
-        <translation>Python 3-Dateien (*.py)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="563"/>
-        <source>Python3 GUI Files (*.pyw)</source>
-        <translation>Python 3-GUI-Dateien (*.pyw)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="137"/>
-        <source>Python3</source>
-        <translation>Python 3</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="120"/>
-        <source>Matlab</source>
-        <translation>Matlab</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="122"/>
+        <source>Pascal</source>
+        <translation>Pascal</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="477"/>
+        <source>Fortran Files (*.f90 *.f95 *.f2k)</source>
+        <translation>Fortran-Dateien (*.f90 *.f95 *.f2k)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="480"/>
+        <source>Fortran77 Files (*.f *.for)</source>
+        <translation>Fortran77-Dateien (*.f *.for)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="483"/>
+        <source>Pascal Files (*.dpr *.dpk *.pas *.dfm *.inc *.pp)</source>
+        <translation>Pascal-Dateien (*.dpr *.dpk *.pas *.dfm *.inc *.pp)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="682"/>
+        <source>Fortran Files (*.f95)</source>
+        <translation>Fortran-Dateien (*.f95)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="685"/>
+        <source>Fortran77 Files (*.f)</source>
+        <translation>Fortran77-Dateien (*.f)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="688"/>
+        <source>Pascal Files (*.pas)</source>
+        <translation>Pascal-Dateien (*.pas)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="126"/>
+        <source>PostScript</source>
+        <translation>PostScript</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="151"/>
+        <source>XML</source>
+        <translation>XML</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="153"/>
+        <source>YAML</source>
+        <translation>YAML</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="419"/>
+        <source>XML Files (*.xml *.xsl *.xslt *.dtd *.svg *.xul *.xsd)</source>
+        <translation>XML-Dateien (*.xml *.xsl *.xslt *.dtd *.svg *.xul *.xsd)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="691"/>
+        <source>PostScript Files (*.ps)</source>
+        <translation>PostScript-Dateien (*.ps)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="489"/>
+        <source>YAML Files (*.yaml *.yml)</source>
+        <translation>YAML-Dateien (*.yaml *.yml)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="694"/>
+        <source>YAML Files (*.yml)</source>
+        <translation>YAML-Dateien (*.yml)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="173"/>
+        <source>Pygments</source>
+        <translation>Pygments</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="547"/>
+        <source>Python3 Files (*.py)</source>
+        <translation>Python 3-Dateien (*.py)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="550"/>
+        <source>Python3 GUI Files (*.pyw)</source>
+        <translation>Python 3-GUI-Dateien (*.pyw)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="135"/>
+        <source>Python3</source>
+        <translation>Python 3</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="118"/>
+        <source>Matlab</source>
+        <translation>Matlab</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="120"/>
         <source>Octave</source>
         <translation>Octave</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="502"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="495"/>
         <source>Matlab Files (*.m *.m.matlab)</source>
         <translation>Matlab-Dateien (*.m *.m.matlab)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="710"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="700"/>
         <source>Matlab Files (*.m)</source>
         <translation>Matlab-Dateien (*.m)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="713"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="703"/>
         <source>Octave Files (*.m.octave)</source>
         <translation>Octave-Dateien (*.m.octave)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="505"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="498"/>
         <source>Octave Files (*.m *.m.octave)</source>
         <translation>Octave-Dateien (*.m *.m.octave)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="141"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="139"/>
         <source>QSS</source>
         <translation>QSS</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="155"/>
+        <source>Gettext</source>
+        <translation>Gettext</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="706"/>
+        <source>Gettext Files (*.po)</source>
+        <translation>Gettext-Dateien (*.po)</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="157"/>
-        <source>Gettext</source>
-        <translation>Gettext</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="716"/>
-        <source>Gettext Files (*.po)</source>
-        <translation>Gettext-Dateien (*.po)</translation>
+        <source>CoffeeScript</source>
+        <translation>CoffeeScript</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="709"/>
+        <source>CoffeeScript Files (*.coffee)</source>
+        <translation>CoffeeScript Dateien (*.coffee)</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="159"/>
-        <source>CoffeeScript</source>
-        <translation>CoffeeScript</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="719"/>
-        <source>CoffeeScript Files (*.coffee)</source>
-        <translation>CoffeeScript Dateien (*.coffee)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="165"/>
         <source>JSON</source>
         <translation>JSON</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="725"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="712"/>
         <source>JSON Files (*.json)</source>
         <translation>JSON-Dateien (*.json)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="170"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="161"/>
         <source>Markdown</source>
         <translation>Markdown</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="730"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="715"/>
         <source>Markdown Files (*.md)</source>
         <translation>Markdown Dateien (*.md)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="134"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="132"/>
         <source>Protocol (protobuf)</source>
         <translation>Protokoll (protobuf)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="584"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="571"/>
         <source>Protocol Files (*.proto)</source>
         <translation>Protokolldateien (*.proto)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="98"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="96"/>
         <source>Cython</source>
         <translation>Cython</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="393"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="383"/>
         <source>Cython Files (*.pyx *.pxd *.pxi)</source>
         <translation>Cython-Dateien (*.pyx *.pxd *.pxi)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="566"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="553"/>
         <source>Cython Files (*.pyx)</source>
         <translation>Cython Dateien (*.pyx)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="569"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="556"/>
         <source>Cython Declaration Files (*.pxd)</source>
         <translation>Cython Deklarionsdateien (*.pxd)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="572"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="559"/>
         <source>Cython Include Files (*.pxi)</source>
         <translation>Cython Includedateien (*.pxi)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="139"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="137"/>
         <source>MicroPython</source>
         <translation>MicroPython</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="387"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="377"/>
         <source>Python Files (*.py *.py3)</source>
         <translation>Python-Dateien (*.py *.py3)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="390"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="380"/>
         <source>Python GUI Files (*.pyw *.pyw3)</source>
         <translation>Python-GUI-Dateien (*.pyw *.pyw3)</translation>
     </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="697"/>
+        <source>TOML Files (*.toml)</source>
+        <translation>TOML Dateien (*.toml)</translation>
+    </message>
 </context>
 <context>
     <name>LfConvertDataDialog</name>
@@ -44450,24 +44455,24 @@
 <context>
     <name>MicrosoftEngine</name>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="187"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="190"/>
         <source>You have not registered for the Microsoft Translation service.</source>
         <translation>Sie haben sich nicht für den Microsoft Übersetzungsdienst registriert.</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="193"/>
-        <source>No valid access token available.</source>
-        <translation>Kein gültiges Zugriffstoken verfügbar.</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="170"/>
-        <source>No translation available.</source>
-        <translation>Keine Übersetzungen verfügbar.</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="205"/>
-        <source>No Text-to-Speech for the selected language available.</source>
-        <translation>Keine Vorlesedaten für die ausgewählte Sprache verfügbar.</translation>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="196"/>
+        <source>MS Translator: No valid access token available.</source>
+        <translation>MS Translator: Kein gültiges Zugriffstoken verfügbar.</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="173"/>
+        <source>MS Translator: No translation available.</source>
+        <translation>MS Translator: Keine Übersetzungen verfügbar.</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="211"/>
+        <source>MS Translator: No Text-to-Speech for the selected language available.</source>
+        <translation>MS Translator: Keine Vorlesedaten für die ausgewählte Sprache verfügbar.</translation>
     </message>
 </context>
 <context>
@@ -44816,173 +44821,173 @@
         <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="2176"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2175"/>
         <source>About</source>
         <translation>Über</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2176"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2175"/>
         <source>&amp;About</source>
         <translation>&amp;Über</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2180"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2179"/>
         <source>Display information about this software</source>
         <translation>Zeigt Informationen zu diesem Programm an</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2182"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2181"/>
         <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="2188"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2187"/>
         <source>About Qt</source>
         <translation>Über Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2188"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2187"/>
         <source>About &amp;Qt</source>
         <translation>Über &amp;Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2192"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2191"/>
         <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="2194"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2193"/>
         <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="2224"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2223"/>
         <source>&amp;File</source>
         <translation>&amp;Datei</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2236"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2235"/>
         <source>&amp;Edit</source>
         <translation>&amp;Bearbeiten</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2256"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2255"/>
         <source>&amp;Help</source>
         <translation>&amp;Hilfe</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2318"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2317"/>
         <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="2325"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2324"/>
         <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="2330"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2329"/>
         <source>Ready</source>
         <translation>Bereit</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2415"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2414"/>
         <source>File loaded</source>
         <translation>Datei geladen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2851"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2849"/>
         <source>Untitled</source>
         <translation>Unbenannt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2533"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2532"/>
         <source>{0}[*] - {1}</source>
         <translation>{0} [*] – {1}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2533"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2532"/>
         <source>Mini Editor</source>
         <translation>Mini Editor</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2892"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2890"/>
         <source>Select all</source>
         <translation>Alles auswählen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2893"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2891"/>
         <source>Deselect all</source>
         <translation>Auswahl aufheben</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2907"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2905"/>
         <source>Languages</source>
         <translation>Sprachen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2910"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2908"/>
         <source>No Language</source>
         <translation>Keine Sprache</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2386"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2385"/>
         <source>Open File</source>
         <translation>Datei öffnen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2504"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2503"/>
         <source>File saved</source>
         <translation>Datei gespeichert</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2311"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2310"/>
         <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="2201"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2200"/>
         <source>What&apos;s This?</source>
         <translation>Was ist das?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2201"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2200"/>
         <source>&amp;What&apos;s This?</source>
         <translation>&amp;Was ist das?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2201"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2200"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation>Shift+F1</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2207"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2206"/>
         <source>Context sensitive help</source>
         <translation>Kontextsensitive Hilfe</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2208"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2207"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Zeige kontextsensitive Hilfe an&lt;b&gt;&lt;/p&gt;Im „Was ist das?“-Modus (der Mauszeiger stellt einen Pfeil mit Fragezeichen dar) wird auf einen Mausklick eine kurze Hilfebeschreibung zu dem ausgewählten MMI-Element angezeigt. In Dialogen kann diese Funktionalität durch den entsprechenden Knopf im Fensterkopf erreicht werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2268"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2267"/>
         <source>File</source>
         <translation>Datei</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2281"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2280"/>
         <source>Edit</source>
         <translation>Bearbeiten</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2291"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2290"/>
         <source>Find</source>
         <translation>Suchen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2298"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2297"/>
         <source>Help</source>
         <translation>Hilfe</translation>
     </message>
@@ -45008,22 +45013,22 @@
         <translation>Druckt die aktuelle Datei</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2814"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2812"/>
         <source>Printing...</source>
         <translation>Drucke...</translation>
     </message>
     <message>
+        <location filename="../QScintilla/MiniEditor.py" line="2830"/>
+        <source>Printing completed</source>
+        <translation>Drucken beendet</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/MiniEditor.py" line="2832"/>
-        <source>Printing completed</source>
-        <translation>Drucken beendet</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2834"/>
         <source>Error while printing</source>
         <translation>Fehler beim Drucken</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2837"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2835"/>
         <source>Printing aborted</source>
         <translation>Drucken abgebrochen</translation>
     </message>
@@ -45048,27 +45053,27 @@
         <translation>&lt;b&gt;Druckvorschau&lt;/b&gt;&lt;p&gt;Zeift eine Druckvorschau der aktuellen Datei.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2934"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2932"/>
         <source>Guessed</source>
         <translation>Ermittelt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2956"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2954"/>
         <source>Alternatives</source>
         <translation>Alternativen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2952"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2950"/>
         <source>Alternatives ({0})</source>
         <translation>Alternativen ({0})</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2972"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2970"/>
         <source>Pygments Lexer</source>
         <translation>Pygments Lexer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2972"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2970"/>
         <source>Select the Pygments lexer to apply.</source>
         <translation>Wähle den anzuwendenden Pygments Lexer.</translation>
     </message>
@@ -45083,22 +45088,22 @@
         <translation>Pos: {0:5}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2386"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2385"/>
         <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="2496"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2495"/>
         <source>Save File</source>
         <translation>Datei speichern</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2496"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2495"/>
         <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="2357"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2356"/>
         <source>The document has unsaved changes.</source>
         <translation>Das Dokument hat ungesicherte Änderungen.</translation>
     </message>
@@ -45113,7 +45118,7 @@
         <translation>Der eric6-Mini-Editor ist eine Editorkomponente, die auf QScintilla basiert. Sie kann für einfachere Editieraufgaben, die keinen ausgewachsenen Editor benötigen, verwendet werden.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2357"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2356"/>
         <source>eric6 Mini Editor</source>
         <translation>eric6 Mini Editor</translation>
     </message>
@@ -45138,17 +45143,17 @@
         <translation>&lt;b&gt;Kopie speichern&lt;/b&gt;&lt;p&gt;Speichern einer Kopie des Inhalts des aktuellen Editorfensters. Die Datei kann mit einem Dateiauswahldialog eingegeben werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3490"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3488"/>
         <source>EditorConfig Properties</source>
         <translation>EditorConfig Eigenschaften</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3490"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3488"/>
         <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>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2516"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2515"/>
         <source>[*] - {0}</source>
         <translation>[*] - {0}</translation>
     </message>
@@ -45156,469 +45161,469 @@
 <context>
     <name>MiscellaneousChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="492"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="490"/>
         <source>coding magic comment not found</source>
         <translation>Kodierungskommentar nicht gefunden</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="495"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="493"/>
         <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/translations.py" line="498"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="496"/>
         <source>copyright notice not present</source>
         <translation>Copyrightvermerk nicht gefunden</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="501"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="499"/>
         <source>copyright notice contains invalid author</source>
         <translation>Copyrightvermerk enthält ungültigen Autor</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="702"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="700"/>
         <source>found {0} formatter</source>
         <translation>{0} Format gefunden</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="705"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="703"/>
         <source>format string does contain unindexed parameters</source>
         <translation>Formatstring enthält nicht indizierte Parameter</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="708"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="706"/>
         <source>docstring does contain unindexed parameters</source>
         <translation>Dokumentationsstring enthält nicht indizierte Parameter</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="711"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="709"/>
         <source>other string does contain unindexed parameters</source>
         <translation>Anderer String enthält nicht indizierte Parameter</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="714"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="712"/>
         <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/translations.py" line="717"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="715"/>
         <source>format call uses missing keyword ({0})</source>
         <translation>Format Aufruf verwendet fehlendes Schlüsselwort ({0})</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="720"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="718"/>
         <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/translations.py" line="723"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="721"/>
         <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/translations.py" line="726"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="724"/>
         <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/translations.py" line="729"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="727"/>
         <source>format call provides unused index ({0})</source>
         <translation>Format Aufruf verwendet ungenutzten Index ({0})</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="732"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="730"/>
         <source>format call provides unused keyword ({0})</source>
         <translation>Format Aufruf verwendet ungenutztes Schlüsselwort ({0})</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="751"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="749"/>
         <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/translations.py" line="754"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="752"/>
         <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/translations.py" line="761"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="759"/>
         <source>print statement found</source>
         <translation>print Statement gefunden</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="764"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="762"/>
         <source>one element tuple found</source>
         <translation>Tuple mit einem Element gefunden</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="800"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="798"/>
         <source>{0}: {1}</source>
         <translation>{0}: {1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="504"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="502"/>
         <source>&quot;{0}&quot; is a Python builtin and is being shadowed; consider renaming the variable</source>
         <translation>&quot;{0}&quot; ist ein Python Builtin und wird verdeckt; die Variable sollte umbenannt werden</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="508"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="506"/>
         <source>&quot;{0}&quot; is used as an argument and thus shadows a Python builtin; consider renaming the argument</source>
         <translation>&quot;{0}&quot; wird als Parameter verwendet und verdeckt ein Python Builtin; der Parameter sollte umbenannt werden</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="512"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="510"/>
         <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/translations.py" line="515"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="513"/>
         <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/translations.py" line="518"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="516"/>
         <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/translations.py" line="521"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="519"/>
         <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/translations.py" line="524"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="522"/>
         <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/translations.py" line="530"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="528"/>
         <source>unnecessary list comprehension - &quot;{0}&quot; can take a generator</source>
         <translation>unnötige List Comprehension - &quot;{0}&quot; kann einen Generator verwenden</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="770"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="768"/>
         <source>mutable default argument of type {0}</source>
         <translation>veränderbares Standardargument des Typs {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="555"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="553"/>
         <source>sort keys - &apos;{0}&apos; should be before &apos;{1}&apos;</source>
         <translation>Schlüssel sortieren - &apos;{0}&apos; sollte vor &apos;{1}&apos; kommen</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="738"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="736"/>
         <source>logging statement uses &apos;%&apos;</source>
         <translation>Loggingbefehl verwendet &apos;%&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="744"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="742"/>
         <source>logging statement uses f-string</source>
         <translation>Loggingbefehl verwendet &apos;f-string&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="747"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="745"/>
         <source>logging statement uses &apos;warn&apos; instead of &apos;warning&apos;</source>
         <translation>Loggingbefehl verwendet &apos;warn&apos; anstelle &apos;warning&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="735"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="733"/>
         <source>logging statement uses string.format()</source>
         <translation>Loggingbefehl verwendet &apos;string.format()&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="741"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="739"/>
         <source>logging statement uses &apos;+&apos;</source>
         <translation>Loggingbefehl verwendet &apos;+&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="757"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="755"/>
         <source>gettext import with alias _ found: {0}</source>
         <translation>gettext Import mit Alias _ entdeckt: {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="648"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="646"/>
         <source>Python does not support the unary prefix increment</source>
         <translation>Python unterstützt kein &apos;Unary Prefix Increment&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="657"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="655"/>
         <source>&apos;sys.maxint&apos; is not defined in Python 3 - use &apos;sys.maxsize&apos;</source>
         <translation>&apos;sys.maxint&apos; ist in Python 3 nicht definiert - verwende &apos;sys.maxsize&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="660"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="658"/>
         <source>&apos;BaseException.message&apos; has been deprecated as of Python 2.6 and is removed in Python 3 - use &apos;str(e)&apos;</source>
         <translation>&apos;BaseException.message&apos; wurde mit Python 2.6 als überholt markiert und in Python 3 entfernt - verwende &apos;str(e)&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="664"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="662"/>
         <source>assigning to &apos;os.environ&apos; does not clear the environment - use &apos;os.environ.clear()&apos;</source>
         <translation>Zuweisungen an &apos;os.environ&apos; löschen nicht die Umgebungsvariablen - verwende &apos;os.environ.clear()&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="688"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="686"/>
         <source>Python 3 does not include &apos;.iter*&apos; methods on dictionaries</source>
         <translation>Python 3 enthält keine &apos;.iter*&apos; Methoden für Dictionaries</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="691"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="689"/>
         <source>Python 3 does not include &apos;.view*&apos; methods on dictionaries</source>
         <translation>Python 3 enthält keine &apos;.view*&apos; Methoden für Dictionaries</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="694"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="692"/>
         <source>&apos;.next()&apos; does not exist in Python 3</source>
         <translation>&apos;.next()&apos; existiert in Python 3 nicht</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="697"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="695"/>
         <source>&apos;__metaclass__&apos; does nothing on Python 3 - use &apos;class MyClass(BaseClass, metaclass=...)&apos;</source>
         <translation>&apos;__metaclass__&apos; tut nichts in Python 3 - verwende &apos;class MyClass(BaseClass, metaclass=...)&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="773"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="771"/>
         <source>mutable default argument of function call &apos;{0}&apos;</source>
         <translation>Funktionsaufruf &apos;{0}&apos; als veränderbares Standardargument</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="651"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="649"/>
         <source>using .strip() with multi-character strings is misleading</source>
         <translation>Verwendung von .strip() mit Zeichenketten mit mehreren Zeichen ist missverständlich</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="678"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="676"/>
         <source>using &apos;hasattr(x, &quot;__call__&quot;)&apos; to test if &apos;x&apos; is callable is unreliable</source>
         <translation>Verwendung von &apos;hasattr(x, &quot;__call__&quot;)&apos; zum Test, ob &apos;x&apos; aufrufbar ist, ist unzuverlässig</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="668"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="666"/>
         <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/translations.py" line="776"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="774"/>
         <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/translations.py" line="780"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="778"/>
         <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/translations.py" line="784"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="782"/>
         <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/translations.py" line="788"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="786"/>
         <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/translations.py" line="654"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="652"/>
         <source>do not call assert False since python -O removes these calls</source>
         <translation>verwende nicht &apos;assert False&apos;, da python -O dies entfernt</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="672"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="670"/>
         <source>unncessary f-string</source>
         <translation>unnötige f-Zeichenkette</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="675"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="673"/>
         <source>cannot use &apos;self.__class__&apos; as first argument of &apos;super()&apos; call</source>
         <translation>als erstes Argument von &apos;super()&apos; kann nicht &apos;self.__class__&apos; verwendet werden</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="682"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="680"/>
         <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/translations.py" line="685"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="683"/>
         <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/translations.py" line="796"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="794"/>
         <source>commented code lines should be removed</source>
         <translation>auskommentierte Codezeilen sollten entfernt werden</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="792"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="790"/>
         <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/translations.py" line="559"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="557"/>
         <source>use of &apos;datetime.datetime()&apos; without &apos;tzinfo&apos; argument should be avoided</source>
         <translation>Verwendung von &apos;datetime.datetime()&apos; ohne &apos;tzinfo&apos; Argument sollte vermieden werden</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="563"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="561"/>
         <source>use of &apos;datetime.datetime.today()&apos; should be avoided.
 Use &apos;datetime.datetime.now(tz=)&apos; instead.</source>
         <translation>Verwendung von &apos;datetime.datetime.today()&apos; sollte vermieden werden
 Verwende &apos;datetime.datetime.now(tz=)&apos;.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="567"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="565"/>
         <source>use of &apos;datetime.datetime.utcnow()&apos; should be avoided.
 Use &apos;datetime.datetime.now(tz=)&apos; instead.</source>
         <translation>Verwendung von &apos;datetime.datetime.utcnow()&apos; sollte vermieden werden
 Verwende &apos;datetime.datetime.now(tz=)&apos;.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="571"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="569"/>
         <source>use of &apos;datetime.datetime.utcfromtimestamp()&apos; should be avoided.
 Use &apos;datetime.datetime.fromtimestamp(, tz=)&apos; instead.</source>
         <translation>Verwendung von &apos;datetime.datetime.utcfromtimestamp()&apos; sollte vermieden werden
 Verwende &apos;datetime.datetime.fromtimestamp(, tz=)&apos;.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="575"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="573"/>
         <source>use of &apos;datetime.datetime.now()&apos; without &apos;tz&apos; argument should be avoided</source>
         <translation>Verwendung von &apos;datetime.datetime.now()&apos; ohne &apos;tz&apos; Argument sollte vermieden werden</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="579"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="577"/>
         <source>use of &apos;datetime.datetime.fromtimestamp()&apos; without &apos;tz&apos; argument should be avoided</source>
         <translation>Verwendung von &apos;datetime.datetime.fromtimestamp()&apos; ohne &apos;tz&apos; Argument sollte vermieden werden</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="583"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="581"/>
         <source>use of &apos;datetime.datetime.strptime()&apos; should be followed by &apos;.replace(tzinfo=)&apos;</source>
         <translation>Verwendung von datetime.datetime.strptime()&apos; sollte mit &apos;.replace(tzinfo=)&apos; erweitert werden</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="590"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="588"/>
         <source>use of &apos;datetime.date()&apos; should be avoided.
 Use &apos;datetime.datetime(, tzinfo=).date()&apos; instead.</source>
         <translation>Verwendung von &apos;datetime.date()&apos; sollte vermieden werden
 Verwende &apos;datetime.datetime(, tzinfo=).date()&apos;.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="594"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="592"/>
         <source>use of &apos;datetime.date.today()&apos; should be avoided.
 Use &apos;datetime.datetime.now(tz=).date()&apos; instead.</source>
         <translation>Verwendung von &apos;datetime.date.today()&apos; sollte vermieden werden
 Verwende &apos;datetime.datetime.now(tz=).date()&apos;.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="598"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="596"/>
         <source>use of &apos;datetime.date.fromtimestamp()&apos; should be avoided.
 Use &apos;datetime.datetime.fromtimestamp(tz=).date()&apos; instead.</source>
         <translation>Verwendung von &apos;datetime.date.fromtimestamp()&apos; sollte vermieden werden
 Verwende &apos;datetime.datetime.fromtimestamp(tz=).date()&apos;.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="608"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="606"/>
         <source>use of &apos;datetime.time()&apos; without &apos;tzinfo&apos; argument should be avoided</source>
         <translation>Verwendung von &apos;datetime.time()&apos; ohne &apos;tzinfo&apos; Argument sollte vermieden werden</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="587"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="585"/>
         <source>use of &apos;datetime.datetime.fromordinal()&apos; should be avoided</source>
         <translation>Verwendung von &apos;datetime.datetime.fromordinal()&apos; sollte vermieden werden</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="602"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="600"/>
         <source>use of &apos;datetime.date.fromordinal()&apos; should be avoided</source>
         <translation>Verwendung von &apos;datetime.date.fromordinal()&apos; sollte vermieden werden</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="605"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="603"/>
         <source>use of &apos;datetime.date.fromisoformat()&apos; should be avoided</source>
         <translation>Verwendung von &apos;datetime.date.fromisoformat()&apos; sollte vermieden werden</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="527"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="525"/>
         <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/translations.py" line="533"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="531"/>
         <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/translations.py" line="536"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="534"/>
         <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/translations.py" line="539"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="537"/>
         <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/translations.py" line="542"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="540"/>
         <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/translations.py" line="545"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="543"/>
         <source>unnecessary list comprehension - &quot;in&quot; can take a generator</source>
         <translation>unnötige List Comprehension - &quot;in&quot; kann einen Generator verwenden</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="548"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="546"/>
         <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/translations.py" line="551"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="549"/>
         <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/translations.py" line="613"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="611"/>
         <source>&apos;sys.version[:3]&apos; referenced (Python 3.10), use &apos;sys.version_info&apos;</source>
         <translation>&apos;sys.version[:3]&apos; referenziert (Python 3.10), verwende &apos;sys.version_info&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="616"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="614"/>
         <source>&apos;sys.version[2]&apos; referenced (Python 3.10), use &apos;sys.version_info&apos;</source>
         <translation>&apos;sys.version[2]&apos; referenziert (Python 3.10), verwende &apos;sys.version_info&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="619"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="617"/>
         <source>&apos;sys.version&apos; compared to string (Python 3.10), use &apos;sys.version_info&apos;</source>
         <translation>&apos;sys.version&apos; verglichen mit Zeichenkette (Python 3.10), verwende &apos;sys.version_info&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="623"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="621"/>
         <source>&apos;sys.version_info[0] == 3&apos; referenced (Python 4), use &apos;&gt;=&apos;</source>
         <translation>&apos;sys.version_info[0] == 3&apos; referenziert (Python 4), verwende &apos;&gt;=&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="626"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="624"/>
         <source>&apos;six.PY3&apos; referenced (Python 4), use &apos;not six.PY2&apos;</source>
         <translation>&apos;six.PY3&apos; referenziert (Python 4), verwende &apos;not six.PY2&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="629"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="627"/>
         <source>&apos;sys.version_info[1]&apos; compared to integer (Python 4), compare &apos;sys.version_info&apos; to tuple</source>
         <translation>&apos;sys.version_info[1]&apos; verglichen mit einem Integer (Python 4), vergleiche &apos;sys.version_info&apos; mit einem Tuple</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="633"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="631"/>
         <source>&apos;sys.version_info.minor&apos; compared to integer (Python 4), compare &apos;sys.version_info&apos; to tuple</source>
         <translation>&apos;sys.version_info.minor&apos; verglichen mit einem Integer (Python 4), vergleiche &apos;sys.version_info&apos; mit einem Tuple</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="637"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="635"/>
         <source>&apos;sys.version[0]&apos; referenced (Python 10), use &apos;sys.version_info&apos;</source>
         <translation>&apos;sys.version[0]&apos; referenziert (Python 10), verwende &apos;sys.version_info&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="640"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="638"/>
         <source>&apos;sys.version&apos; compared to string (Python 10), use &apos;sys.version_info&apos;</source>
         <translation>&apos;sys.version&apos; verglichen mit Zeichenkette (Python 10), verwende &apos;sys.version_info&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="644"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="642"/>
         <source>&apos;sys.version[:1]&apos; referenced (Python 10), use &apos;sys.version_info&apos;</source>
         <translation>&apos;sys.version[:1]&apos; referenziert (Python 10), verwende &apos;sys.version_info&apos;</translation>
     </message>
@@ -46062,84 +46067,84 @@
     <name>MyMemoryEngine</name>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MyMemoryEngine.py" line="72"/>
-        <source>Only texts up to {0} characters are allowed.</source>
-        <translation>Es sind nur Texte bis zu {0} Zeichen erlaubt.</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MyMemoryEngine.py" line="95"/>
-        <source>Invalid response received</source>
-        <translation>Ungültige Antwort empfangen</translation>
+        <source>MyMemory: Only texts up to {0} characters are allowed.</source>
+        <translation>MyMemory: Es sind nur Texte bis zu {0} Zeichen erlaubt.</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MyMemoryEngine.py" line="99"/>
+        <source>MyMemory: Invalid response received</source>
+        <translation>MyMemory: Ungültige Antwort empfangen</translation>
     </message>
 </context>
 <context>
     <name>NamingStyleChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="432"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="430"/>
         <source>class names should use CapWords convention</source>
         <translation>Klassennamen sollten die &apos;CapWords&apos; Konvention verwenden</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="435"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="433"/>
         <source>function name should be lowercase</source>
         <translation>Funktionsname sollte klein geschrieben sein</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="438"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="436"/>
         <source>argument name should be lowercase</source>
         <translation>Argumentname sollte klein geschrieben sein</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="441"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="439"/>
         <source>first argument of a class method should be named &apos;cls&apos;</source>
         <translation>Das erste Argument einer Klassenmethode sollte &apos;cls&apos; sein</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="444"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="442"/>
         <source>first argument of a method should be named &apos;self&apos;</source>
         <translation>Das erste Argument einer Methode sollte &apos;self&apos; sein</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="447"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="445"/>
         <source>first argument of a static method should not be named &apos;self&apos; or &apos;cls</source>
         <translation>Das erste Argument einer statischen Methode sollte nicht &apos;self&apos; oder &apos;cls&apos; sein</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="451"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="449"/>
         <source>module names should be lowercase</source>
         <translation>Modulnamen sollten klein geschrieben sein</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="454"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="452"/>
         <source>package names should be lowercase</source>
         <translation>Paketnamen sollten klein geschrieben sein</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="457"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="455"/>
         <source>constant imported as non constant</source>
         <translation>Konstante als Nicht-Konstante importiert</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="460"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="458"/>
         <source>lowercase imported as non lowercase</source>
         <translation>klein geschriebener Bezeichner als nicht klein geschriebener importiert</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="463"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="461"/>
         <source>camelcase imported as lowercase</source>
         <translation>groß/klein geschriebener Bezeichner als klein geschriebener importiert</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="466"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="464"/>
         <source>camelcase imported as constant</source>
         <translation>groß/klein geschriebener Bezeichner als Konstante importiert</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="469"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="467"/>
         <source>variable in function should be lowercase</source>
         <translation>Variablen in Funktionen sollte klein geschrieben sein</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="472"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="470"/>
         <source>names &apos;l&apos;, &apos;O&apos; and &apos;I&apos; should be avoided</source>
         <translation>Namen &apos;l&apos;, &apos;O&apos; und &apos;I&apos; sollten vermieden werden</translation>
     </message>
@@ -53176,13 +53181,13 @@
     <name>PromtEngine</name>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/PromtEngine.py" line="97"/>
-        <source>Invalid response received</source>
-        <translation>Ungültige Antwort empfangen</translation>
+        <source>Promt: Invalid response received</source>
+        <translation>Promt: Ungültige Antwort empfangen</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/PromtEngine.py" line="106"/>
-        <source>This direction of translation is not available.</source>
-        <translation>Diese Übersetzungsrichtung ist nicht verfügbar.</translation>
+        <source>Promt: This direction of translation is not available.</source>
+        <translation>Promt: Diese Übersetzungsrichtung ist nicht verfügbar.</translation>
     </message>
 </context>
 <context>
@@ -55439,7 +55444,7 @@
         <translation>Alle einklappen</translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="694"/>
+        <location filename="../UI/PythonDisViewer.py" line="696"/>
         <source>Code Object &apos;{0}&apos;</source>
         <translation>Codeobjekt &apos;{0}&apos;</translation>
     </message>
@@ -55449,22 +55454,22 @@
         <translation>Disassembly</translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="450"/>
+        <location filename="../UI/PythonDisViewer.py" line="452"/>
         <source>No editor has been opened.</source>
         <translation>Es wurde kein Editor geöffnet.</translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="462"/>
+        <location filename="../UI/PythonDisViewer.py" line="464"/>
         <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/PythonDisViewer.py" line="468"/>
+        <location filename="../UI/PythonDisViewer.py" line="470"/>
         <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/PythonDisViewer.py" line="517"/>
+        <location filename="../UI/PythonDisViewer.py" line="519"/>
         <source>Disassembly of last traceback</source>
         <translation>Disassembly der letzten Ausnahme</translation>
     </message>
@@ -55494,72 +55499,72 @@
         <translation>Ausblenden</translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="809"/>
+        <location filename="../UI/PythonDisViewer.py" line="811"/>
         <source>Name</source>
         <translation>Name</translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="811"/>
-        <source>Filename</source>
-        <translation>Dateiname</translation>
-    </message>
-    <message>
         <location filename="../UI/PythonDisViewer.py" line="813"/>
-        <source>First Line</source>
-        <translation>Erste Zeile</translation>
+        <source>Filename</source>
+        <translation>Dateiname</translation>
     </message>
     <message>
         <location filename="../UI/PythonDisViewer.py" line="815"/>
-        <source>Argument Count</source>
-        <translation>Anzahl Argumente</translation>
+        <source>First Line</source>
+        <translation>Erste Zeile</translation>
     </message>
     <message>
         <location filename="../UI/PythonDisViewer.py" line="817"/>
+        <source>Argument Count</source>
+        <translation>Anzahl Argumente</translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="819"/>
         <source>Positional-only Arguments</source>
         <translation>Positional-only Argumente</translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="823"/>
-        <source>Number of Locals</source>
-        <translation>Anzahle lokaler Variablen</translation>
-    </message>
-    <message>
         <location filename="../UI/PythonDisViewer.py" line="825"/>
-        <source>Stack Size</source>
-        <translation>Stackgröße</translation>
+        <source>Number of Locals</source>
+        <translation>Anzahle lokaler Variablen</translation>
     </message>
     <message>
         <location filename="../UI/PythonDisViewer.py" line="827"/>
+        <source>Stack Size</source>
+        <translation>Stackgröße</translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="829"/>
         <source>Flags</source>
         <translation>Flags</translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="830"/>
+        <location filename="../UI/PythonDisViewer.py" line="832"/>
         <source>Constants</source>
         <translation>Konstanten</translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="833"/>
+        <location filename="../UI/PythonDisViewer.py" line="835"/>
         <source>Names</source>
         <translation>Namen</translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="836"/>
+        <location filename="../UI/PythonDisViewer.py" line="838"/>
         <source>Variable Names</source>
         <translation>Namen von Variablen</translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="839"/>
+        <location filename="../UI/PythonDisViewer.py" line="841"/>
         <source>Free Variables</source>
         <translation>Freie Variable</translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="842"/>
+        <location filename="../UI/PythonDisViewer.py" line="844"/>
         <source>Cell Variables</source>
         <translation>Zellenvariable</translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="820"/>
+        <location filename="../UI/PythonDisViewer.py" line="822"/>
         <source>Keyword-only Arguments</source>
         <translation>Keyword-only Argumente</translation>
     </message>
@@ -78306,3162 +78311,3162 @@
 <context>
     <name>ViewManager</name>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="635"/>
+        <location filename="../ViewManager/ViewManager.py" line="634"/>
         <source>New</source>
         <translation>Neu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="635"/>
+        <location filename="../ViewManager/ViewManager.py" line="634"/>
         <source>&amp;New</source>
         <translation>&amp;Neu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="643"/>
+        <location filename="../ViewManager/ViewManager.py" line="642"/>
         <source>Open an empty editor window</source>
         <translation>Öffnet ein leeres Editorfenster</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="646"/>
+        <location filename="../ViewManager/ViewManager.py" line="645"/>
         <source>&lt;b&gt;New&lt;/b&gt;&lt;p&gt;An empty editor window will be created.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Neu&lt;/b&gt;&lt;p&gt;Ein neues Editorfenster wird geöffnet.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="654"/>
+        <location filename="../ViewManager/ViewManager.py" line="653"/>
         <source>Open</source>
         <translation>Öffnen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="654"/>
+        <location filename="../ViewManager/ViewManager.py" line="653"/>
         <source>&amp;Open...</source>
         <translation>&amp;Öffnen...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="675"/>
+        <location filename="../ViewManager/ViewManager.py" line="674"/>
         <source>Close</source>
         <translation>Schließen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="675"/>
+        <location filename="../ViewManager/ViewManager.py" line="674"/>
         <source>&amp;Close</source>
         <translation>Schl&amp;ießen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="683"/>
+        <location filename="../ViewManager/ViewManager.py" line="682"/>
         <source>Close the current window</source>
         <translation>Schließt das aktuelle Fenster</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="686"/>
+        <location filename="../ViewManager/ViewManager.py" line="685"/>
         <source>&lt;b&gt;Close Window&lt;/b&gt;&lt;p&gt;Close the current window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Fenster schließen&lt;/b&gt;&lt;p&gt;Dies schließt das aktuelle Editorfenster.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="694"/>
+        <location filename="../ViewManager/ViewManager.py" line="693"/>
         <source>Close All</source>
         <translation>Alle schließen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="698"/>
+        <location filename="../ViewManager/ViewManager.py" line="697"/>
         <source>Close all editor windows</source>
         <translation>Schließt alle Editorfenster</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="701"/>
+        <location filename="../ViewManager/ViewManager.py" line="700"/>
         <source>&lt;b&gt;Close All Windows&lt;/b&gt;&lt;p&gt;Close all editor windows.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Alle Fenster schließen&lt;/b&gt;&lt;p&gt;Dies schließt alle Editorfenster.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="712"/>
         <source>Save</source>
         <translation>Speichern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="712"/>
         <source>&amp;Save</source>
         <translation>S&amp;peichern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="720"/>
+        <location filename="../ViewManager/ViewManager.py" line="719"/>
         <source>Save the current file</source>
         <translation>Speichert die aktuelle Datei</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="722"/>
+        <location filename="../ViewManager/ViewManager.py" line="721"/>
         <source>&lt;b&gt;Save File&lt;/b&gt;&lt;p&gt;Save the contents of current editor window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Datei speichern&lt;/b&gt;&lt;p&gt;Dies speichert den Inhalt des aktuellen Editorfensters.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="737"/>
+        <location filename="../ViewManager/ViewManager.py" line="736"/>
         <source>Save the current file to a new one</source>
         <translation>Speichere die aktuelle Datei unter neuem Namen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="739"/>
+        <location filename="../ViewManager/ViewManager.py" line="738"/>
         <source>&lt;b&gt;Save File as&lt;/b&gt;&lt;p&gt;Save the contents of current editor window to a new file. The file can be entered in a file selection dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Speichen unter&lt;/b&gt;&lt;p&gt;Dies speichert den Inhalt des aktuellen Editors in eine neue Datei. Die Datei kann mit einem Dateiauswahldialog eingegeben werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="769"/>
+        <location filename="../ViewManager/ViewManager.py" line="768"/>
         <source>Save all files</source>
         <translation>Alle Dateien speichern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="771"/>
+        <location filename="../ViewManager/ViewManager.py" line="770"/>
         <source>&lt;b&gt;Save All Files&lt;/b&gt;&lt;p&gt;Save the contents of all editor windows.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Alle Dateien speichern&lt;/b&gt;&lt;p&gt;Speichert den Inhalt aller Editorfenster.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="781"/>
+        <location filename="../ViewManager/ViewManager.py" line="780"/>
         <source>Print</source>
         <translation>Drucken</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="781"/>
+        <location filename="../ViewManager/ViewManager.py" line="780"/>
         <source>&amp;Print</source>
         <translation>&amp;Drucken</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="788"/>
+        <location filename="../ViewManager/ViewManager.py" line="787"/>
         <source>Print the current file</source>
         <translation>Druckt die aktuelle Datei</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="790"/>
+        <location filename="../ViewManager/ViewManager.py" line="789"/>
         <source>&lt;b&gt;Print File&lt;/b&gt;&lt;p&gt;Print the contents of current editor window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Datei drucken&lt;/b&gt;&lt;p&gt;Dies druckt den Inhalt des aktuellen Editorfensters.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="840"/>
+        <location filename="../ViewManager/ViewManager.py" line="839"/>
         <source>Open &amp;Recent Files</source>
         <translation>Zu&amp;letzt geöffnete Dateien</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="938"/>
+        <location filename="../ViewManager/ViewManager.py" line="937"/>
         <source>Undo</source>
         <translation>Rückgängig</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="938"/>
+        <location filename="../ViewManager/ViewManager.py" line="937"/>
         <source>&amp;Undo</source>
         <translation>&amp;Rückgängig</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="947"/>
+        <location filename="../ViewManager/ViewManager.py" line="946"/>
         <source>Undo the last change</source>
         <translation>Die letzte Änderung rückgängig machen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="949"/>
+        <location filename="../ViewManager/ViewManager.py" line="948"/>
         <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last change done in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rückgängig&lt;/b&gt;&lt;p&gt;Dies macht die letzte Änderung des aktuellen Editors rückgängig.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="957"/>
+        <location filename="../ViewManager/ViewManager.py" line="956"/>
         <source>Redo</source>
         <translation>Wiederherstellen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="957"/>
+        <location filename="../ViewManager/ViewManager.py" line="956"/>
         <source>&amp;Redo</source>
         <translation>Wieder&amp;herstellen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="965"/>
+        <location filename="../ViewManager/ViewManager.py" line="964"/>
         <source>Redo the last change</source>
         <translation>Die letzte Änderung wiederherstellen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="967"/>
+        <location filename="../ViewManager/ViewManager.py" line="966"/>
         <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last change done in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Wiederherstellen&lt;/b&gt;&lt;p&gt;Dies stellt die letzte Änderung des aktuellen Editors wieder her.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <source>Cut</source>
         <translation>Ausschneiden</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <source>Cu&amp;t</source>
         <translation>&amp;Ausschneiden</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1006"/>
+        <location filename="../ViewManager/ViewManager.py" line="1005"/>
         <source>Cut the selection</source>
         <translation>Schneidet die Auswahl aus</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1008"/>
+        <location filename="../ViewManager/ViewManager.py" line="1007"/>
         <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected text of the current editor to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ausschneiden&lt;/b&gt;&lt;p&gt;Dies schneidet den ausgewählten Text des aktuellen Editors aus und legt ihn in der Zwischenablage ab.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1017"/>
+        <location filename="../ViewManager/ViewManager.py" line="1016"/>
         <source>Copy</source>
         <translation>Kopieren</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1017"/>
+        <location filename="../ViewManager/ViewManager.py" line="1016"/>
         <source>&amp;Copy</source>
         <translation>&amp;Kopieren</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1026"/>
+        <location filename="../ViewManager/ViewManager.py" line="1025"/>
         <source>Copy the selection</source>
         <translation>Kopiert die Auswahl</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1028"/>
+        <location filename="../ViewManager/ViewManager.py" line="1027"/>
         <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected text of the current editor to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Kopieren&lt;/b&gt;&lt;p&gt;Dies kopiert den ausgewählten Text des aktuellen Editors in die Zwischenablage.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1037"/>
+        <location filename="../ViewManager/ViewManager.py" line="1036"/>
         <source>Paste</source>
         <translation>Einfügen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1037"/>
+        <location filename="../ViewManager/ViewManager.py" line="1036"/>
         <source>&amp;Paste</source>
         <translation>Ein&amp;fügen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1046"/>
+        <location filename="../ViewManager/ViewManager.py" line="1045"/>
         <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="1048"/>
+        <location filename="../ViewManager/ViewManager.py" line="1047"/>
         <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the last cut/copied text from the clipboard to the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Einfügen&lt;/b&gt;&lt;p&gt;Dies fügt den zuletzt ausgeschnittenen/kopierten Text aus der Zwischenablage in den aktuellen Editor ein.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1057"/>
+        <location filename="../ViewManager/ViewManager.py" line="1056"/>
         <source>Clear</source>
         <translation>Löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1065"/>
+        <location filename="../ViewManager/ViewManager.py" line="1064"/>
         <source>Clear all text</source>
         <translation>Löscht den gesamten Text</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1067"/>
+        <location filename="../ViewManager/ViewManager.py" line="1066"/>
         <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Delete all text of the current editor.&lt;/p&gt;</source>
         <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="../ViewManager/ViewManager.py" line="1092"/>
+        <location filename="../ViewManager/ViewManager.py" line="1091"/>
         <source>Indent</source>
         <translation>Einrücken</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1092"/>
+        <location filename="../ViewManager/ViewManager.py" line="1091"/>
         <source>&amp;Indent</source>
         <translation>Ei&amp;nrücken</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1100"/>
+        <location filename="../ViewManager/ViewManager.py" line="1099"/>
         <source>Indent line</source>
         <translation>Zeile einrücken</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1102"/>
+        <location filename="../ViewManager/ViewManager.py" line="1101"/>
         <source>&lt;b&gt;Indent&lt;/b&gt;&lt;p&gt;Indents the current line or the lines of the selection by one level.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Einrücken&lt;/b&gt;&lt;p&gt;Dies erhöht die Einrückung der aktuellen Zeile oder Auswahl um eine Ebene.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1111"/>
+        <location filename="../ViewManager/ViewManager.py" line="1110"/>
         <source>Unindent</source>
         <translation>Einrücken rückgängig</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1111"/>
+        <location filename="../ViewManager/ViewManager.py" line="1110"/>
         <source>U&amp;nindent</source>
         <translation>Einrücken rück&amp;gängig</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1119"/>
+        <location filename="../ViewManager/ViewManager.py" line="1118"/>
         <source>Unindent line</source>
         <translation>Einrücken der Zeile rückgängig machen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1121"/>
+        <location filename="../ViewManager/ViewManager.py" line="1120"/>
         <source>&lt;b&gt;Unindent&lt;/b&gt;&lt;p&gt;Unindents the current line or the lines of the selection by one level.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Einrücken rückgängig&lt;/b&gt;&lt;p&gt;Dies vermindert die Einrückung der aktuellen Zeile oder Auswahl um eine Ebene.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1147"/>
+        <location filename="../ViewManager/ViewManager.py" line="1146"/>
         <source>Comment</source>
         <translation>Kommentar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1147"/>
+        <location filename="../ViewManager/ViewManager.py" line="1146"/>
         <source>C&amp;omment</source>
         <translation>K&amp;ommentar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1155"/>
+        <location filename="../ViewManager/ViewManager.py" line="1154"/>
         <source>Comment Line or Selection</source>
         <translation>Kommentiert eine Zeile oder die Auswahl</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1157"/>
+        <location filename="../ViewManager/ViewManager.py" line="1156"/>
         <source>&lt;b&gt;Comment&lt;/b&gt;&lt;p&gt;Comments the current line or the lines of the current selection.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Kommentar&lt;/b&gt;&lt;p&gt;Dies kommentiert die aktuelle Zeile oder die aktuelle Auswahl.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1166"/>
+        <location filename="../ViewManager/ViewManager.py" line="1165"/>
         <source>Uncomment</source>
         <translation>Kommentar entfernen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1166"/>
+        <location filename="../ViewManager/ViewManager.py" line="1165"/>
         <source>Unco&amp;mment</source>
         <translation>Ko&amp;mmentar entfernen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1174"/>
+        <location filename="../ViewManager/ViewManager.py" line="1173"/>
         <source>Uncomment Line or Selection</source>
         <translation>Kommentar einer Zeile oder der Auswahl entfernen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1176"/>
+        <location filename="../ViewManager/ViewManager.py" line="1175"/>
         <source>&lt;b&gt;Uncomment&lt;/b&gt;&lt;p&gt;Uncomments the current line or the lines of the current selection.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Kommentar entfernen&lt;/b&gt;&lt;p&gt;Dies entfernt den Kommentar der aktuellen Zeile oder der aktuelle Auswahl.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1266"/>
+        <location filename="../ViewManager/ViewManager.py" line="1265"/>
         <source>Select all text</source>
         <translation>Gesamten text auswählen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1283"/>
+        <location filename="../ViewManager/ViewManager.py" line="1282"/>
         <source>Deselect all text</source>
         <translation>Hebt die Auswahl auf</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3449"/>
+        <location filename="../ViewManager/ViewManager.py" line="3447"/>
         <source>Search</source>
         <translation>Suchen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2877"/>
+        <location filename="../ViewManager/ViewManager.py" line="2875"/>
         <source>&amp;Search...</source>
         <translation>&amp;Suchen...</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="2883"/>
+        <source>Search for a text</source>
+        <translation>Sucht nach Text</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="2885"/>
-        <source>Search for a text</source>
-        <translation>Sucht nach Text</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2887"/>
         <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="3003"/>
+        <location filename="../ViewManager/ViewManager.py" line="3001"/>
         <source>Replace</source>
         <translation>Ersetzen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3003"/>
+        <location filename="../ViewManager/ViewManager.py" line="3001"/>
         <source>&amp;Replace...</source>
         <translation>&amp;Ersetzen...</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3008"/>
+        <source>Replace some text</source>
+        <translation>Ersetzt Text</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3010"/>
-        <source>Replace some text</source>
-        <translation>Ersetzt Text</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3012"/>
         <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="3160"/>
+        <source>Goto Line</source>
+        <translation>Gehe zu Zeile</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3152"/>
+        <source>&amp;Goto Line...</source>
+        <translation>Gehe zu &amp;Zeile...</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3162"/>
-        <source>Goto Line</source>
-        <translation>Gehe zu Zeile</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3154"/>
-        <source>&amp;Goto Line...</source>
-        <translation>Gehe zu &amp;Zeile...</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3164"/>
         <source>&lt;b&gt;Goto Line&lt;/b&gt;&lt;p&gt;Go to a specific line of text in the current editor. A dialog is shown to enter the linenumber.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Gehe zu Zeile&lt;/b&gt;&lt;p&gt;Dies springt zur angegebenen Zeile im aktuellen Editor. Es wird ein Dialog eingeblendet, in dem die Zeilennummer eingegeben werden kann.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3498"/>
+        <location filename="../ViewManager/ViewManager.py" line="3496"/>
         <source>Zoom in on the text</source>
         <translation>Text vergrößern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3517"/>
+        <location filename="../ViewManager/ViewManager.py" line="3515"/>
         <source>Zoom out on the text</source>
         <translation>Text verkleinern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3546"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>Zoom</source>
         <translation>Maßstab</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3546"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>&amp;Zoom</source>
         <translation>&amp;Maßstab</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3552"/>
+        <source>Zoom the text</source>
+        <translation>Den Maßstab des Textes ändern</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3554"/>
-        <source>Zoom the text</source>
-        <translation>Den Maßstab des Textes ändern</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3556"/>
         <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>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3567"/>
+        <source>Toggle all folds</source>
+        <translation>Alle Faltungen umschalten</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3563"/>
+        <source>&amp;Toggle all folds</source>
+        <translation>&amp;Alle Faltungen umschalten</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3569"/>
-        <source>Toggle all folds</source>
-        <translation>Alle Faltungen umschalten</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3565"/>
-        <source>&amp;Toggle all folds</source>
-        <translation>&amp;Alle Faltungen umschalten</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3571"/>
         <source>&lt;b&gt;Toggle all folds&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Alle Faltungen umschalten&lt;/b&gt;&lt;p&gt;Dies schaltet alle Faltungen des aktuellen Editors um.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4529"/>
+        <location filename="../ViewManager/ViewManager.py" line="4527"/>
         <source>File Modified</source>
         <translation>Datei geändert</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1300"/>
+        <location filename="../ViewManager/ViewManager.py" line="1299"/>
         <source>Convert Line End Characters</source>
         <translation>Zeilenende Marke umwandeln</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1293"/>
+        <location filename="../ViewManager/ViewManager.py" line="1292"/>
         <source>Convert &amp;Line End Characters</source>
         <translation>&amp;Zeilenende Marke umwandeln</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1302"/>
+        <location filename="../ViewManager/ViewManager.py" line="1301"/>
         <source>&lt;b&gt;Convert Line End Characters&lt;/b&gt;&lt;p&gt;Convert the line end characters to the currently set type.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Zeilenende Marke umwandeln&lt;/b&gt;&lt;p&gt;Dies wandelt die Zeilenende Marke in den aktuell eingestellten Typ um.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3599"/>
+        <source>Toggle current fold</source>
+        <translation>Aktuelle Faltung umschalten</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3595"/>
+        <source>Toggle &amp;current fold</source>
+        <translation>Aktuelle &amp;Faltung umschalten</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3601"/>
-        <source>Toggle current fold</source>
-        <translation>Aktuelle Faltung umschalten</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3597"/>
-        <source>Toggle &amp;current fold</source>
-        <translation>Aktuelle &amp;Faltung umschalten</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3603"/>
         <source>&lt;b&gt;Toggle current fold&lt;/b&gt;&lt;p&gt;Toggle the folds of the current line of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Aktuelle Faltung umschalten&lt;/b&gt;&lt;p&gt;Dies schaltet die Faltung der aktuellen Zeile des aktuellen Editors um.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="694"/>
+        <location filename="../ViewManager/ViewManager.py" line="693"/>
         <source>Clos&amp;e All</source>
         <translation>Alle &amp;schließen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="729"/>
         <source>Save as</source>
         <translation>Speichern unter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="729"/>
         <source>Save &amp;as...</source>
         <translation>Speichern &amp;unter...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="764"/>
+        <location filename="../ViewManager/ViewManager.py" line="763"/>
         <source>Save all</source>
         <translation>Alles speichern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1258"/>
+        <location filename="../ViewManager/ViewManager.py" line="1257"/>
         <source>Select all</source>
         <translation>Alles auswählen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1258"/>
+        <location filename="../ViewManager/ViewManager.py" line="1257"/>
         <source>&amp;Select all</source>
         <translation>A&amp;lles auswählen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1275"/>
         <source>Deselect all</source>
         <translation>Auswahl aufheben</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1275"/>
         <source>&amp;Deselect all</source>
         <translation>Aus&amp;wahl aufheben</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3487"/>
         <source>Zoom in</source>
         <translation>Vergrößern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3487"/>
         <source>Zoom &amp;in</source>
         <translation>Ver&amp;größern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3508"/>
+        <location filename="../ViewManager/ViewManager.py" line="3506"/>
         <source>Zoom out</source>
         <translation>Verkleinern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3508"/>
+        <location filename="../ViewManager/ViewManager.py" line="3506"/>
         <source>Zoom &amp;out</source>
         <translation>Ver&amp;kleinern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3500"/>
+        <location filename="../ViewManager/ViewManager.py" line="3498"/>
         <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="3519"/>
+        <location filename="../ViewManager/ViewManager.py" line="3517"/>
         <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="1240"/>
+        <location filename="../ViewManager/ViewManager.py" line="1239"/>
         <source>Select to brace</source>
         <translation>Zur Klammer auswählen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1240"/>
+        <location filename="../ViewManager/ViewManager.py" line="1239"/>
         <source>Select to &amp;brace</source>
         <translation>Zur Klammer ausw&amp;ählen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1247"/>
+        <location filename="../ViewManager/ViewManager.py" line="1246"/>
         <source>Select text to the matching brace</source>
         <translation>Text bis zur passenden Klammer auswählen</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3179"/>
+        <source>Goto Brace</source>
+        <translation>Gehe zu Klammer</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3171"/>
+        <source>Goto &amp;Brace</source>
+        <translation>Gehe zu &amp;Klammer</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3181"/>
-        <source>Goto Brace</source>
-        <translation>Gehe zu Klammer</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3173"/>
-        <source>Goto &amp;Brace</source>
-        <translation>Gehe zu &amp;Klammer</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3183"/>
         <source>&lt;b&gt;Goto Brace&lt;/b&gt;&lt;p&gt;Go to the matching brace in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Gehe zu Klammer&lt;/b&gt;&lt;p&gt;Gehe zur passenden Klammer im aktuellen Editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3261"/>
+        <location filename="../ViewManager/ViewManager.py" line="3259"/>
         <source>Search in Files</source>
         <translation>Suchen in Dateien</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3261"/>
+        <location filename="../ViewManager/ViewManager.py" line="3259"/>
         <source>Search in &amp;Files...</source>
         <translation>Suchen in &amp;Dateien...</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3267"/>
+        <source>Search for a text in files</source>
+        <translation>Nach Text in Dateien suchen</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3269"/>
-        <source>Search for a text in files</source>
-        <translation>Nach Text in Dateien suchen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3271"/>
         <source>&lt;b&gt;Search in Files&lt;/b&gt;&lt;p&gt;Search for some text in the files of a directory tree or the project. A dialog is shown to enter the searchtext and options for the search and to display the result.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Suchen in Dateien&lt;/b&gt;&lt;p&gt;Sucht nach Text in den Dateien eines Verzeichnisbaumes oder des Projektes. Es wird ein Dialog angezeigt, in dem der Suchtext und die Suchoptionen eingegeben werden können und in dem das Suchresultat angezeigt wird.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1207"/>
+        <location filename="../ViewManager/ViewManager.py" line="1206"/>
         <source>Stream Comment</source>
         <translation>Stream Kommentar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1212"/>
+        <location filename="../ViewManager/ViewManager.py" line="1211"/>
         <source>Stream Comment Line or Selection</source>
         <translation>Stream kommentiert eine Zeile oder die Auswahl</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1224"/>
+        <location filename="../ViewManager/ViewManager.py" line="1223"/>
         <source>Box Comment</source>
         <translation>Box Kommentar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1229"/>
+        <location filename="../ViewManager/ViewManager.py" line="1228"/>
         <source>Box Comment Line or Selection</source>
         <translation>Box kommentiert eine Zeile oder die Auswahl</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1231"/>
+        <location filename="../ViewManager/ViewManager.py" line="1230"/>
         <source>&lt;b&gt;Box Comment&lt;/b&gt;&lt;p&gt;Box comments the current line or the lines of the current selection.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Box Kommentar&lt;/b&gt;&lt;p&gt;Dies kommentiert die aktuelle Zeile oder die Zeilen der aktuelle Auswahl mit einem Box Kommentar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1215"/>
+        <location filename="../ViewManager/ViewManager.py" line="1214"/>
         <source>&lt;b&gt;Stream Comment&lt;/b&gt;&lt;p&gt;Stream comments the current line or the current selection.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Stream Kommentar&lt;/b&gt;&lt;p&gt;Dies kommentiert die aktuelle Zeile oder die aktuelle Auswahl mit einem Stream Kommentar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="984"/>
+        <location filename="../ViewManager/ViewManager.py" line="983"/>
         <source>Revert to last saved state</source>
         <translation>Zurück zum letzten gesichert Zustand</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="975"/>
+        <location filename="../ViewManager/ViewManager.py" line="974"/>
         <source>Re&amp;vert to last saved state</source>
         <translation>&amp;Zurück zum letzten gesichert Zustand</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="985"/>
         <source>&lt;b&gt;Revert to last saved state&lt;/b&gt;&lt;p&gt;Undo all changes up to the last saved state of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Zurück zum letzten gesichert Zustand&lt;/b&gt;&lt;p&gt;Dies nimmt alle Änderungen des aktuellen Editors bis zum letzten gesicherten Zustand zurück.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3681"/>
+        <location filename="../ViewManager/ViewManager.py" line="3679"/>
         <source>Split view</source>
         <translation>Ansicht aufteilen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3681"/>
+        <location filename="../ViewManager/ViewManager.py" line="3679"/>
         <source>&amp;Split view</source>
         <translation>An&amp;sicht aufteilen</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3684"/>
+        <source>Add a split to the view</source>
+        <translation>Fügt eine weiter Ansicht hinzu</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3686"/>
-        <source>Add a split to the view</source>
-        <translation>Fügt eine weiter Ansicht hinzu</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3688"/>
         <source>&lt;b&gt;Split view&lt;/b&gt;&lt;p&gt;Add a split to the view.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ansicht aufteilen&lt;/b&gt;&lt;p&gt;Fügt eine weitere Ansicht hinzu.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3696"/>
+        <location filename="../ViewManager/ViewManager.py" line="3694"/>
         <source>Arrange horizontally</source>
         <translation>Horizontal anordnen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3696"/>
+        <location filename="../ViewManager/ViewManager.py" line="3694"/>
         <source>Arrange &amp;horizontally</source>
         <translation>&amp;Horizontal anordnen</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3698"/>
+        <source>Arrange the splitted views horizontally</source>
+        <translation>Ordnet die geteilten Ansichten horizontal an</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3700"/>
-        <source>Arrange the splitted views horizontally</source>
-        <translation>Ordnet die geteilten Ansichten horizontal an</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3702"/>
         <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Horizontal anordnen&lt;/b&gt;&lt;p&gt;Ordnet die geteilten Ansichten horizontal an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3711"/>
+        <location filename="../ViewManager/ViewManager.py" line="3709"/>
         <source>Remove split</source>
         <translation>Geteilte Ansicht löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3711"/>
+        <location filename="../ViewManager/ViewManager.py" line="3709"/>
         <source>&amp;Remove split</source>
         <translation>Geteilte Ansicht &amp;löschen</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3714"/>
+        <source>Remove the current split</source>
+        <translation>Löscht die aktuelle Ansicht</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3716"/>
-        <source>Remove the current split</source>
-        <translation>Löscht die aktuelle Ansicht</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3718"/>
         <source>&lt;b&gt;Remove split&lt;/b&gt;&lt;p&gt;Remove the current split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Geteilte Ansicht löschen&lt;/b&gt;&lt;p&gt;Löscht die aktuelle Ansicht&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1481"/>
+        <location filename="../ViewManager/ViewManager.py" line="1480"/>
         <source>Move left one character</source>
         <translation>Ein Zeichen nach links</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1481"/>
+        <location filename="../ViewManager/ViewManager.py" line="1480"/>
         <source>Left</source>
         <translation>Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1495"/>
+        <location filename="../ViewManager/ViewManager.py" line="1494"/>
         <source>Move right one character</source>
         <translation>Ein Zeichen nach rechts</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1495"/>
+        <location filename="../ViewManager/ViewManager.py" line="1494"/>
         <source>Right</source>
         <translation>Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1509"/>
+        <location filename="../ViewManager/ViewManager.py" line="1508"/>
         <source>Move up one line</source>
         <translation>Eine Zeile nach oben</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1509"/>
+        <location filename="../ViewManager/ViewManager.py" line="1508"/>
         <source>Up</source>
         <translation>Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1521"/>
+        <location filename="../ViewManager/ViewManager.py" line="1520"/>
         <source>Move down one line</source>
         <translation>Eine Zeile nach unten</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1521"/>
+        <location filename="../ViewManager/ViewManager.py" line="1520"/>
         <source>Down</source>
         <translation>Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1533"/>
+        <location filename="../ViewManager/ViewManager.py" line="1532"/>
         <source>Move left one word part</source>
         <translation>Ein Wortteil nach links</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1567"/>
+        <location filename="../ViewManager/ViewManager.py" line="1566"/>
         <source>Alt+Left</source>
         <translation>Alt+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1547"/>
+        <location filename="../ViewManager/ViewManager.py" line="1546"/>
         <source>Move right one word part</source>
         <translation>Ein Wortteil nach rechts</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2448"/>
+        <location filename="../ViewManager/ViewManager.py" line="2446"/>
         <source>Alt+Right</source>
         <translation>Alt+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1561"/>
+        <location filename="../ViewManager/ViewManager.py" line="1560"/>
         <source>Move left one word</source>
         <translation>Ein Wort nach links</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1612"/>
+        <location filename="../ViewManager/ViewManager.py" line="1611"/>
         <source>Ctrl+Left</source>
         <translation>Ctrl+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1576"/>
+        <location filename="../ViewManager/ViewManager.py" line="1575"/>
         <source>Move right one word</source>
         <translation>Ein Wort nach rechts</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2202"/>
+        <location filename="../ViewManager/ViewManager.py" line="2200"/>
         <source>Ctrl+Right</source>
         <translation>Ctrl+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2403"/>
+        <location filename="../ViewManager/ViewManager.py" line="2401"/>
         <source>Home</source>
         <translation>Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1615"/>
+        <location filename="../ViewManager/ViewManager.py" line="1614"/>
         <source>Alt+Home</source>
         <translation>Alt+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2418"/>
+        <location filename="../ViewManager/ViewManager.py" line="2416"/>
         <source>End</source>
         <translation>End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1638"/>
+        <location filename="../ViewManager/ViewManager.py" line="1637"/>
         <source>Scroll view down one line</source>
         <translation>Eine Zeile nach unten rollen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1728"/>
+        <location filename="../ViewManager/ViewManager.py" line="1727"/>
         <source>Ctrl+Down</source>
         <translation>Ctrl+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1650"/>
+        <location filename="../ViewManager/ViewManager.py" line="1649"/>
         <source>Scroll view up one line</source>
         <translation>Eine Zeile nach oben rollen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1711"/>
+        <location filename="../ViewManager/ViewManager.py" line="1710"/>
         <source>Ctrl+Up</source>
         <translation>Ctrl+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1661"/>
+        <location filename="../ViewManager/ViewManager.py" line="1660"/>
         <source>Move up one paragraph</source>
         <translation>Einen Absatz nach oben</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1661"/>
+        <location filename="../ViewManager/ViewManager.py" line="1660"/>
         <source>Alt+Up</source>
         <translation>Alt+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1670"/>
+        <location filename="../ViewManager/ViewManager.py" line="1669"/>
         <source>Move down one paragraph</source>
         <translation>Einen Absatz nach unten</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1670"/>
+        <location filename="../ViewManager/ViewManager.py" line="1669"/>
         <source>Alt+Down</source>
         <translation>Alt+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1682"/>
+        <location filename="../ViewManager/ViewManager.py" line="1681"/>
         <source>Move up one page</source>
         <translation>Eine Seite hoch</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1682"/>
+        <location filename="../ViewManager/ViewManager.py" line="1681"/>
         <source>PgUp</source>
         <translation>PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1691"/>
+        <location filename="../ViewManager/ViewManager.py" line="1690"/>
         <source>Move down one page</source>
         <translation>Eine Seite nach unten</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1691"/>
+        <location filename="../ViewManager/ViewManager.py" line="1690"/>
         <source>PgDown</source>
         <translation>PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1714"/>
+        <location filename="../ViewManager/ViewManager.py" line="1713"/>
         <source>Ctrl+Home</source>
         <translation>Ctrl+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1731"/>
+        <location filename="../ViewManager/ViewManager.py" line="1730"/>
         <source>Ctrl+End</source>
         <translation>Ctrl+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1737"/>
+        <location filename="../ViewManager/ViewManager.py" line="1736"/>
         <source>Indent one level</source>
         <translation>Eine Ebene einrücken</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1737"/>
+        <location filename="../ViewManager/ViewManager.py" line="1736"/>
         <source>Tab</source>
         <translation>Tab</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1746"/>
+        <location filename="../ViewManager/ViewManager.py" line="1745"/>
         <source>Unindent one level</source>
         <translation>Eine Ebene ausrücken</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1746"/>
+        <location filename="../ViewManager/ViewManager.py" line="1745"/>
         <source>Shift+Tab</source>
         <translation>Shift+Tab</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1756"/>
+        <location filename="../ViewManager/ViewManager.py" line="1755"/>
         <source>Extend selection left one character</source>
         <translation>Auswahl um ein Zeichen nach links erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1756"/>
+        <location filename="../ViewManager/ViewManager.py" line="1755"/>
         <source>Shift+Left</source>
         <translation>Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1771"/>
+        <location filename="../ViewManager/ViewManager.py" line="1770"/>
         <source>Extend selection right one character</source>
         <translation>Auswahl um ein Zeichen nach rechts erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1771"/>
+        <location filename="../ViewManager/ViewManager.py" line="1770"/>
         <source>Shift+Right</source>
         <translation>Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1786"/>
+        <location filename="../ViewManager/ViewManager.py" line="1785"/>
         <source>Extend selection up one line</source>
         <translation>Auswahl um eine Zeile nach oben erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1786"/>
+        <location filename="../ViewManager/ViewManager.py" line="1785"/>
         <source>Shift+Up</source>
         <translation>Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1801"/>
+        <location filename="../ViewManager/ViewManager.py" line="1800"/>
         <source>Extend selection down one line</source>
         <translation>Auswahl um eine Zeile nach unten erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1801"/>
+        <location filename="../ViewManager/ViewManager.py" line="1800"/>
         <source>Shift+Down</source>
         <translation>Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1816"/>
+        <location filename="../ViewManager/ViewManager.py" line="1815"/>
         <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="1852"/>
+        <location filename="../ViewManager/ViewManager.py" line="1851"/>
         <source>Alt+Shift+Left</source>
         <translation>Alt+Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1830"/>
+        <location filename="../ViewManager/ViewManager.py" line="1829"/>
         <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="2463"/>
+        <location filename="../ViewManager/ViewManager.py" line="2461"/>
         <source>Alt+Shift+Right</source>
         <translation>Alt+Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1844"/>
+        <location filename="../ViewManager/ViewManager.py" line="1843"/>
         <source>Extend selection left one word</source>
         <translation>Auswahl um ein Wort nach links erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2557"/>
+        <location filename="../ViewManager/ViewManager.py" line="2555"/>
         <source>Ctrl+Shift+Left</source>
         <translation>Ctrl+Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1861"/>
+        <location filename="../ViewManager/ViewManager.py" line="1860"/>
         <source>Extend selection right one word</source>
         <translation>Auswahl um ein Wort nach rechts erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2219"/>
+        <location filename="../ViewManager/ViewManager.py" line="2217"/>
         <source>Ctrl+Shift+Right</source>
         <translation>Ctrl+Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1890"/>
+        <location filename="../ViewManager/ViewManager.py" line="1889"/>
         <source>Shift+Home</source>
         <translation>Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2323"/>
+        <location filename="../ViewManager/ViewManager.py" line="2321"/>
         <source>Alt+Shift+Home</source>
         <translation>Alt+Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1907"/>
+        <location filename="../ViewManager/ViewManager.py" line="1906"/>
         <source>Shift+End</source>
         <translation>Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1913"/>
+        <location filename="../ViewManager/ViewManager.py" line="1912"/>
         <source>Extend selection up one paragraph</source>
         <translation>Auswahl um einen Absatz nach oben erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1913"/>
+        <location filename="../ViewManager/ViewManager.py" line="1912"/>
         <source>Alt+Shift+Up</source>
         <translation>Alt+Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1926"/>
+        <location filename="../ViewManager/ViewManager.py" line="1925"/>
         <source>Extend selection down one paragraph</source>
         <translation>Auswahl um einen Absatz nach unten erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1926"/>
+        <location filename="../ViewManager/ViewManager.py" line="1925"/>
         <source>Alt+Shift+Down</source>
         <translation>Alt+Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1939"/>
+        <location filename="../ViewManager/ViewManager.py" line="1938"/>
         <source>Extend selection up one page</source>
         <translation>Auswahl um eine Seite nach oben erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1939"/>
+        <location filename="../ViewManager/ViewManager.py" line="1938"/>
         <source>Shift+PgUp</source>
         <translation>Shift+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1951"/>
+        <location filename="../ViewManager/ViewManager.py" line="1950"/>
         <source>Extend selection down one page</source>
         <translation>Auswahl um eine Seite nach unten erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1951"/>
+        <location filename="../ViewManager/ViewManager.py" line="1950"/>
         <source>Shift+PgDown</source>
         <translation>Shift+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1978"/>
+        <location filename="../ViewManager/ViewManager.py" line="1977"/>
         <source>Ctrl+Shift+Home</source>
         <translation>Ctrl+Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1995"/>
+        <location filename="../ViewManager/ViewManager.py" line="1994"/>
         <source>Ctrl+Shift+End</source>
         <translation>Ctrl+Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2001"/>
+        <location filename="../ViewManager/ViewManager.py" line="2000"/>
         <source>Delete previous character</source>
         <translation>Zeichen links löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2001"/>
+        <location filename="../ViewManager/ViewManager.py" line="2000"/>
         <source>Backspace</source>
         <translation>Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2032"/>
+        <location filename="../ViewManager/ViewManager.py" line="2031"/>
         <source>Delete current character</source>
         <translation>Aktuelles Zeichen löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2032"/>
+        <location filename="../ViewManager/ViewManager.py" line="2031"/>
         <source>Del</source>
         <translation>Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2046"/>
+        <location filename="../ViewManager/ViewManager.py" line="2045"/>
         <source>Delete word to left</source>
         <translation>Wort links löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2046"/>
+        <location filename="../ViewManager/ViewManager.py" line="2045"/>
         <source>Ctrl+Backspace</source>
         <translation>Ctrl+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2057"/>
+        <location filename="../ViewManager/ViewManager.py" line="2056"/>
         <source>Delete word to right</source>
         <translation>Wort rechts löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2057"/>
+        <location filename="../ViewManager/ViewManager.py" line="2056"/>
         <source>Ctrl+Del</source>
         <translation>Ctrl+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2067"/>
+        <location filename="../ViewManager/ViewManager.py" line="2066"/>
         <source>Delete line to left</source>
         <translation>Zeile links löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2067"/>
+        <location filename="../ViewManager/ViewManager.py" line="2066"/>
         <source>Ctrl+Shift+Backspace</source>
         <translation>Ctrl+Shift+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2078"/>
+        <location filename="../ViewManager/ViewManager.py" line="2077"/>
         <source>Delete line to right</source>
         <translation>Zeile rechts löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2087"/>
+        <location filename="../ViewManager/ViewManager.py" line="2086"/>
         <source>Ctrl+Shift+Del</source>
         <translation>Ctrl+Shift+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2093"/>
+        <location filename="../ViewManager/ViewManager.py" line="2092"/>
         <source>Insert new line</source>
         <translation>Neue Zeile einfügen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2093"/>
+        <location filename="../ViewManager/ViewManager.py" line="2092"/>
         <source>Return</source>
         <translation>Return</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2116"/>
+        <location filename="../ViewManager/ViewManager.py" line="2115"/>
         <source>Delete current line</source>
         <translation>Aktuelle Zeile löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2116"/>
+        <location filename="../ViewManager/ViewManager.py" line="2115"/>
         <source>Ctrl+Shift+L</source>
         <translation>Ctrl+Shift+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2127"/>
+        <location filename="../ViewManager/ViewManager.py" line="2126"/>
         <source>Duplicate current line</source>
         <translation>Aktuelle Zeile duplizieren</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2127"/>
+        <location filename="../ViewManager/ViewManager.py" line="2126"/>
         <source>Ctrl+D</source>
         <translation>Ctrl+D</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2138"/>
+        <location filename="../ViewManager/ViewManager.py" line="2137"/>
         <source>Swap current and previous lines</source>
         <translation>Aktuelle Zeile mit vorhergehender tauschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2138"/>
+        <location filename="../ViewManager/ViewManager.py" line="2137"/>
         <source>Ctrl+T</source>
         <translation>Ctrl+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2162"/>
+        <location filename="../ViewManager/ViewManager.py" line="2160"/>
         <source>Cut current line</source>
         <translation>Aktuelle Zeile ausschneiden</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2162"/>
+        <location filename="../ViewManager/ViewManager.py" line="2160"/>
         <source>Alt+Shift+L</source>
         <translation>Alt+Shift+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2172"/>
+        <location filename="../ViewManager/ViewManager.py" line="2170"/>
         <source>Copy current line</source>
         <translation>Aktuelle Zeile kopieren</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2172"/>
+        <location filename="../ViewManager/ViewManager.py" line="2170"/>
         <source>Ctrl+Shift+T</source>
         <translation>Ctrl+Shift+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2183"/>
+        <location filename="../ViewManager/ViewManager.py" line="2181"/>
         <source>Toggle insert/overtype</source>
         <translation>Einfügen/Überschreiben umschalten</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2183"/>
+        <location filename="../ViewManager/ViewManager.py" line="2181"/>
         <source>Ins</source>
         <translation>Ins</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2747"/>
+        <location filename="../ViewManager/ViewManager.py" line="2745"/>
         <source>Convert selection to lower case</source>
         <translation>Auswahl in Kleinbuchstaben umwandeln</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2747"/>
+        <location filename="../ViewManager/ViewManager.py" line="2745"/>
         <source>Alt+Shift+U</source>
         <translation>Alt+Shift+U</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2759"/>
+        <location filename="../ViewManager/ViewManager.py" line="2757"/>
         <source>Convert selection to upper case</source>
         <translation>Auswahl in Großbuchstaben umwandeln</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2759"/>
+        <location filename="../ViewManager/ViewManager.py" line="2757"/>
         <source>Ctrl+Shift+U</source>
         <translation>Ctrl+Shift+U</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3906"/>
+        <source>Start Macro Recording</source>
+        <translation>Makroaufzeichnung starten</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3900"/>
+        <source>S&amp;tart Macro Recording</source>
+        <translation>Makroaufzeichnung s&amp;tarten</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3908"/>
-        <source>Start Macro Recording</source>
-        <translation>Makroaufzeichnung starten</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3902"/>
-        <source>S&amp;tart Macro Recording</source>
-        <translation>Makroaufzeichnung s&amp;tarten</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3910"/>
         <source>&lt;b&gt;Start Macro Recording&lt;/b&gt;&lt;p&gt;Start recording editor commands into a new macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Makroaufzeichnung starten&lt;/b&gt;&lt;p&gt;Startet die Aufzeichnung von Editorbefehlen in ein neues Makro.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3920"/>
+        <source>Stop Macro Recording</source>
+        <translation>Makroaufzeichnung stoppen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3916"/>
+        <source>Sto&amp;p Macro Recording</source>
+        <translation>Makroaufzeichnung sto&amp;ppen</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3922"/>
-        <source>Stop Macro Recording</source>
-        <translation>Makroaufzeichnung stoppen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3918"/>
-        <source>Sto&amp;p Macro Recording</source>
-        <translation>Makroaufzeichnung sto&amp;ppen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3924"/>
         <source>&lt;b&gt;Stop Macro Recording&lt;/b&gt;&lt;p&gt;Stop recording editor commands into a new macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Makroaufzeichnung stoppen&lt;/b&gt;&lt;p&gt;Stopt die Aufzeichnung von Editorbefehlen in ein neues Makro.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3934"/>
+        <source>Run Macro</source>
+        <translation>Makro ausführen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3930"/>
+        <source>&amp;Run Macro</source>
+        <translation>Makro &amp;ausführen</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3936"/>
-        <source>Run Macro</source>
-        <translation>Makro ausführen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3932"/>
-        <source>&amp;Run Macro</source>
-        <translation>Makro &amp;ausführen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3938"/>
         <source>&lt;b&gt;Run Macro&lt;/b&gt;&lt;p&gt;Run a previously recorded editor macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Makro ausführen&lt;/b&gt;&lt;p&gt;Führt ein vorher aufgezeichnetes Makro aus.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3948"/>
+        <source>Delete Macro</source>
+        <translation>Makro löschen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3944"/>
+        <source>&amp;Delete Macro</source>
+        <translation>Makro &amp;löschen</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3950"/>
-        <source>Delete Macro</source>
-        <translation>Makro löschen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3946"/>
-        <source>&amp;Delete Macro</source>
-        <translation>Makro &amp;löschen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3952"/>
         <source>&lt;b&gt;Delete Macro&lt;/b&gt;&lt;p&gt;Delete a previously recorded editor macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Makro löschen&lt;/b&gt;&lt;p&gt;Löscht ein vorher aufgezeichnetes Makro.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3962"/>
+        <source>Load Macro</source>
+        <translation>Makro laden</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3958"/>
+        <source>&amp;Load Macro</source>
+        <translation>Makro la&amp;den</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3976"/>
+        <source>Save Macro</source>
+        <translation>Makro speichern</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3972"/>
+        <source>&amp;Save Macro</source>
+        <translation>Makro &amp;speichern</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3964"/>
-        <source>Load Macro</source>
-        <translation>Makro laden</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3960"/>
-        <source>&amp;Load Macro</source>
-        <translation>Makro la&amp;den</translation>
+        <source>&lt;b&gt;Load Macro&lt;/b&gt;&lt;p&gt;Load an editor macro from a file.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Makro laden&lt;/b&gt;&lt;p&gt;Lädt ein Makro aus einer Datei.&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3978"/>
-        <source>Save Macro</source>
-        <translation>Makro speichern</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3974"/>
-        <source>&amp;Save Macro</source>
-        <translation>Makro &amp;speichern</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3966"/>
-        <source>&lt;b&gt;Load Macro&lt;/b&gt;&lt;p&gt;Load an editor macro from a file.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Makro laden&lt;/b&gt;&lt;p&gt;Lädt ein Makro aus einer Datei.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3980"/>
         <source>&lt;b&gt;Save Macro&lt;/b&gt;&lt;p&gt;Save a previously recorded editor macro to a file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Makro speichern&lt;/b&gt;&lt;p&gt;Speichert ein vorher aufgezeichnetes Makro in eine Datei.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4020"/>
+        <source>Toggle Bookmark</source>
+        <translation>Lesezeichen setzen/löschen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <source>&amp;Toggle Bookmark</source>
+        <translation>&amp;Lesezeichen setzen/löschen</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4022"/>
-        <source>Toggle Bookmark</source>
-        <translation>Lesezeichen setzen/löschen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4014"/>
-        <source>&amp;Toggle Bookmark</source>
-        <translation>&amp;Lesezeichen setzen/löschen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4024"/>
         <source>&lt;b&gt;Toggle Bookmark&lt;/b&gt;&lt;p&gt;Toggle a bookmark at the current line of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Lesezeichen setzen/löschen&lt;/b&gt;&lt;p&gt;Setzt/löscht ein Lesezeichen in der aktuellen Zeile des aktuellen Editors.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4039"/>
+        <source>Next Bookmark</source>
+        <translation>Nächstes Lesezeichen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4031"/>
+        <source>&amp;Next Bookmark</source>
+        <translation>&amp;Nächstes Lesezeichen</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4041"/>
-        <source>Next Bookmark</source>
-        <translation>Nächstes Lesezeichen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4033"/>
-        <source>&amp;Next Bookmark</source>
-        <translation>&amp;Nächstes Lesezeichen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4043"/>
         <source>&lt;b&gt;Next Bookmark&lt;/b&gt;&lt;p&gt;Go to next bookmark of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nächstes Lesezeichen&lt;/b&gt;&lt;p&gt;Gehe zum nächsten Lesezeichen des aktuellen Editors.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4057"/>
+        <source>Previous Bookmark</source>
+        <translation>Vorheriges Lesezeichen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4049"/>
+        <source>&amp;Previous Bookmark</source>
+        <translation>&amp;Vorheriges Lesezeichen</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4059"/>
-        <source>Previous Bookmark</source>
-        <translation>Vorheriges Lesezeichen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4051"/>
-        <source>&amp;Previous Bookmark</source>
-        <translation>&amp;Vorheriges Lesezeichen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4061"/>
         <source>&lt;b&gt;Previous Bookmark&lt;/b&gt;&lt;p&gt;Go to previous bookmark of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vorheriges Lesezeichen&lt;/b&gt;&lt;p&gt;Gehe zum vorherigen Lesezeichen des aktuellen Editors.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4074"/>
+        <source>Clear Bookmarks</source>
+        <translation>Lesezeichen löschen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <source>&amp;Clear Bookmarks</source>
+        <translation>Lesezeichen l&amp;öschen</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4076"/>
-        <source>Clear Bookmarks</source>
-        <translation>Lesezeichen löschen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4069"/>
-        <source>&amp;Clear Bookmarks</source>
-        <translation>Lesezeichen l&amp;öschen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4078"/>
         <source>&lt;b&gt;Clear Bookmarks&lt;/b&gt;&lt;p&gt;Clear bookmarks of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Lesezeichen löschen&lt;/b&gt;&lt;p&gt;Lesezeichen aller Editoren löschen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4287"/>
+        <location filename="../ViewManager/ViewManager.py" line="4285"/>
         <source>&amp;Bookmarks</source>
         <translation>&amp;Lesezeichen</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3631"/>
+        <source>Remove all highlights</source>
+        <translation>Hervorhebungen löschen</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3633"/>
-        <source>Remove all highlights</source>
-        <translation>Hervorhebungen löschen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3635"/>
         <source>&lt;b&gt;Remove all highlights&lt;/b&gt;&lt;p&gt;Remove the highlights of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Hervorhebungen löschen&lt;/b&gt;&lt;p&gt;Hervorhebungen aller Editoren löschen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="843"/>
+        <location filename="../ViewManager/ViewManager.py" line="842"/>
         <source>Open &amp;Bookmarked Files</source>
         <translation>Ge&amp;merkte Dateien</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5373"/>
+        <location filename="../ViewManager/ViewManager.py" line="5371"/>
         <source>&amp;Clear</source>
         <translation>&amp;Löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5367"/>
+        <location filename="../ViewManager/ViewManager.py" line="5365"/>
         <source>&amp;Add</source>
         <translation>&amp;Hinzufügen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5370"/>
+        <location filename="../ViewManager/ViewManager.py" line="5368"/>
         <source>&amp;Edit...</source>
         <translation>&amp;Bearbeiten...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2243"/>
+        <location filename="../ViewManager/ViewManager.py" line="2241"/>
         <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="2243"/>
+        <location filename="../ViewManager/ViewManager.py" line="2241"/>
         <source>Alt+Ctrl+Down</source>
         <translation>Alt+Ctrl+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2259"/>
+        <location filename="../ViewManager/ViewManager.py" line="2257"/>
         <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="2259"/>
+        <location filename="../ViewManager/ViewManager.py" line="2257"/>
         <source>Alt+Ctrl+Up</source>
         <translation>Alt+Ctrl+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2274"/>
+        <location filename="../ViewManager/ViewManager.py" line="2272"/>
         <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="2274"/>
+        <location filename="../ViewManager/ViewManager.py" line="2272"/>
         <source>Alt+Ctrl+Left</source>
         <translation>Alt+Ctrl+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2292"/>
+        <location filename="../ViewManager/ViewManager.py" line="2290"/>
         <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="2292"/>
+        <location filename="../ViewManager/ViewManager.py" line="2290"/>
         <source>Alt+Ctrl+Right</source>
         <translation>Alt+Ctrl+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2348"/>
+        <location filename="../ViewManager/ViewManager.py" line="2346"/>
         <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="2363"/>
+        <location filename="../ViewManager/ViewManager.py" line="2361"/>
         <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="2205"/>
+        <location filename="../ViewManager/ViewManager.py" line="2203"/>
         <source>Alt+End</source>
         <translation>Alt+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2225"/>
+        <location filename="../ViewManager/ViewManager.py" line="2223"/>
         <source>Formfeed</source>
         <translation>Seitenumbruch</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1316"/>
+        <location filename="../ViewManager/ViewManager.py" line="1315"/>
         <source>Shorten empty lines</source>
         <translation>Leere Zeilen verkürzen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1318"/>
+        <location filename="../ViewManager/ViewManager.py" line="1317"/>
         <source>&lt;b&gt;Shorten empty lines&lt;/b&gt;&lt;p&gt;Shorten lines consisting solely of whitespace characters.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Leere Zeilen verkürzen&lt;/b&gt;&lt;p&gt;Zeilen, die nur aus Leerzeichen und Tabulatoren bestehen, werden verkürzt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2234"/>
+        <location filename="../ViewManager/ViewManager.py" line="2232"/>
         <source>Escape</source>
         <translation>Abbruch</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2234"/>
+        <location filename="../ViewManager/ViewManager.py" line="2232"/>
         <source>Esc</source>
         <translation>Esc</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4090"/>
+        <source>Goto Syntax Error</source>
+        <translation>Zu Syntaxfehler gehen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4084"/>
+        <source>&amp;Goto Syntax Error</source>
+        <translation>Zu Syntaxfehler &amp;gehen</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4092"/>
-        <source>Goto Syntax Error</source>
-        <translation>Zu Syntaxfehler gehen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4086"/>
-        <source>&amp;Goto Syntax Error</source>
-        <translation>Zu Syntaxfehler &amp;gehen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4094"/>
         <source>&lt;b&gt;Goto Syntax Error&lt;/b&gt;&lt;p&gt;Go to next syntax error of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Zu Syntaxfehler gehen&lt;/b&gt;&lt;p&gt;Gehe zum nächsten Syntaxfehler des aktuellen Editors.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4105"/>
+        <source>Clear Syntax Errors</source>
+        <translation>Syntaxfehler löschen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4100"/>
+        <source>Clear &amp;Syntax Errors</source>
+        <translation>Synta&amp;xfehler löschen</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4107"/>
-        <source>Clear Syntax Errors</source>
-        <translation>Syntaxfehler löschen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4102"/>
-        <source>Clear &amp;Syntax Errors</source>
-        <translation>Synta&amp;xfehler löschen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4109"/>
         <source>&lt;b&gt;Clear Syntax Errors&lt;/b&gt;&lt;p&gt;Clear syntax errors of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Syntaxfehler löschen&lt;/b&gt;&lt;p&gt;Syntaxfehler aller Editoren löschen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="816"/>
+        <location filename="../ViewManager/ViewManager.py" line="815"/>
         <source>Search File</source>
         <translation>Datei suchen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="816"/>
+        <location filename="../ViewManager/ViewManager.py" line="815"/>
         <source>Search &amp;File...</source>
         <translation>Da&amp;tei suchen...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="822"/>
+        <location filename="../ViewManager/ViewManager.py" line="821"/>
         <source>Search for a file</source>
         <translation>Nach einer Datei suchen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="824"/>
+        <location filename="../ViewManager/ViewManager.py" line="823"/>
         <source>&lt;b&gt;Search File&lt;/b&gt;&lt;p&gt;Search for a file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Datei suchen&lt;/b&gt;&lt;p&gt;Nach einer Datei suchen.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4175"/>
+        <source>Next uncovered line</source>
+        <translation>Nächste nichtabgedeckte Zeile</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4169"/>
+        <source>&amp;Next uncovered line</source>
+        <translation>&amp;Nächste nichtabgedeckte Zeile</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4177"/>
-        <source>Next uncovered line</source>
-        <translation>Nächste nichtabgedeckte Zeile</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4171"/>
-        <source>&amp;Next uncovered line</source>
-        <translation>&amp;Nächste nichtabgedeckte Zeile</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4179"/>
         <source>&lt;b&gt;Next uncovered line&lt;/b&gt;&lt;p&gt;Go to next line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nächste nichtabgedeckte Zeile&lt;/b&gt;&lt;p&gt;Gehe zur nächsten als nicht abgedeckt markierten Zeile des aktiven Editors.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4194"/>
+        <source>Previous uncovered line</source>
+        <translation>Vorige nichtabgedeckte Zeile</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4186"/>
+        <source>&amp;Previous uncovered line</source>
+        <translation>&amp;Vorige nichtabgedeckte Zeile</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4196"/>
-        <source>Previous uncovered line</source>
-        <translation>Vorige nichtabgedeckte Zeile</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4188"/>
-        <source>&amp;Previous uncovered line</source>
-        <translation>&amp;Vorige nichtabgedeckte Zeile</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4198"/>
         <source>&lt;b&gt;Previous uncovered line&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vorige nichtabgedeckte Zeile&lt;/b&gt;&lt;p&gt;Gehe zur vorigen als nicht abgedeckt markierten Zeile des aktiven Editors.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="938"/>
+        <location filename="../ViewManager/ViewManager.py" line="937"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation>Alt+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation>Shift+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1037"/>
+        <location filename="../ViewManager/ViewManager.py" line="1036"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation>Shift+Ins</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2013"/>
+        <location filename="../ViewManager/ViewManager.py" line="2012"/>
         <source>Shift+Backspace</source>
         <translation>Shift+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4529"/>
+        <location filename="../ViewManager/ViewManager.py" line="4527"/>
         <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="../ViewManager/ViewManager.py" line="662"/>
+        <location filename="../ViewManager/ViewManager.py" line="661"/>
         <source>Open a file</source>
         <translation>Datei öffnen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="664"/>
+        <location filename="../ViewManager/ViewManager.py" line="663"/>
         <source>&lt;b&gt;Open a file&lt;/b&gt;&lt;p&gt;You will be asked for the name of a file to be opened in an editor window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Datei öffnen&lt;/b&gt;&lt;p&gt;Sie werden nach dem Namen einer Datei gefragt, die in einem Editor geöffnet werden soll.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3389"/>
+        <location filename="../ViewManager/ViewManager.py" line="3387"/>
         <source>Quicksearch</source>
         <translation>Schnellsuche</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3090"/>
+        <location filename="../ViewManager/ViewManager.py" line="3088"/>
         <source>Ctrl+Shift+K</source>
         <comment>Search|Quicksearch</comment>
         <translation>Ctrl+Shift+K</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3096"/>
+        <source>Perform a quicksearch</source>
+        <translation>Führe eine Schnellsuche durch</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3109"/>
+        <source>Quicksearch backwards</source>
+        <translation>Schnellsuche rückwärts</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3109"/>
+        <source>Ctrl+Shift+J</source>
+        <comment>Search|Quicksearch backwards</comment>
+        <translation>Ctrl+Shift+J</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3119"/>
+        <source>Perform a quicksearch backwards</source>
+        <translation>Führe eine Schnellsuche rückwärts durch</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3088"/>
+        <source>&amp;Quicksearch</source>
+        <translation>Schne&amp;llsuche</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3109"/>
+        <source>Quicksearch &amp;backwards</source>
+        <translation>Schnellsuche &amp;rückwärts</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3131"/>
+        <source>Quicksearch extend</source>
+        <translation>Schnellsuche erweitern</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3131"/>
+        <source>Quicksearch e&amp;xtend</source>
+        <translation>Schnellsuche er&amp;weitern</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3131"/>
+        <source>Ctrl+Shift+H</source>
+        <comment>Search|Quicksearch extend</comment>
+        <translation>Ctrl+Shift+H</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3139"/>
+        <source>Extend the quicksearch to the end of the current word</source>
+        <translation>Erweitere die Schnellsuche bis zum Ende des aktuellen Wortes</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3142"/>
+        <source>&lt;b&gt;Quicksearch extend&lt;/b&gt;&lt;p&gt;This extends the quicksearch text to the end of the word currently found.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Schnellsuche erweitern&lt;/b&gt;&lt;p&gt;Dies erweitert den Schnellsuchetext bis zum Ende des aktuell gefundenen Wortes.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1129"/>
+        <source>Smart indent</source>
+        <translation>Überwachte Einrückung</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1135"/>
+        <source>Smart indent Line or Selection</source>
+        <translation>Rückt eine Zeile oder Auswahl mit Überwachung ein</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1137"/>
+        <source>&lt;b&gt;Smart indent&lt;/b&gt;&lt;p&gt;Indents the current line or the lines of the current selection smartly.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Überwachte Einrückung&lt;/b&gt;&lt;p&gt;Dies rückt die aktuelle Zeile oder die Zeilen der aktuellen Auswahl ein, wobei nur sinnvolle Einrückungstiefen erlaubt sind.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3724"/>
+        <source>Next split</source>
+        <translation>Nächste Ansichte</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3724"/>
+        <source>&amp;Next split</source>
+        <translation>&amp;Nächste Ansicht</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3731"/>
+        <source>Move to the next split</source>
+        <translation>Gehe zur nächsten Ansicht</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3733"/>
+        <source>&lt;b&gt;Next split&lt;/b&gt;&lt;p&gt;Move to the next split.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Nächste Ansicht&lt;/b&gt;&lt;p&gt;Gehe zur nächsten Ansicht.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3741"/>
+        <source>Previous split</source>
+        <translation>Vorherige Ansicht</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3741"/>
+        <source>&amp;Previous split</source>
+        <translation>&amp;Vorherige Ansicht</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3747"/>
+        <source>Move to the previous split</source>
+        <translation>Gehe zur vorherigen Ansicht</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3749"/>
+        <source>&lt;b&gt;Previous split&lt;/b&gt;&lt;p&gt;Move to the previous split.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Vorherige Ansicht&lt;/b&gt;&lt;p&gt;Gehe zur vorherigen Ansicht.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2092"/>
+        <source>Enter</source>
+        <translation>Enter</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3583"/>
+        <source>Toggle all folds (including children)</source>
+        <translation>Alle Faltungen umschalten (inkl. Unterfaltungen)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3577"/>
+        <source>Toggle all &amp;folds (including children)</source>
+        <translation>Alle Faltungen &amp;umschalten (inkl. Unterfaltungen)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3585"/>
+        <source>&lt;b&gt;Toggle all folds (including children)&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor including all children.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Alle Faltungen umschalten (inkl. Unterfaltungen)&lt;/b&gt;&lt;p&gt;Dies schaltet alle Faltungen des aktuellen Editors inklusive Unterfaltungen um.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2379"/>
+        <source>Duplicate current selection</source>
+        <translation>Aktuelle Auswahl duplizieren</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2379"/>
+        <source>Ctrl+Shift+D</source>
+        <translation>Ctrl+Shift+D</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="634"/>
+        <source>Ctrl+N</source>
+        <comment>File|New</comment>
+        <translation>Ctrl+N</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="653"/>
+        <source>Ctrl+O</source>
+        <comment>File|Open</comment>
+        <translation>Ctrl+O</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="674"/>
+        <source>Ctrl+W</source>
+        <comment>File|Close</comment>
+        <translation>Ctrl+W</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="712"/>
+        <source>Ctrl+S</source>
+        <comment>File|Save</comment>
+        <translation>Ctrl+S</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="729"/>
+        <source>Shift+Ctrl+S</source>
+        <comment>File|Save As</comment>
+        <translation>Shift+Ctrl+S</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="780"/>
+        <source>Ctrl+P</source>
+        <comment>File|Print</comment>
+        <translation>Ctrl+P</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="815"/>
+        <source>Alt+Ctrl+F</source>
+        <comment>File|Search File</comment>
+        <translation>Alt+Ctrl+F</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="837"/>
+        <source>&amp;File</source>
+        <translation>&amp;Datei</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="890"/>
+        <source>File</source>
+        <translation>Datei</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="937"/>
+        <source>Ctrl+Z</source>
+        <comment>Edit|Undo</comment>
+        <translation>Ctrl+Z</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="956"/>
+        <source>Ctrl+Shift+Z</source>
+        <comment>Edit|Redo</comment>
+        <translation>Ctrl+Shift+Z</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="974"/>
+        <source>Ctrl+Y</source>
+        <comment>Edit|Revert</comment>
+        <translation>Ctrl+Y</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
+        <source>Ctrl+X</source>
+        <comment>Edit|Cut</comment>
+        <translation>Ctrl+X</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1016"/>
+        <source>Ctrl+C</source>
+        <comment>Edit|Copy</comment>
+        <translation>Ctrl+C</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1016"/>
+        <source>Ctrl+Ins</source>
+        <comment>Edit|Copy</comment>
+        <translation>Ctrl+Einfg</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1036"/>
+        <source>Ctrl+V</source>
+        <comment>Edit|Paste</comment>
+        <translation>Ctrl+V</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1056"/>
+        <source>Alt+Shift+C</source>
+        <comment>Edit|Clear</comment>
+        <translation>Alt+Shift+C</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1091"/>
+        <source>Ctrl+I</source>
+        <comment>Edit|Indent</comment>
+        <translation>Ctrl+I</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1110"/>
+        <source>Ctrl+Shift+I</source>
+        <comment>Edit|Unindent</comment>
+        <translation>Ctrl+Shift+I</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1146"/>
+        <source>Ctrl+M</source>
+        <comment>Edit|Comment</comment>
+        <translation>Ctrl+M</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1165"/>
+        <source>Alt+Ctrl+M</source>
+        <comment>Edit|Uncomment</comment>
+        <translation>Alt+Ctrl+M</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1239"/>
+        <source>Ctrl+E</source>
+        <comment>Edit|Select to brace</comment>
+        <translation>Ctrl+E</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1257"/>
+        <source>Ctrl+A</source>
+        <comment>Edit|Select all</comment>
+        <translation>Ctrl+A</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1275"/>
+        <source>Alt+Ctrl+A</source>
+        <comment>Edit|Deselect all</comment>
+        <translation>Alt+Ctrl+A</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2786"/>
+        <source>&amp;Edit</source>
+        <translation>&amp;Bearbeiten</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2843"/>
+        <source>Edit</source>
+        <translation>Bearbeiten</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2875"/>
+        <source>Ctrl+F</source>
+        <comment>Search|Search</comment>
+        <translation>Ctrl+F</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3001"/>
+        <source>Ctrl+R</source>
+        <comment>Search|Replace</comment>
+        <translation>Ctrl+R</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3152"/>
+        <source>Ctrl+G</source>
+        <comment>Search|Goto Line</comment>
+        <translation>Ctrl+G</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3171"/>
+        <source>Ctrl+L</source>
+        <comment>Search|Goto Brace</comment>
+        <translation>Ctrl+L</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3259"/>
+        <source>Shift+Ctrl+F</source>
+        <comment>Search|Search Files</comment>
+        <translation>Shift+Ctrl+F</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3487"/>
+        <source>Ctrl++</source>
+        <comment>View|Zoom in</comment>
+        <translation>Ctrl++</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3506"/>
+        <source>Ctrl+-</source>
+        <comment>View|Zoom out</comment>
+        <translation>Ctrl+-</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
+        <source>Ctrl+#</source>
+        <comment>View|Zoom</comment>
+        <translation>Ctrl+#</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3724"/>
+        <source>Ctrl+Alt+N</source>
+        <comment>View|Next split</comment>
+        <translation>Ctrl+Alt+N</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3741"/>
+        <source>Ctrl+Alt+P</source>
+        <comment>View|Previous split</comment>
+        <translation>Ctrl+Alt+P</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3833"/>
+        <source>&amp;View</source>
+        <translation>&amp;Ansicht</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3870"/>
+        <source>View</source>
+        <translation>Ansicht</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3994"/>
+        <source>&amp;Macros</source>
+        <translation>&amp;Makros</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <source>Alt+Ctrl+T</source>
+        <comment>Bookmark|Toggle</comment>
+        <translation>Alt+Ctrl+T</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4031"/>
+        <source>Ctrl+PgDown</source>
+        <comment>Bookmark|Next</comment>
+        <translation>Ctrl+PgDown</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4049"/>
+        <source>Ctrl+PgUp</source>
+        <comment>Bookmark|Previous</comment>
+        <translation>Ctrl+PgUp</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <source>Alt+Ctrl+C</source>
+        <comment>Bookmark|Clear</comment>
+        <translation>Alt+Ctrl+C</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4331"/>
+        <source>Bookmarks</source>
+        <translation>Lesezeichen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4483"/>
+        <source>Open files</source>
+        <translation>Dateien öffnen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4212"/>
+        <source>Next Task</source>
+        <translation>Nächste Aufgabe</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4206"/>
+        <source>&amp;Next Task</source>
+        <translation>&amp;Nächste Aufgabe</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4214"/>
+        <source>&lt;b&gt;Next Task&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a task.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Nächste Aufgabe&lt;/b&gt;&lt;p&gt;Gehe zur nächsten Zeile des aktuellen Editors, die eine Aufgabe enthält.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4229"/>
+        <source>Previous Task</source>
+        <translation>Vorherige Aufgabe</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4222"/>
+        <source>&amp;Previous Task</source>
+        <translation>&amp;Vorherige Aufgabe</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4231"/>
+        <source>&lt;b&gt;Previous Task&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a task.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Vorherige Aufgabe&lt;/b&gt;&lt;p&gt;Gehe zur vorherigen Zeile des aktuellen Editors, die eine Aufgabe enthält.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3352"/>
+        <source>&amp;Search</source>
+        <translation>&amp;Suchen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2895"/>
+        <source>Search next</source>
+        <translation>Weitersuchen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2895"/>
+        <source>Search &amp;next</source>
+        <translation>&amp;Weitersuchen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2895"/>
+        <source>F3</source>
+        <comment>Search|Search next</comment>
+        <translation>F3</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2916"/>
+        <source>Search previous</source>
+        <translation>Rückwärtssuchen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2916"/>
+        <source>Search &amp;previous</source>
+        <translation>&amp;Rückwärtssuchen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2916"/>
+        <source>Shift+F3</source>
+        <comment>Search|Search previous</comment>
+        <translation>Shift+F3</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1248"/>
+        <source>&lt;b&gt;Select to brace&lt;/b&gt;&lt;p&gt;Select text of the current editor to the matching brace.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Zur Klammer auswählen&lt;/b&gt;&lt;p&gt;Im aktuellen Editor Text bis zur passenden Klammer auswählen.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1267"/>
+        <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Select all text of the current editor.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Alles auswählen&lt;/b&gt;&lt;p&gt;Dies wählt den gesamten Text des aktuellen Editors aus.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1284"/>
+        <source>&lt;b&gt;Deselect All&lt;/b&gt;&lt;p&gt;Deselect all text of the current editor.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Auswahl aufheben&lt;/b&gt;&lt;p&gt;Dies hebt die Auswahl des aktuellen Editors auf.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="913"/>
+        <source>Export as</source>
+        <translation>Exportieren als</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3433"/>
+        <source>Quicksearch Textedit</source>
+        <translation>Texteingabe für Schnellsuche</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2936"/>
+        <source>Clear search markers</source>
+        <translation>Suchmarkierungen löschen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2936"/>
+        <source>Ctrl+3</source>
+        <comment>Search|Clear search markers</comment>
+        <translation>Ctrl+3</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2944"/>
+        <source>Clear all displayed search markers</source>
+        <translation>Löscht alle angezeigten Suchmarkierungen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2946"/>
+        <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="2904"/>
+        <source>Search next occurrence of text</source>
+        <translation>Das nächste Vorkommen des Textes in der Seite suchen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2906"/>
+        <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="2924"/>
+        <source>Search previous occurrence of text</source>
+        <translation>Das vorherige Vorkommen des Textes in der Seite suchen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2926"/>
+        <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="3098"/>
-        <source>Perform a quicksearch</source>
-        <translation>Führe eine Schnellsuche durch</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3111"/>
-        <source>Quicksearch backwards</source>
-        <translation>Schnellsuche rückwärts</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3111"/>
-        <source>Ctrl+Shift+J</source>
-        <comment>Search|Quicksearch backwards</comment>
-        <translation>Ctrl+Shift+J</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3121"/>
-        <source>Perform a quicksearch backwards</source>
-        <translation>Führe eine Schnellsuche rückwärts durch</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3090"/>
-        <source>&amp;Quicksearch</source>
-        <translation>Schne&amp;llsuche</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3111"/>
-        <source>Quicksearch &amp;backwards</source>
-        <translation>Schnellsuche &amp;rückwärts</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3133"/>
-        <source>Quicksearch extend</source>
-        <translation>Schnellsuche erweitern</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3133"/>
-        <source>Quicksearch e&amp;xtend</source>
-        <translation>Schnellsuche er&amp;weitern</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3133"/>
-        <source>Ctrl+Shift+H</source>
-        <comment>Search|Quicksearch extend</comment>
-        <translation>Ctrl+Shift+H</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3141"/>
-        <source>Extend the quicksearch to the end of the current word</source>
-        <translation>Erweitere die Schnellsuche bis zum Ende des aktuellen Wortes</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3144"/>
-        <source>&lt;b&gt;Quicksearch extend&lt;/b&gt;&lt;p&gt;This extends the quicksearch text to the end of the word currently found.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Schnellsuche erweitern&lt;/b&gt;&lt;p&gt;Dies erweitert den Schnellsuchetext bis zum Ende des aktuell gefundenen Wortes.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="1130"/>
-        <source>Smart indent</source>
-        <translation>Überwachte Einrückung</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="1136"/>
-        <source>Smart indent Line or Selection</source>
-        <translation>Rückt eine Zeile oder Auswahl mit Überwachung ein</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="1138"/>
-        <source>&lt;b&gt;Smart indent&lt;/b&gt;&lt;p&gt;Indents the current line or the lines of the current selection smartly.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Überwachte Einrückung&lt;/b&gt;&lt;p&gt;Dies rückt die aktuelle Zeile oder die Zeilen der aktuellen Auswahl ein, wobei nur sinnvolle Einrückungstiefen erlaubt sind.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3726"/>
-        <source>Next split</source>
-        <translation>Nächste Ansichte</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3726"/>
-        <source>&amp;Next split</source>
-        <translation>&amp;Nächste Ansicht</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3733"/>
-        <source>Move to the next split</source>
-        <translation>Gehe zur nächsten Ansicht</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3735"/>
-        <source>&lt;b&gt;Next split&lt;/b&gt;&lt;p&gt;Move to the next split.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Nächste Ansicht&lt;/b&gt;&lt;p&gt;Gehe zur nächsten Ansicht.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3743"/>
-        <source>Previous split</source>
-        <translation>Vorherige Ansicht</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3743"/>
-        <source>&amp;Previous split</source>
-        <translation>&amp;Vorherige Ansicht</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3749"/>
-        <source>Move to the previous split</source>
-        <translation>Gehe zur vorherigen Ansicht</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3751"/>
-        <source>&lt;b&gt;Previous split&lt;/b&gt;&lt;p&gt;Move to the previous split.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Vorherige Ansicht&lt;/b&gt;&lt;p&gt;Gehe zur vorherigen Ansicht.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2093"/>
-        <source>Enter</source>
-        <translation>Enter</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3585"/>
-        <source>Toggle all folds (including children)</source>
-        <translation>Alle Faltungen umschalten (inkl. Unterfaltungen)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3579"/>
-        <source>Toggle all &amp;folds (including children)</source>
-        <translation>Alle Faltungen &amp;umschalten (inkl. Unterfaltungen)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3587"/>
-        <source>&lt;b&gt;Toggle all folds (including children)&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor including all children.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Alle Faltungen umschalten (inkl. Unterfaltungen)&lt;/b&gt;&lt;p&gt;Dies schaltet alle Faltungen des aktuellen Editors inklusive Unterfaltungen um.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2381"/>
-        <source>Duplicate current selection</source>
-        <translation>Aktuelle Auswahl duplizieren</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2381"/>
-        <source>Ctrl+Shift+D</source>
-        <translation>Ctrl+Shift+D</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="635"/>
-        <source>Ctrl+N</source>
-        <comment>File|New</comment>
-        <translation>Ctrl+N</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="654"/>
-        <source>Ctrl+O</source>
-        <comment>File|Open</comment>
-        <translation>Ctrl+O</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="675"/>
-        <source>Ctrl+W</source>
-        <comment>File|Close</comment>
-        <translation>Ctrl+W</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="713"/>
-        <source>Ctrl+S</source>
-        <comment>File|Save</comment>
-        <translation>Ctrl+S</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
-        <source>Shift+Ctrl+S</source>
-        <comment>File|Save As</comment>
-        <translation>Shift+Ctrl+S</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="781"/>
-        <source>Ctrl+P</source>
-        <comment>File|Print</comment>
-        <translation>Ctrl+P</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="816"/>
-        <source>Alt+Ctrl+F</source>
-        <comment>File|Search File</comment>
-        <translation>Alt+Ctrl+F</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="838"/>
-        <source>&amp;File</source>
-        <translation>&amp;Datei</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="891"/>
-        <source>File</source>
-        <translation>Datei</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="938"/>
-        <source>Ctrl+Z</source>
-        <comment>Edit|Undo</comment>
-        <translation>Ctrl+Z</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="957"/>
-        <source>Ctrl+Shift+Z</source>
-        <comment>Edit|Redo</comment>
-        <translation>Ctrl+Shift+Z</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="975"/>
-        <source>Ctrl+Y</source>
-        <comment>Edit|Revert</comment>
-        <translation>Ctrl+Y</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
-        <source>Ctrl+X</source>
-        <comment>Edit|Cut</comment>
-        <translation>Ctrl+X</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="1017"/>
-        <source>Ctrl+C</source>
-        <comment>Edit|Copy</comment>
-        <translation>Ctrl+C</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="1017"/>
-        <source>Ctrl+Ins</source>
-        <comment>Edit|Copy</comment>
-        <translation>Ctrl+Einfg</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="1037"/>
-        <source>Ctrl+V</source>
-        <comment>Edit|Paste</comment>
-        <translation>Ctrl+V</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="1057"/>
-        <source>Alt+Shift+C</source>
-        <comment>Edit|Clear</comment>
-        <translation>Alt+Shift+C</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="1092"/>
-        <source>Ctrl+I</source>
-        <comment>Edit|Indent</comment>
-        <translation>Ctrl+I</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="1111"/>
-        <source>Ctrl+Shift+I</source>
-        <comment>Edit|Unindent</comment>
-        <translation>Ctrl+Shift+I</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="1147"/>
-        <source>Ctrl+M</source>
-        <comment>Edit|Comment</comment>
-        <translation>Ctrl+M</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="1166"/>
-        <source>Alt+Ctrl+M</source>
-        <comment>Edit|Uncomment</comment>
-        <translation>Alt+Ctrl+M</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="1240"/>
-        <source>Ctrl+E</source>
-        <comment>Edit|Select to brace</comment>
-        <translation>Ctrl+E</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="1258"/>
-        <source>Ctrl+A</source>
-        <comment>Edit|Select all</comment>
-        <translation>Ctrl+A</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="1276"/>
-        <source>Alt+Ctrl+A</source>
-        <comment>Edit|Deselect all</comment>
-        <translation>Alt+Ctrl+A</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2788"/>
-        <source>&amp;Edit</source>
-        <translation>&amp;Bearbeiten</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2845"/>
-        <source>Edit</source>
-        <translation>Bearbeiten</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2877"/>
-        <source>Ctrl+F</source>
-        <comment>Search|Search</comment>
-        <translation>Ctrl+F</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3003"/>
-        <source>Ctrl+R</source>
-        <comment>Search|Replace</comment>
-        <translation>Ctrl+R</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3154"/>
-        <source>Ctrl+G</source>
-        <comment>Search|Goto Line</comment>
-        <translation>Ctrl+G</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3173"/>
-        <source>Ctrl+L</source>
-        <comment>Search|Goto Brace</comment>
-        <translation>Ctrl+L</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3261"/>
-        <source>Shift+Ctrl+F</source>
-        <comment>Search|Search Files</comment>
-        <translation>Shift+Ctrl+F</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
-        <source>Ctrl++</source>
-        <comment>View|Zoom in</comment>
-        <translation>Ctrl++</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3508"/>
-        <source>Ctrl+-</source>
-        <comment>View|Zoom out</comment>
-        <translation>Ctrl+-</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3546"/>
-        <source>Ctrl+#</source>
-        <comment>View|Zoom</comment>
-        <translation>Ctrl+#</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3726"/>
-        <source>Ctrl+Alt+N</source>
-        <comment>View|Next split</comment>
-        <translation>Ctrl+Alt+N</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3743"/>
-        <source>Ctrl+Alt+P</source>
-        <comment>View|Previous split</comment>
-        <translation>Ctrl+Alt+P</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3835"/>
-        <source>&amp;View</source>
-        <translation>&amp;Ansicht</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3872"/>
-        <source>View</source>
-        <translation>Ansicht</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3996"/>
-        <source>&amp;Macros</source>
-        <translation>&amp;Makros</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4014"/>
-        <source>Alt+Ctrl+T</source>
-        <comment>Bookmark|Toggle</comment>
-        <translation>Alt+Ctrl+T</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4033"/>
-        <source>Ctrl+PgDown</source>
-        <comment>Bookmark|Next</comment>
-        <translation>Ctrl+PgDown</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4051"/>
-        <source>Ctrl+PgUp</source>
-        <comment>Bookmark|Previous</comment>
-        <translation>Ctrl+PgUp</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4069"/>
-        <source>Alt+Ctrl+C</source>
-        <comment>Bookmark|Clear</comment>
-        <translation>Alt+Ctrl+C</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4333"/>
-        <source>Bookmarks</source>
-        <translation>Lesezeichen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4485"/>
-        <source>Open files</source>
-        <translation>Dateien öffnen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4214"/>
-        <source>Next Task</source>
-        <translation>Nächste Aufgabe</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4208"/>
-        <source>&amp;Next Task</source>
-        <translation>&amp;Nächste Aufgabe</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4216"/>
-        <source>&lt;b&gt;Next Task&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a task.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Nächste Aufgabe&lt;/b&gt;&lt;p&gt;Gehe zur nächsten Zeile des aktuellen Editors, die eine Aufgabe enthält.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4231"/>
-        <source>Previous Task</source>
-        <translation>Vorherige Aufgabe</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4224"/>
-        <source>&amp;Previous Task</source>
-        <translation>&amp;Vorherige Aufgabe</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4233"/>
-        <source>&lt;b&gt;Previous Task&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a task.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Vorherige Aufgabe&lt;/b&gt;&lt;p&gt;Gehe zur vorherigen Zeile des aktuellen Editors, die eine Aufgabe enthält.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3354"/>
-        <source>&amp;Search</source>
-        <translation>&amp;Suchen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2897"/>
-        <source>Search next</source>
-        <translation>Weitersuchen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2897"/>
-        <source>Search &amp;next</source>
-        <translation>&amp;Weitersuchen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2897"/>
-        <source>F3</source>
-        <comment>Search|Search next</comment>
-        <translation>F3</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2918"/>
-        <source>Search previous</source>
-        <translation>Rückwärtssuchen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2918"/>
-        <source>Search &amp;previous</source>
-        <translation>&amp;Rückwärtssuchen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2918"/>
-        <source>Shift+F3</source>
-        <comment>Search|Search previous</comment>
-        <translation>Shift+F3</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="1249"/>
-        <source>&lt;b&gt;Select to brace&lt;/b&gt;&lt;p&gt;Select text of the current editor to the matching brace.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Zur Klammer auswählen&lt;/b&gt;&lt;p&gt;Im aktuellen Editor Text bis zur passenden Klammer auswählen.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="1268"/>
-        <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Select all text of the current editor.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Alles auswählen&lt;/b&gt;&lt;p&gt;Dies wählt den gesamten Text des aktuellen Editors aus.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="1285"/>
-        <source>&lt;b&gt;Deselect All&lt;/b&gt;&lt;p&gt;Deselect all text of the current editor.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Auswahl aufheben&lt;/b&gt;&lt;p&gt;Dies hebt die Auswahl des aktuellen Editors auf.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="914"/>
-        <source>Export as</source>
-        <translation>Exportieren als</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3435"/>
-        <source>Quicksearch Textedit</source>
-        <translation>Texteingabe für Schnellsuche</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2938"/>
-        <source>Clear search markers</source>
-        <translation>Suchmarkierungen löschen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2938"/>
-        <source>Ctrl+3</source>
-        <comment>Search|Clear search markers</comment>
-        <translation>Ctrl+3</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2946"/>
-        <source>Clear all displayed search markers</source>
-        <translation>Löscht alle angezeigten Suchmarkierungen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2948"/>
-        <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="2906"/>
-        <source>Search next occurrence of text</source>
-        <translation>Das nächste Vorkommen des Textes in der Seite suchen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2908"/>
-        <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="2926"/>
-        <source>Search previous occurrence of text</source>
-        <translation>Das vorherige Vorkommen des Textes in der Seite suchen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2928"/>
-        <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="3100"/>
         <source>&lt;b&gt;Quicksearch&lt;/b&gt;&lt;p&gt;This activates the quicksearch function of the IDE by giving focus to the quicksearch entry field. If this field is already active and contains text, it searches for the next occurrence of this text.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Schnellsuche&lt;/b&gt;&lt;p&gt;Dies aktiviert die Schnellsuchfunktion der IDE, indem das Schnellsucheingabefeld aktiviert wird. Ist dieses Feld bereits aktiv und enthält Text, so wird das nächste Vorkommen dieses Textes gesucht.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3124"/>
+        <location filename="../ViewManager/ViewManager.py" line="3122"/>
         <source>&lt;b&gt;Quicksearch backwards&lt;/b&gt;&lt;p&gt;This searches the previous occurrence of the quicksearch text.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Schnellsuche rückwärts&lt;/b&gt;&lt;p&gt;Dies sucht das letzte Vorkommen des Schnellsuchtextes.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3408"/>
+        <location filename="../ViewManager/ViewManager.py" line="3406"/>
         <source>&lt;p&gt;Enter the searchtext directly into this field. The search will be performed case insensitive. The quicksearch function is activated upon activation of the quicksearch next action (default key Ctrl+Shift+K), if this entry field does not have the input focus. Otherwise it searches for the next occurrence of the text entered. The quicksearch backwards action (default key Ctrl+Shift+J) searches backward. Activating the &apos;quicksearch extend&apos; action (default key Ctrl+Shift+H) extends the current searchtext to the end of the currently found word. The quicksearch can be ended by pressing the Return key while the quicksearch entry has the the input focus.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Gib den Suchtext direkt in dieses Feld ein. Die Suche wird unabhängig von der Schreibweise durchgeführt. Die Schnellsuchefunktion wird durch Auslösen der Schnellsucheaktion (Standard Strg+Umschalt+K) aktiviert, falls dieses Eingabefeld nicht den Fokus besitzt. Sonst wird das nächste Vorkommen des eingegebenen Textes gesucht. Die „Schnellsuche rückwärts“-Aktion (Standard Strg+Umschalt+J) sucht rückwärts. Aktivierung der „Schnellsuche erweitern“-Aktion (Standard Strg+Umschalt+H) erweitert den aktuellen Suchtext bis zum Ende des aktuell gefundenen Wortes. Während das Schnellsucheeingabefeld den Fokus besitzt, kann die Schnellsuche durch Betätigung der Return-Taste beendet werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1414"/>
+        <location filename="../ViewManager/ViewManager.py" line="1413"/>
         <source>Calltip</source>
         <translation>Calltip</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1414"/>
+        <location filename="../ViewManager/ViewManager.py" line="1413"/>
         <source>&amp;Calltip</source>
         <translation>&amp;Calltip</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1421"/>
+        <location filename="../ViewManager/ViewManager.py" line="1420"/>
         <source>Show Calltips</source>
         <translation>Calltips anzeigen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1423"/>
+        <location filename="../ViewManager/ViewManager.py" line="1422"/>
         <source>&lt;b&gt;Calltip&lt;/b&gt;&lt;p&gt;Show calltips based on the characters immediately to the left of the cursor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Calltip&lt;/b&gt;&lt;p&gt;Zeige Calltips basierend auf den links vom Cursor befindlichen Zeichen an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="799"/>
+        <location filename="../ViewManager/ViewManager.py" line="798"/>
         <source>Print Preview</source>
         <translation>Druckvorschau</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="804"/>
+        <location filename="../ViewManager/ViewManager.py" line="803"/>
         <source>Print preview of the current file</source>
         <translation>Druckvorschau der aktuellen Datei</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="806"/>
+        <location filename="../ViewManager/ViewManager.py" line="805"/>
         <source>&lt;b&gt;Print Preview&lt;/b&gt;&lt;p&gt;Print preview of the current editor window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Druckvorschau&lt;/b&gt;&lt;p&gt;Zeift eine Druckvorschau des aktuellen Editorfensters.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2103"/>
+        <location filename="../ViewManager/ViewManager.py" line="2102"/>
         <source>Insert new line below current line</source>
         <translation>Neue Zeile unterhalb der aktuellen einfügen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2103"/>
+        <location filename="../ViewManager/ViewManager.py" line="2102"/>
         <source>Shift+Return</source>
         <translation>Shift+Return</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2103"/>
+        <location filename="../ViewManager/ViewManager.py" line="2102"/>
         <source>Shift+Enter</source>
         <translation>Shift+Enter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3281"/>
+        <location filename="../ViewManager/ViewManager.py" line="3279"/>
         <source>Replace in Files</source>
         <translation>Ersetzen in Dateien</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3281"/>
+        <location filename="../ViewManager/ViewManager.py" line="3279"/>
         <source>Replace in F&amp;iles...</source>
         <translation>Ersetzen in Da&amp;teien...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3281"/>
+        <location filename="../ViewManager/ViewManager.py" line="3279"/>
         <source>Shift+Ctrl+R</source>
         <comment>Search|Replace in Files</comment>
         <translation>Shift+Ctrl+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3288"/>
+        <location filename="../ViewManager/ViewManager.py" line="3286"/>
         <source>Search for a text in files and replace it</source>
         <translation>Nach Text in Dateien suchen und ihn ersetzen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3290"/>
+        <location filename="../ViewManager/ViewManager.py" line="3288"/>
         <source>&lt;b&gt;Replace in Files&lt;/b&gt;&lt;p&gt;Search for some text in the files of a directory tree or the project and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and to display the result.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ersetzen in Dateien&lt;/b&gt;&lt;p&gt;Sucht nach Text in den Dateien eines Verzeichnisbaumes oder des Projektes und ersetzt ihn. Es wird ein Dialog angezeigt, in dem der Suchtext, der Ersetzungstext und die Suchoptionen eingegeben werden können und in dem das Suchresultat angezeigt wird.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4366"/>
+        <location filename="../ViewManager/ViewManager.py" line="4364"/>
         <source>Shift+F7</source>
         <comment>Spelling|Spell Check</comment>
         <translation>Shift+F7</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4375"/>
+        <location filename="../ViewManager/ViewManager.py" line="4373"/>
         <source>Perform spell check of current editor</source>
         <translation>Führe eine Rechtschreibprüfung des aktuellen Editors durch</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4385"/>
+        <location filename="../ViewManager/ViewManager.py" line="4383"/>
         <source>Automatic spell checking</source>
         <translation>Automatische Rechtschreibprüfung</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4385"/>
+        <location filename="../ViewManager/ViewManager.py" line="4383"/>
         <source>&amp;Automatic spell checking</source>
         <translation>&amp;Automatische Rechtschreibprüfung</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4391"/>
+        <source>(De-)Activate automatic spell checking</source>
+        <translation>(De-)Aktiviert die automatische Rechtschreibprüfung</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4393"/>
-        <source>(De-)Activate automatic spell checking</source>
-        <translation>(De-)Aktiviert die automatische Rechtschreibprüfung</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4395"/>
         <source>&lt;b&gt;Automatic spell checking&lt;/b&gt;&lt;p&gt;Activate or deactivate the automatic spell checking function of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Automatische Rechtschreibprüfung&lt;/b&gt;&lt;p&gt;Aktiviert bzw. deaktiviert die automatische Rechtschreibprüfung aller Editoren.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4462"/>
+        <location filename="../ViewManager/ViewManager.py" line="4460"/>
         <source>Spelling</source>
         <translation>Rechtschreibung</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4928"/>
+        <location filename="../ViewManager/ViewManager.py" line="4926"/>
         <source>Line: {0:5}</source>
         <translation>Zeile: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4934"/>
+        <location filename="../ViewManager/ViewManager.py" line="4932"/>
         <source>Pos: {0:5}</source>
         <translation>Pos: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4124"/>
+        <location filename="../ViewManager/ViewManager.py" line="4122"/>
         <source>Next warning message</source>
         <translation>Nächste Warnung</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4118"/>
+        <location filename="../ViewManager/ViewManager.py" line="4116"/>
         <source>&amp;Next warning message</source>
         <translation>&amp;Nächste Warnung</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4143"/>
+        <location filename="../ViewManager/ViewManager.py" line="4141"/>
         <source>Previous warning message</source>
         <translation>Vorherige Warnung</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4135"/>
+        <location filename="../ViewManager/ViewManager.py" line="4133"/>
         <source>&amp;Previous warning message</source>
         <translation>&amp;Vorherige Warnung</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4161"/>
+        <location filename="../ViewManager/ViewManager.py" line="4159"/>
         <source>Clear Warning Messages</source>
         <translation>Warnungen löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4154"/>
+        <location filename="../ViewManager/ViewManager.py" line="4152"/>
         <source>Clear &amp;Warning Messages</source>
         <translation>&amp;Warnungen löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1082"/>
+        <location filename="../ViewManager/ViewManager.py" line="1081"/>
         <source>Join Lines</source>
         <translation>Zeilen verbinden</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1075"/>
+        <location filename="../ViewManager/ViewManager.py" line="1074"/>
         <source>Ctrl+J</source>
         <comment>Edit|Join Lines</comment>
         <translation>Ctrl+J</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1084"/>
+        <location filename="../ViewManager/ViewManager.py" line="1083"/>
         <source>&lt;b&gt;Join Lines&lt;/b&gt;&lt;p&gt;Join the current and the next lines.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Zeilen verbinden&lt;/b&gt;&lt;p&gt;Verbindet die aktuelle mit der nächsten Zeile.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3202"/>
+        <location filename="../ViewManager/ViewManager.py" line="3200"/>
         <source>Goto Last Edit Location</source>
         <translation>Gehe zur letzten Editierposition</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3191"/>
+        <location filename="../ViewManager/ViewManager.py" line="3189"/>
         <source>Goto Last &amp;Edit Location</source>
         <translation>Gehe zur letzten &amp;Editierposition</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3191"/>
+        <location filename="../ViewManager/ViewManager.py" line="3189"/>
         <source>Ctrl+Shift+G</source>
         <comment>Search|Goto Last Edit Location</comment>
         <translation>Ctrl+Shift+G</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3205"/>
+        <location filename="../ViewManager/ViewManager.py" line="3203"/>
         <source>&lt;b&gt;Goto Last Edit Location&lt;/b&gt;&lt;p&gt;Go to the location of the last edit in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Gehe zur letzten Editierposition&lt;/b&gt;&lt;p&gt;Gehe zu der Textposition, an der die letzte Editieraktion stattgefunden hat.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3214"/>
+        <location filename="../ViewManager/ViewManager.py" line="3212"/>
         <source>Goto Previous Method or Class</source>
         <translation>Gehe zur vorherigen Methode oder Klasse</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3214"/>
+        <location filename="../ViewManager/ViewManager.py" line="3212"/>
         <source>Ctrl+Shift+Up</source>
         <comment>Search|Goto Previous Method or Class</comment>
         <translation>Ctrl+Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3224"/>
+        <location filename="../ViewManager/ViewManager.py" line="3222"/>
         <source>Go to the previous method or class definition</source>
         <translation>Gehe zur vorherigen Methoden- oder Klassendefinition</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3228"/>
+        <location filename="../ViewManager/ViewManager.py" line="3226"/>
         <source>&lt;b&gt;Goto Previous Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the previous method or class definition and highlights the name.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Gehe zur vorherigen Methode oder Klasse&lt;/b&gt;&lt;p&gt;Dies springt zur Zeile der vorherigen Methoden- oder Klassendefinition und selektiert den Namen.&lt;/p&lt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3238"/>
+        <location filename="../ViewManager/ViewManager.py" line="3236"/>
         <source>Goto Next Method or Class</source>
         <translation>Gehe zur nächsten Methode oder Klasse</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3238"/>
+        <location filename="../ViewManager/ViewManager.py" line="3236"/>
         <source>Ctrl+Shift+Down</source>
         <comment>Search|Goto Next Method or Class</comment>
         <translation>Ctrl+Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3248"/>
+        <location filename="../ViewManager/ViewManager.py" line="3246"/>
         <source>Go to the next method or class definition</source>
         <translation>Gehe zur nächsten Methoden- oder Klassendefinition</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3250"/>
+        <location filename="../ViewManager/ViewManager.py" line="3248"/>
         <source>&lt;b&gt;Goto Next Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the next method or class definition and highlights the name.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Gehe zur nächsten Methode oder Klasse&lt;/b&gt;&lt;p&gt;Dies springt zur Zeile der nächsten Methoden- oder Klassendefinition und selektiert den Namen.&lt;/p&lt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3759"/>
+        <location filename="../ViewManager/ViewManager.py" line="3757"/>
         <source>Preview</source>
         <translation>Vorschau</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3762"/>
+        <source>Preview the current file in the web browser</source>
+        <translation>Zeige eine Vorschau der aktuellen Datei im Webbrowser</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3764"/>
-        <source>Preview the current file in the web browser</source>
-        <translation>Zeige eine Vorschau der aktuellen Datei im Webbrowser</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3766"/>
         <source>&lt;b&gt;Preview&lt;/b&gt;&lt;p&gt;This opens the web browser with a preview of the current file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vorschau&lt;/b&gt;&lt;p&gt;Dies öffnet einen Webbrowser mit einer Vorschau der aktuellen Datei.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1490"/>
+        <location filename="../ViewManager/ViewManager.py" line="1489"/>
         <source>Meta+B</source>
         <translation>Meta+B</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1503"/>
+        <location filename="../ViewManager/ViewManager.py" line="1502"/>
         <source>Meta+F</source>
         <translation>Meta+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1515"/>
+        <location filename="../ViewManager/ViewManager.py" line="1514"/>
         <source>Meta+P</source>
         <translation>Meta+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1527"/>
+        <location filename="../ViewManager/ViewManager.py" line="1526"/>
         <source>Meta+N</source>
         <translation>Meta+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1588"/>
+        <location filename="../ViewManager/ViewManager.py" line="1587"/>
         <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="1604"/>
+        <location filename="../ViewManager/ViewManager.py" line="1603"/>
         <source>Move to start of display line</source>
         <translation>Zum Beginn der Anzeigezeile springen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1621"/>
+        <location filename="../ViewManager/ViewManager.py" line="1620"/>
         <source>Move to end of document line</source>
         <translation>Zum Ende der Dokumentenzeile springen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1629"/>
+        <location filename="../ViewManager/ViewManager.py" line="1628"/>
         <source>Meta+E</source>
         <translation>Meta+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1697"/>
+        <location filename="../ViewManager/ViewManager.py" line="1696"/>
         <source>Meta+V</source>
         <translation>Meta+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1703"/>
+        <location filename="../ViewManager/ViewManager.py" line="1702"/>
         <source>Move to start of document</source>
         <translation>Zum Dokumentenanfang springen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1720"/>
+        <location filename="../ViewManager/ViewManager.py" line="1719"/>
         <source>Move to end of document</source>
         <translation>Zum Dokumentenende springen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1765"/>
+        <location filename="../ViewManager/ViewManager.py" line="1764"/>
         <source>Meta+Shift+B</source>
         <translation>Meta+Shift+B</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1780"/>
+        <location filename="../ViewManager/ViewManager.py" line="1779"/>
         <source>Meta+Shift+F</source>
         <translation>Meta+Shift+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1795"/>
+        <location filename="../ViewManager/ViewManager.py" line="1794"/>
         <source>Meta+Shift+P</source>
         <translation>Meta+Shift+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1810"/>
+        <location filename="../ViewManager/ViewManager.py" line="1809"/>
         <source>Meta+Shift+N</source>
         <translation>Meta+Shift+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1878"/>
+        <location filename="../ViewManager/ViewManager.py" line="1877"/>
         <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="1896"/>
+        <location filename="../ViewManager/ViewManager.py" line="1895"/>
         <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="1904"/>
+        <location filename="../ViewManager/ViewManager.py" line="1903"/>
         <source>Meta+Shift+E</source>
         <translation>Meta+Shift+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1961"/>
+        <location filename="../ViewManager/ViewManager.py" line="1960"/>
         <source>Meta+Shift+V</source>
         <translation>Meta+Shift+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1967"/>
+        <location filename="../ViewManager/ViewManager.py" line="1966"/>
         <source>Extend selection to start of document</source>
         <translation>Auswahl zum Dokumentenanfang erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1975"/>
+        <location filename="../ViewManager/ViewManager.py" line="1974"/>
         <source>Ctrl+Shift+Up</source>
         <translation>Ctrl+Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1984"/>
+        <location filename="../ViewManager/ViewManager.py" line="1983"/>
         <source>Extend selection to end of document</source>
         <translation>Auswahl zum Dokumentenende erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1992"/>
+        <location filename="../ViewManager/ViewManager.py" line="1991"/>
         <source>Ctrl+Shift+Down</source>
         <translation>Ctrl+Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2010"/>
+        <location filename="../ViewManager/ViewManager.py" line="2009"/>
         <source>Meta+H</source>
         <translation>Meta+H</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2019"/>
+        <location filename="../ViewManager/ViewManager.py" line="2018"/>
         <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="2040"/>
+        <location filename="../ViewManager/ViewManager.py" line="2039"/>
         <source>Meta+D</source>
         <translation>Meta+D</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2084"/>
+        <location filename="../ViewManager/ViewManager.py" line="2083"/>
         <source>Meta+K</source>
         <translation>Meta+K</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2194"/>
+        <location filename="../ViewManager/ViewManager.py" line="2192"/>
         <source>Move to end of display line</source>
         <translation>Zum Ende der Anzeigezeile springen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2211"/>
+        <location filename="../ViewManager/ViewManager.py" line="2209"/>
         <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="2253"/>
+        <location filename="../ViewManager/ViewManager.py" line="2251"/>
         <source>Meta+Alt+Shift+N</source>
         <translation>Meta+Alt+Shift+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2268"/>
+        <location filename="../ViewManager/ViewManager.py" line="2266"/>
         <source>Meta+Alt+Shift+P</source>
         <translation>Meta+Alt+Shift+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2286"/>
+        <location filename="../ViewManager/ViewManager.py" line="2284"/>
         <source>Meta+Alt+Shift+B</source>
         <translation>Meta+Alt+Shift+B</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2304"/>
+        <location filename="../ViewManager/ViewManager.py" line="2302"/>
         <source>Meta+Alt+Shift+F</source>
         <translation>Meta+Alt+Shift+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2310"/>
+        <location filename="../ViewManager/ViewManager.py" line="2308"/>
         <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="2329"/>
+        <location filename="../ViewManager/ViewManager.py" line="2327"/>
         <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="2339"/>
+        <location filename="../ViewManager/ViewManager.py" line="2337"/>
         <source>Meta+Alt+Shift+E</source>
         <translation>Meta+Alt+Shift+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2342"/>
+        <location filename="../ViewManager/ViewManager.py" line="2340"/>
         <source>Alt+Shift+End</source>
         <translation>Alt+Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2363"/>
+        <location filename="../ViewManager/ViewManager.py" line="2361"/>
         <source>Alt+Shift+PgDown</source>
         <translation>Alt+Shift+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2375"/>
+        <location filename="../ViewManager/ViewManager.py" line="2373"/>
         <source>Meta+Alt+Shift+V</source>
         <translation>Meta+Alt+Shift+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2395"/>
+        <location filename="../ViewManager/ViewManager.py" line="2393"/>
         <source>Scroll to start of document</source>
         <translation>Zum Dokumentenanfang rollen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2410"/>
+        <location filename="../ViewManager/ViewManager.py" line="2408"/>
         <source>Scroll to end of document</source>
         <translation>Zum Dokumentenende rollen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2425"/>
+        <location filename="../ViewManager/ViewManager.py" line="2423"/>
         <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="2433"/>
+        <location filename="../ViewManager/ViewManager.py" line="2431"/>
         <source>Meta+L</source>
         <translation>Meta+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2440"/>
+        <location filename="../ViewManager/ViewManager.py" line="2438"/>
         <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="2455"/>
+        <location filename="../ViewManager/ViewManager.py" line="2453"/>
         <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="2471"/>
+        <location filename="../ViewManager/ViewManager.py" line="2469"/>
         <source>Move to end of previous word</source>
         <translation>Zum Ende des vorigen Wortes springen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2483"/>
+        <location filename="../ViewManager/ViewManager.py" line="2481"/>
         <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="2495"/>
+        <location filename="../ViewManager/ViewManager.py" line="2493"/>
         <source>Move to start of document line</source>
         <translation>Zum Beginn der Dokumentenzeile springen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2503"/>
+        <location filename="../ViewManager/ViewManager.py" line="2501"/>
         <source>Meta+A</source>
         <translation>Meta+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2510"/>
+        <location filename="../ViewManager/ViewManager.py" line="2508"/>
         <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="2521"/>
+        <location filename="../ViewManager/ViewManager.py" line="2519"/>
         <source>Meta+Shift+A</source>
         <translation>Meta+Shift+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2528"/>
+        <location filename="../ViewManager/ViewManager.py" line="2526"/>
         <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="2538"/>
+        <location filename="../ViewManager/ViewManager.py" line="2536"/>
         <source>Meta+Alt+Shift+A</source>
         <translation>Meta+Alt+Shift+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2546"/>
+        <location filename="../ViewManager/ViewManager.py" line="2544"/>
         <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="2565"/>
+        <location filename="../ViewManager/ViewManager.py" line="2563"/>
         <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="2579"/>
+        <location filename="../ViewManager/ViewManager.py" line="2577"/>
         <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="2594"/>
+        <location filename="../ViewManager/ViewManager.py" line="2592"/>
         <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="2611"/>
+        <location filename="../ViewManager/ViewManager.py" line="2609"/>
         <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="2628"/>
+        <location filename="../ViewManager/ViewManager.py" line="2626"/>
         <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="2642"/>
+        <location filename="../ViewManager/ViewManager.py" line="2640"/>
         <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="2657"/>
+        <location filename="../ViewManager/ViewManager.py" line="2655"/>
         <source>Stuttered move up one page</source>
         <translation>„Stotternd“ um eine Seite nach oben</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2669"/>
+        <location filename="../ViewManager/ViewManager.py" line="2667"/>
         <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="2682"/>
+        <location filename="../ViewManager/ViewManager.py" line="2680"/>
         <source>Stuttered move down one page</source>
         <translation>„Stotternd“ um eine Seite nach unten</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2694"/>
+        <location filename="../ViewManager/ViewManager.py" line="2692"/>
         <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="2707"/>
+        <location filename="../ViewManager/ViewManager.py" line="2705"/>
         <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="2715"/>
+        <location filename="../ViewManager/ViewManager.py" line="2713"/>
         <source>Alt+Del</source>
         <translation>Alt+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2722"/>
+        <location filename="../ViewManager/ViewManager.py" line="2720"/>
         <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="2734"/>
+        <location filename="../ViewManager/ViewManager.py" line="2732"/>
         <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="2348"/>
+        <location filename="../ViewManager/ViewManager.py" line="2346"/>
         <source>Alt+Shift+PgUp</source>
         <translation>Alt+Shift+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1185"/>
+        <location filename="../ViewManager/ViewManager.py" line="1184"/>
         <source>Toggle Comment</source>
         <translation>Kommentar umschalten</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1185"/>
+        <location filename="../ViewManager/ViewManager.py" line="1184"/>
         <source>Ctrl+Shift+M</source>
         <comment>Edit|Toggle Comment</comment>
         <translation>Ctrl+Shift+M</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1193"/>
+        <location filename="../ViewManager/ViewManager.py" line="1192"/>
         <source>Toggle the comment of the current line, selection or comment block</source>
         <translation>Schalte den Kommentar der aktuellen Zeile, Auswahl oder Kommentarblocks um</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1197"/>
+        <location filename="../ViewManager/ViewManager.py" line="1196"/>
         <source>&lt;b&gt;Toggle Comment&lt;/b&gt;&lt;p&gt;If the current line does not start with a block comment, the current line or selection is commented. If it is already commented, this comment block is uncommented. &lt;/p&gt;</source>
         <translation>&lt;b&gt;Kommentar umschalten&lt;/b&gt;&lt;p&gt;Falls die aktuelle Zeile nicht mit einem Blockkommentar beginnt, so wird die aktuelle Zeile oder Auswahl kommentiert. Ist sie kommentiert, so wird dieser Blockkommentar entkommentiert.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3525"/>
         <source>Zoom reset</source>
         <translation>Vergrößerung zurücksetzen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3525"/>
         <source>Zoom &amp;reset</source>
         <translation>Vergrößerung &amp;zurücksetzen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3525"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation>Ctrl+0</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3533"/>
+        <source>Reset the zoom of the text</source>
+        <translation>Die Textgröße zurücksetzen</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3535"/>
-        <source>Reset the zoom of the text</source>
-        <translation>Die Textgröße zurücksetzen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3537"/>
         <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="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3487"/>
         <source>Zoom In</source>
         <comment>View|Zoom in</comment>
         <translation>Vergrößern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3508"/>
+        <location filename="../ViewManager/ViewManager.py" line="3506"/>
         <source>Zoom Out</source>
         <comment>View|Zoom out</comment>
         <translation>Verkleinern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="764"/>
+        <location filename="../ViewManager/ViewManager.py" line="763"/>
         <source>Save a&amp;ll</source>
         <translation>&amp;Alle speichern</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4246"/>
+        <source>Next Change</source>
+        <translation>Nächste Änderung</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4240"/>
+        <source>&amp;Next Change</source>
+        <translation>&amp;Nächste Änderung</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4248"/>
-        <source>Next Change</source>
-        <translation>Nächste Änderung</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4242"/>
-        <source>&amp;Next Change</source>
-        <translation>&amp;Nächste Änderung</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4250"/>
         <source>&lt;b&gt;Next Change&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nächste Änderung&lt;/b&gt;&lt;p&gt;Gehe zur nächsten Zeile des aktuellen Editors, die eine Änderung enthält.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4264"/>
+        <source>Previous Change</source>
+        <translation>Vorherige Änderung</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4257"/>
+        <source>&amp;Previous Change</source>
+        <translation>&amp;Vorherige Änderung</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4266"/>
-        <source>Previous Change</source>
-        <translation>Vorherige Änderung</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4259"/>
-        <source>&amp;Previous Change</source>
-        <translation>&amp;Vorherige Änderung</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4268"/>
         <source>&lt;b&gt;Previous Change&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vorherige Änderung&lt;/b&gt;&lt;p&gt;Gehe zur vorherigen Zeile des aktuellen Editors, die eine Änderung enthält.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4366"/>
+        <location filename="../ViewManager/ViewManager.py" line="4364"/>
         <source>Check spelling</source>
         <translation>Rechtschreibprüfung</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4366"/>
+        <location filename="../ViewManager/ViewManager.py" line="4364"/>
         <source>Check &amp;spelling...</source>
         <translation>&amp;Rechtschreibprüfung...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4377"/>
+        <location filename="../ViewManager/ViewManager.py" line="4375"/>
         <source>&lt;b&gt;Check spelling&lt;/b&gt;&lt;p&gt;Perform a spell check of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rechtschreibprüfung&lt;b&gt;&lt;p&gt;Führe eine Rechtschreibprüfung des aktuellen Editors durch.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4424"/>
+        <source>Edit Dictionary</source>
+        <translation>Wörterbuch bearbeiten</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4426"/>
-        <source>Edit Dictionary</source>
-        <translation>Wörterbuch bearbeiten</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4428"/>
         <source>Project Word List</source>
         <translation>Projekt-Wörterliste</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4431"/>
+        <location filename="../ViewManager/ViewManager.py" line="4429"/>
         <source>Project Exception List</source>
         <translation>Projekt-Ausnahmenliste</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4436"/>
+        <location filename="../ViewManager/ViewManager.py" line="4434"/>
         <source>User Word List</source>
         <translation>Nutzer-Wörterliste</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4439"/>
+        <location filename="../ViewManager/ViewManager.py" line="4437"/>
         <source>User Exception List</source>
         <translation>Nutzer-Ausnahmenliste</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6639"/>
+        <location filename="../ViewManager/ViewManager.py" line="6637"/>
         <source>Edit Spelling Dictionary</source>
         <translation>Wörterbuch bearbeiten</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6614"/>
+        <location filename="../ViewManager/ViewManager.py" line="6612"/>
         <source>Editing {0}</source>
         <translation>Bearbeite {0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6596"/>
+        <location filename="../ViewManager/ViewManager.py" line="6594"/>
         <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="6626"/>
+        <location filename="../ViewManager/ViewManager.py" line="6624"/>
         <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="6639"/>
+        <location filename="../ViewManager/ViewManager.py" line="6637"/>
         <source>The spelling dictionary was saved successfully.</source>
         <translation>Das Wörterbuch wurde erfolgreich gespeichert.</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2957"/>
+        <location filename="../ViewManager/ViewManager.py" line="2955"/>
         <source>Search current word forward</source>
         <translation>Aktuelles Wort vorwärts suchen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2957"/>
+        <location filename="../ViewManager/ViewManager.py" line="2955"/>
         <source>Ctrl+.</source>
         <comment>Search|Search current word forward</comment>
         <translation>Ctrl+.</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2968"/>
+        <location filename="../ViewManager/ViewManager.py" line="2966"/>
         <source>Search next occurrence of the current word</source>
         <translation>Das nächste Vorkommen des aktuellen Wortes suchen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2971"/>
+        <location filename="../ViewManager/ViewManager.py" line="2969"/>
         <source>&lt;b&gt;Search current word forward&lt;/b&gt;&lt;p&gt;Search the next occurrence of the current word of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Aktuelles Wort vorwärts suchen&lt;/b&gt;&lt;p&gt;Sucht das nächste Vorkommen des aktuellen Wortes des aktuellen Editors.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2980"/>
+        <location filename="../ViewManager/ViewManager.py" line="2978"/>
         <source>Search current word backward</source>
         <translation>Aktuelles Wort rückwärts suchen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2980"/>
+        <location filename="../ViewManager/ViewManager.py" line="2978"/>
         <source>Ctrl+,</source>
         <comment>Search|Search current word backward</comment>
         <translation>Ctrl+,</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2991"/>
+        <location filename="../ViewManager/ViewManager.py" line="2989"/>
         <source>Search previous occurrence of the current word</source>
         <translation>Das vorherige Vorkommen des aktuellen Wortes suchen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2994"/>
+        <location filename="../ViewManager/ViewManager.py" line="2992"/>
         <source>&lt;b&gt;Search current word backward&lt;/b&gt;&lt;p&gt;Search the previous occurrence of the current word of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Aktuelles Wort rückwärts suchen&lt;/b&gt;&lt;p&gt;Sucht das vorherige Vorkommen des aktuellen Wortes des aktuellen Editors.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3301"/>
+        <location filename="../ViewManager/ViewManager.py" line="3299"/>
         <source>Search in Open Files</source>
         <translation>Suchen in geöffneten Dateien</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3301"/>
+        <location filename="../ViewManager/ViewManager.py" line="3299"/>
         <source>Search in Open Files...</source>
         <translation>Suchen in geöffneten Dateien...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3301"/>
+        <location filename="../ViewManager/ViewManager.py" line="3299"/>
         <source>Meta+Ctrl+Alt+F</source>
         <comment>Search|Search Open Files</comment>
         <translation>Meta+Ctrl+Alt+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3312"/>
+        <location filename="../ViewManager/ViewManager.py" line="3310"/>
         <source>Search for a text in open files</source>
         <translation>Nach Text in geöffneten Dateien suchen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3314"/>
+        <location filename="../ViewManager/ViewManager.py" line="3312"/>
         <source>&lt;b&gt;Search in Open Files&lt;/b&gt;&lt;p&gt;Search for some text in the currently opened files. A dialog is shown to enter the searchtext and options for the search and to display the result.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Suchen in geöffneten Dateien&lt;/b&gt;&lt;p&gt;Sucht nach Text in den aktuell geöffneten Dateien. Es wird ein Dialog angezeigt, in dem der Suchtext und die Suchoptionen eingegeben werden können und in dem das Suchresultat angezeigt wird.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3324"/>
+        <location filename="../ViewManager/ViewManager.py" line="3322"/>
         <source>Replace in Open Files</source>
         <translation>Ersetzen in geöffneten Dateien</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3324"/>
+        <location filename="../ViewManager/ViewManager.py" line="3322"/>
         <source>Meta+Ctrl+Alt+R</source>
         <comment>Search|Replace in Open Files</comment>
         <translation>Meta+Ctrl+Alt+R</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3332"/>
+        <source>Search for a text in open files and replace it</source>
+        <translation>Nach Text in geöffneten Dateien suchen und ihn ersetzen</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3334"/>
-        <source>Search for a text in open files and replace it</source>
-        <translation>Nach Text in geöffneten Dateien suchen und ihn ersetzen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3336"/>
         <source>&lt;b&gt;Replace in Open Files&lt;/b&gt;&lt;p&gt;Search for some text in the currently opened files and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and to display the result.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ersetzen in geöffneten Dateien&lt;/b&gt;&lt;p&gt;Sucht nach Text in den aktuell geöffneten Dateien und ersetzt ihn. Es wird ein Dialog angezeigt, in dem der Suchtext, der Ersetzungstext und die Suchoptionen eingegeben werden können und in dem das Suchresultat angezeigt wird.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3324"/>
+        <location filename="../ViewManager/ViewManager.py" line="3322"/>
         <source>Replace in Open Files...</source>
         <translation>Ersetzen in geöffneten Dateien...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1450"/>
+        <location filename="../ViewManager/ViewManager.py" line="1449"/>
         <source>Sort</source>
         <translation>Sortieren</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1450"/>
+        <location filename="../ViewManager/ViewManager.py" line="1449"/>
         <source>Ctrl+Alt+S</source>
         <comment>Edit|Sort</comment>
         <translation>Ctrl+Alt+S</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1457"/>
+        <location filename="../ViewManager/ViewManager.py" line="1456"/>
         <source>Sort the lines containing the rectangular selection</source>
         <translation>Sortiere die Zeilen, die von der rechteckigen Auswahl überspannt werden</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1460"/>
+        <location filename="../ViewManager/ViewManager.py" line="1459"/>
         <source>&lt;b&gt;Sort&lt;/b&gt;&lt;p&gt;Sort the lines spanned by a rectangular selection based on the selection ignoring leading and trailing whitespace.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Sortieren&lt;/b&gt;&lt;p&gt;Dies sortiert die von der Rechteckauswahl überspannten Zeilen basierend auf der Auswahl. Führende und folgende Leerzeichen werden ignoriert.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4955"/>
+        <location filename="../ViewManager/ViewManager.py" line="4953"/>
         <source>Language: {0}</source>
         <translation>Sprache: {0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4962"/>
+        <location filename="../ViewManager/ViewManager.py" line="4960"/>
         <source>EOL Mode: {0}</source>
         <translation>EOL-Modus: {0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3643"/>
+        <location filename="../ViewManager/ViewManager.py" line="3641"/>
         <source>New Document View</source>
         <translation>Neue Dokumentenansicht</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3643"/>
+        <location filename="../ViewManager/ViewManager.py" line="3641"/>
         <source>New &amp;Document View</source>
         <translation>Neue &amp;Dokumentenansicht</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3646"/>
+        <source>Open a new view of the current document</source>
+        <translation>Offnet eine neue Ansicht des aktuellen Dokumentes</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3648"/>
-        <source>Open a new view of the current document</source>
-        <translation>Offnet eine neue Ansicht des aktuellen Dokumentes</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3650"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Neue Dokumentenansicht&lt;/b&gt;&lt;p&gt;Offnet eine neue Ansicht des aktuellen Dokumentes. Beide Ansichten zeigen das selbe Dokument. Die Cursor lassen sich jedoch unabhängig positionieren.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3660"/>
+        <location filename="../ViewManager/ViewManager.py" line="3658"/>
         <source>New Document View (with new split)</source>
         <translation>Neue Dokumentenansicht (in neuem Abschnitt)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3667"/>
+        <location filename="../ViewManager/ViewManager.py" line="3665"/>
         <source>Open a new view of the current document in a new split</source>
         <translation>Offnet eine neue Ansicht des aktuellen Dokumentes in einem neuen Abschnitt</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3670"/>
+        <location filename="../ViewManager/ViewManager.py" line="3668"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document in a new split. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Neue Dokumentenansicht&lt;/b&gt;&lt;p&gt;Offnet eine neue Ansicht des aktuellen Dokumentes in einem neuen Abschnitt. Beide Ansichten zeigen das selbe Dokument. Die Cursor lassen sich jedoch unabhängig positionieren.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4126"/>
+        <location filename="../ViewManager/ViewManager.py" line="4124"/>
         <source>&lt;b&gt;Next warning message&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nächste Warnung&lt;/b&gt;&lt;p&gt;Gehe zur nächsten Zeile des aktuellen Editors, die eine pyflakes Warnung besitzt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4145"/>
+        <location filename="../ViewManager/ViewManager.py" line="4143"/>
         <source>&lt;b&gt;Previous warning message&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vorherige Warnung&lt;/b&gt;&lt;p&gt;Gehe zur vorherigen Zeile des aktuellen Editors, die eine pyflakes Warnung besitzt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4163"/>
+        <location filename="../ViewManager/ViewManager.py" line="4161"/>
         <source>&lt;b&gt;Clear Warning Messages&lt;/b&gt;&lt;p&gt;Clear pyflakes warning messages of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Warnungen löschen&lt;/b&gt;&lt;p&gt;Löscht die pyflakes Warnungen aller Editoren.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2778"/>
+        <location filename="../ViewManager/ViewManager.py" line="2776"/>
         <source>Complete</source>
         <translation>Vervollständigen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1327"/>
+        <location filename="../ViewManager/ViewManager.py" line="1326"/>
         <source>&amp;Complete</source>
         <translation>&amp;Vervollständigen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1327"/>
+        <location filename="../ViewManager/ViewManager.py" line="1326"/>
         <source>Ctrl+Space</source>
         <comment>Edit|Complete</comment>
         <translation>Ctrl+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1334"/>
+        <location filename="../ViewManager/ViewManager.py" line="1333"/>
         <source>Complete current word</source>
         <translation>Aktuelles Wort vervollständigen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1336"/>
+        <location filename="../ViewManager/ViewManager.py" line="1335"/>
         <source>&lt;b&gt;Complete&lt;/b&gt;&lt;p&gt;Performs a completion of the word containing the cursor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vervollständigen&lt;/b&gt;&lt;p&gt;Führt eine Vervollständigung des Wortes, das den Cursor enthält, durch.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1345"/>
+        <location filename="../ViewManager/ViewManager.py" line="1344"/>
         <source>Complete from Document</source>
         <translation>Vervollständigung vom Dokument</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1345"/>
+        <location filename="../ViewManager/ViewManager.py" line="1344"/>
         <source>Ctrl+Shift+Space</source>
         <comment>Edit|Complete from Document</comment>
         <translation>Ctrl+Shift+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1355"/>
+        <location filename="../ViewManager/ViewManager.py" line="1354"/>
         <source>Complete current word from Document</source>
         <translation>Aktuelles Wort vom Dokument vervollständigen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1358"/>
+        <location filename="../ViewManager/ViewManager.py" line="1357"/>
         <source>&lt;b&gt;Complete from Document&lt;/b&gt;&lt;p&gt;Performs a completion from document of the word containing the cursor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vervollständigung vom Dokument&lt;/b&gt;&lt;p&gt;Vervollständigt das Wort, das den Cursor enthält, vom Dokument.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1368"/>
+        <location filename="../ViewManager/ViewManager.py" line="1367"/>
         <source>Complete from APIs</source>
         <translation>Vervollständigung von APIs</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1368"/>
+        <location filename="../ViewManager/ViewManager.py" line="1367"/>
         <source>Ctrl+Alt+Space</source>
         <comment>Edit|Complete from APIs</comment>
         <translation>Ctrl+Alt+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1378"/>
+        <location filename="../ViewManager/ViewManager.py" line="1377"/>
         <source>Complete current word from APIs</source>
         <translation>Aktuelles Wort von APIs vervollständigen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1381"/>
+        <location filename="../ViewManager/ViewManager.py" line="1380"/>
         <source>&lt;b&gt;Complete from APIs&lt;/b&gt;&lt;p&gt;Performs a completion from APIs of the word containing the cursor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vervollständigung von APIs&lt;/b&gt;&lt;p&gt;Vervollständigt das Wort, das den Cursor enthält, von APIs.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1391"/>
+        <location filename="../ViewManager/ViewManager.py" line="1390"/>
         <source>Complete from Document and APIs</source>
         <translation>Vervollständigung vom Dokument und von APIs</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1391"/>
+        <location filename="../ViewManager/ViewManager.py" line="1390"/>
         <source>Alt+Shift+Space</source>
         <comment>Edit|Complete from Document and APIs</comment>
         <translation>Alt+Shift+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1401"/>
+        <location filename="../ViewManager/ViewManager.py" line="1400"/>
         <source>Complete current word from Document and APIs</source>
         <translation>Aktuelles Wort vom Dokument und von APIs vervollständigen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1404"/>
+        <location filename="../ViewManager/ViewManager.py" line="1403"/>
         <source>&lt;b&gt;Complete from Document and APIs&lt;/b&gt;&lt;p&gt;Performs a completion from document and APIs of the word containing the cursor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vervollständigung vom Dokument und von APIs&lt;/b&gt;&lt;p&gt;Vervollständigt das Wort, das den Cursor enthält, vom Dokument und von APIs.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1414"/>
+        <location filename="../ViewManager/ViewManager.py" line="1413"/>
         <source>Meta+Alt+Space</source>
         <comment>Edit|Calltip</comment>
         <translation>Meta+Alt+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="748"/>
+        <location filename="../ViewManager/ViewManager.py" line="747"/>
         <source>Save Copy</source>
         <translation>Kopie speichern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="748"/>
+        <location filename="../ViewManager/ViewManager.py" line="747"/>
         <source>Save &amp;Copy...</source>
         <translation>&amp;Kopie speichern...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="753"/>
+        <location filename="../ViewManager/ViewManager.py" line="752"/>
         <source>Save a copy of the current file</source>
         <translation>Speichert eine Kopie der aktuellen Datei</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="755"/>
+        <location filename="../ViewManager/ViewManager.py" line="754"/>
         <source>&lt;b&gt;Save Copy&lt;/b&gt;&lt;p&gt;Save a copy of the contents of current editor window. The file can be entered in a file selection dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Kopie speichern&lt;/b&gt;&lt;p&gt;Speichern einer Kopie des Inhalts des aktuellen Editorfensters. Die Datei kann mit einem Dateiauswahldialog eingegeben werden.&lt;/p&gt;</translation>
     </message>
@@ -81472,141 +81477,141 @@
         <translation>Ctrl+G</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3022"/>
+        <location filename="../ViewManager/ViewManager.py" line="3020"/>
         <source>Replace and Search</source>
         <translation>Ersetzen und Suchen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3022"/>
+        <location filename="../ViewManager/ViewManager.py" line="3020"/>
         <source>Meta+R</source>
         <comment>Search|Replace and Search</comment>
         <translation>Meta+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3032"/>
+        <location filename="../ViewManager/ViewManager.py" line="3030"/>
         <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="3035"/>
+        <location filename="../ViewManager/ViewManager.py" line="3033"/>
         <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="3046"/>
+        <location filename="../ViewManager/ViewManager.py" line="3044"/>
         <source>Replace Occurrence</source>
         <translation>Fundstelle ersetzen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3046"/>
+        <location filename="../ViewManager/ViewManager.py" line="3044"/>
         <source>Ctrl+Meta+R</source>
         <comment>Search|Replace Occurrence</comment>
         <translation>Ctrl+Meta+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3056"/>
+        <location filename="../ViewManager/ViewManager.py" line="3054"/>
         <source>Replace the found text</source>
         <translation>Ersetzt den gefundenen Text</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3058"/>
+        <location filename="../ViewManager/ViewManager.py" line="3056"/>
         <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="3068"/>
+        <location filename="../ViewManager/ViewManager.py" line="3066"/>
         <source>Replace All</source>
         <translation>Alle ersetzen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3068"/>
+        <location filename="../ViewManager/ViewManager.py" line="3066"/>
         <source>Shift+Meta+R</source>
         <comment>Search|Replace All</comment>
         <translation>Shift+Meta+R</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3076"/>
+        <source>Replace search text occurrences</source>
+        <translation>Ersetzt alle Fundstellen des Suchtextes</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3078"/>
-        <source>Replace search text occurrences</source>
-        <translation>Ersetzt alle Fundstellen des Suchtextes</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3080"/>
         <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>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1432"/>
+        <location filename="../ViewManager/ViewManager.py" line="1431"/>
         <source>Code Info</source>
         <translation>Code Info</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1432"/>
+        <location filename="../ViewManager/ViewManager.py" line="1431"/>
         <source>Ctrl+Alt+I</source>
         <comment>Edit|Code Info</comment>
         <translation>Ctrl+Alt+I</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1440"/>
+        <location filename="../ViewManager/ViewManager.py" line="1439"/>
         <source>Show Code Info</source>
         <translation>Code Informationen anzeigen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1442"/>
+        <location filename="../ViewManager/ViewManager.py" line="1441"/>
         <source>&lt;b&gt;Code Info&lt;/b&gt;&lt;p&gt;Show code information based on the cursor position.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Code Info&lt;/b&gt;&lt;p&gt;Zeigt Code Informationen basierend auf der aktuellen Cursorposition an.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3614"/>
+        <source>Clear all folds</source>
+        <translation>Alle Faltungen aufklappen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3610"/>
+        <source>Clear &amp;all folds</source>
+        <translation>Alle &amp;Faltungen aufklappen</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3616"/>
-        <source>Clear all folds</source>
-        <translation>Alle Faltungen aufklappen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3612"/>
-        <source>Clear &amp;all folds</source>
-        <translation>Alle &amp;Faltungen aufklappen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3618"/>
         <source>&lt;b&gt;Clear all folds&lt;/b&gt;&lt;p&gt;Clear all folds of the current editor, i.e. ensure that all lines are displayed unfolded.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Alle Faltungen aufklappen&lt;/b&gt;&lt;p&gt;Alle Faltungen des aktuellen Editors aufklappen, d.h. sicherstellen, dass alle Zeilen angezeigt werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2150"/>
+        <location filename="../ViewManager/ViewManager.py" line="2148"/>
         <source>Reverse selected lines</source>
         <translation>Ausgewählte Zeilen umkehren</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2150"/>
+        <location filename="../ViewManager/ViewManager.py" line="2148"/>
         <source>Meta+Alt+R</source>
         <translation>Meta+Ctrl+Alt+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3776"/>
+        <location filename="../ViewManager/ViewManager.py" line="3774"/>
         <source>Python AST Viewer</source>
         <translation>Python AST Anzeige</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3779"/>
+        <source>Show the AST for the current Python file</source>
+        <translation>Zeigt den AST für die aktuelle Python Datei</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3781"/>
-        <source>Show the AST for the current Python file</source>
-        <translation>Zeigt den AST für die aktuelle Python Datei</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3783"/>
         <source>&lt;b&gt;Python AST Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the AST of the current Python source file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Python AST Anzeige&lt;b&gt;&lt;p&gt;Dies öffnet eine Baumansicht mit dem AST der aktuellen Python Quelltextdatei.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3793"/>
+        <location filename="../ViewManager/ViewManager.py" line="3791"/>
         <source>Python Disassembly Viewer</source>
         <translation>Python Disassembly Anzeige</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3798"/>
+        <source>Show the Disassembly for the current Python file</source>
+        <translation>Zeigt ein Disassembly für die aktuelle Python Datei</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3800"/>
-        <source>Show the Disassembly for the current Python file</source>
-        <translation>Zeigt ein Disassembly für die aktuelle Python Datei</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3802"/>
         <source>&lt;b&gt;Python Disassembly Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the Disassembly of the current Python source file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Python Disassembly Anzeige&lt;/b&gt;&lt;p&gt;Dies öffnet eine Baumansicht mit einer Disassembly der aktuellen Python Quelltextdatei.&lt;/p&gt;</translation>
     </message>
@@ -84502,7 +84507,7 @@
 <context>
     <name>WebBrowserTools</name>
     <message>
-        <location filename="../WebBrowser/Tools/WebBrowserTools.py" line="249"/>
+        <location filename="../WebBrowser/Tools/WebBrowserTools.py" line="251"/>
         <source>&lt;unknown&gt;</source>
         <translation>&lt;unbekannt&gt;</translation>
     </message>
@@ -87171,58 +87176,58 @@
     <name>YandexEngine</name>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="38"/>
-        <source>Invalid API key.</source>
-        <translation>Ungültiger API Schlüssel.</translation>
+        <source>Yandex: Invalid API key.</source>
+        <translation>Yandex: Ungültiger API Schlüssel.</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="39"/>
-        <source>API key has been blocked.</source>
-        <translation>API Schlüssel wurde blockiert.</translation>
+        <source>Yandex: API key has been blocked.</source>
+        <translation>Yandex: API Schlüssel wurde blockiert.</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="40"/>
-        <source>Daily limit for requests has been reached.</source>
-        <translation>Das Tageslimit für Abfragen wurde erreicht.</translation>
+        <source>Yandex: Daily limit for requests has been reached.</source>
+        <translation>Yandex: Das Tageslimit für Abfragen wurde erreicht.</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="41"/>
-        <source>Daily limit for the volume of translated text reached.</source>
-        <translation>Das Tageslimit für das Volumen an übersetztem Text wurde erreicht.</translation>
+        <source>Yandex: Daily limit for the volume of translated text reached.</source>
+        <translation>Yandex: Das Tageslimit für das Volumen an übersetztem Text wurde erreicht.</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="43"/>
-        <source>Text size exceeds the maximum.</source>
-        <translation>Die Textgröße überschreitet das Maximum.</translation>
+        <source>Yandex: Text size exceeds the maximum.</source>
+        <translation>Yandex: Die Textgröße überschreitet das Maximum.</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="44"/>
-        <source>Text could not be translated.</source>
-        <translation>Der Text konnte nicht übersetzt werden.</translation>
+        <source>Yandex: Text could not be translated.</source>
+        <translation>Yandex: Der Text konnte nicht übersetzt werden.</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="45"/>
-        <source>The specified translation direction is not supported.</source>
-        <translation>Die angegebene Übersetzungsrichtung wird nicht unterstützt.</translation>
+        <source>Yandex: The specified translation direction is not supported.</source>
+        <translation>Yandex: Die angegebene Übersetzungsrichtung wird nicht unterstützt.</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="86"/>
-        <source>Only texts up to {0} characters are allowed.</source>
-        <translation>Es sind nur Texte bis zu {0} Zeichen erlaubt.</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="91"/>
-        <source>A valid Yandex key is required.</source>
-        <translation>Ein gülter Yandex Schlüssel ist erforderlich.</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="106"/>
-        <source>Invalid response received</source>
-        <translation>Ungültige Antwort empfangen</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="112"/>
-        <source>Unknown error code ({0}) received.</source>
-        <translation>Unbekannte Fehlerkennung ({0}) empfangen.</translation>
+        <source>Yandex: Only texts up to {0} characters are allowed.</source>
+        <translation>Yandex: Es sind nur Texte bis zu {0} Zeichen erlaubt.</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="109"/>
+        <source>Yandex: Invalid response received</source>
+        <translation>Yandex: Ungültige Antwort empfangen</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="115"/>
+        <source>Yandex: Unknown error code ({0}) received.</source>
+        <translation>Yandex: Unbekannte Fehlerkennung ({0}) empfangen.</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="94"/>
+        <source>Yandex: A valid key is required.</source>
+        <translation>Yandex: Ein gülter Schlüssel ist erforderlich.</translation>
     </message>
 </context>
 <context>
@@ -87661,417 +87666,417 @@
 <context>
     <name>pycodestyle</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="24"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="22"/>
         <source>indentation contains mixed spaces and tabs</source>
         <translation>Einrückung enthält einen Mix aus Leerzeichen und Tabulatoren</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="27"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="25"/>
         <source>indentation is not a multiple of four</source>
         <translation>Einrückung ist kein Mehrfaches von Vier</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="30"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="28"/>
         <source>expected an indented block</source>
         <translation>ein eingerückter Block wurde erwartet</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="33"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="31"/>
         <source>unexpected indentation</source>
         <translation>unerwartete Einrückung</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="36"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="34"/>
         <source>indentation is not a multiple of four (comment)</source>
         <translation>Einrückung ist kein Mehrfaches von Vier (Kommentar)</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="39"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="37"/>
         <source>expected an indented block (comment)</source>
         <translation>ein eingerückter Block wurde erwartet (Kommentar)</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="42"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="40"/>
         <source>unexpected indentation (comment)</source>
         <translation>unerwartete Einrückung (Kommentar)</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="48"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="46"/>
         <source>continuation line indentation is not a multiple of four</source>
         <translation>Einrückung der Fortsetzungszeile ist kein Vielfaches von Vier</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="51"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="49"/>
         <source>continuation line missing indentation or outdented</source>
         <translation>fehlende Einrückung der Fortsetzungzeile oder sie wurde ausgerückt</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="54"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="52"/>
         <source>closing bracket does not match indentation of opening bracket&apos;s line</source>
         <translation>Einrückung der schließenden Klammer ungleich der Zeile der öffnenden Klammer</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="58"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="56"/>
         <source>closing bracket does not match visual indentation</source>
         <translation>schließende Klammer passt nicht zur visuellen Einrückung</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="61"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="59"/>
         <source>continuation line with same indent as next logical line</source>
         <translation>Einrückung der Fortsetzungszeile unterscheidet sich nicht von der nächsten logischen Zeile</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="64"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="62"/>
         <source>continuation line over-indented for hanging indent</source>
         <translation>Fortsetzungszeile zu weit eingerückt für hängende Einrückung</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="67"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="65"/>
         <source>continuation line over-indented for visual indent</source>
         <translation>Fortsetzungszeile zu weit eingerückt für visuelle Einrückung</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="70"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="68"/>
         <source>continuation line under-indented for visual indent</source>
         <translation>Fortsetzungszeile zu wenig eingerückt für visuelle Einrückung</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="73"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="71"/>
         <source>visually indented line with same indent as next logical line</source>
         <translation>visuelle Einrückung identisch mit der Einrückung der nächsten logischen Zeile</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="76"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="74"/>
         <source>continuation line unaligned for hanging indent</source>
         <translation>Fortsetzungszeile für hängenden Einrückung nicht richtig ausgerichtet</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="79"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="77"/>
         <source>closing bracket is missing indentation</source>
         <translation>Einrückung bei schließender Klammer fehlt</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="82"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="80"/>
         <source>indentation contains tabs</source>
         <translation>Einrückung enthält Tabulatoren</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="85"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="83"/>
         <source>whitespace after &apos;{0}&apos;</source>
         <translation>Leerzeichen nach „{0}“</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="94"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="92"/>
         <source>whitespace before &apos;{0}&apos;</source>
         <translation>Leerzeichen vor „{0}“</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="97"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="95"/>
         <source>multiple spaces before operator</source>
         <translation>mehrfache Leerzeichen vor Operator</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="100"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="98"/>
         <source>multiple spaces after operator</source>
         <translation>mehrfache Leerzeichen nach Operator</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="103"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="101"/>
         <source>tab before operator</source>
         <translation>Tabulator vor Operator</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="106"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="104"/>
         <source>tab after operator</source>
         <translation>Tabulator nach Operator</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="109"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="107"/>
         <source>missing whitespace around operator</source>
         <translation>fehlende Leerzeichen um Operator</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="112"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="110"/>
         <source>missing whitespace around arithmetic operator</source>
         <translation>fehlende Leerzeichen um Arithmetikoperator</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="115"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="113"/>
         <source>missing whitespace around bitwise or shift operator</source>
         <translation>fehlende Leerzeichen um Bit- oder Shiftoperator</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="118"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="116"/>
         <source>missing whitespace around modulo operator</source>
         <translation>fehlende Leerzeichen um Modulooperator</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="121"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="119"/>
         <source>missing whitespace after &apos;{0}&apos;</source>
         <translation>fehlende Leerzeichen nach „{0}“</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="124"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="122"/>
         <source>multiple spaces after &apos;{0}&apos;</source>
         <translation>mehrfache Leerzeichen nach „{0}“</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="127"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="125"/>
         <source>tab after &apos;{0}&apos;</source>
         <translation>Tabulator nach „{0}“</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="130"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="128"/>
         <source>unexpected spaces around keyword / parameter equals</source>
         <translation>unerwartete Leerzeichen um Schlüsselwort- / Parameter-Gleichheitszeichen</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="136"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="134"/>
         <source>at least two spaces before inline comment</source>
         <translation>mindestens zwei Leerzeichen vor einem Inline-Kommentar</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="139"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="137"/>
         <source>inline comment should start with &apos;# &apos;</source>
         <translation>Inline-Kommentar sollte mit „# “ beginnen</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="142"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="140"/>
         <source>block comment should start with &apos;# &apos;</source>
         <translation>Blockkommentar soll mit &apos;# &apos; beginnen</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="145"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="143"/>
         <source>too many leading &apos;#&apos; for block comment</source>
         <translation>zu viele führende &apos;#&apos; für einen Blockkommentar</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="148"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="146"/>
         <source>multiple spaces after keyword</source>
         <translation>mehrfache Leerzeichen nach Schlüsselwort</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="151"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="149"/>
         <source>multiple spaces before keyword</source>
         <translation>mehrfache Leerzeichen vor Schlüsselwort</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="154"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="152"/>
         <source>tab after keyword</source>
         <translation>Tabulator nach Schlüsselwort</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="157"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="155"/>
         <source>tab before keyword</source>
         <translation>Tabulator vor Schlüsselwort</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="160"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="158"/>
         <source>missing whitespace after keyword</source>
         <translation>fehlende Leerzeichen nach Schlüsselwort</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="163"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="161"/>
         <source>trailing whitespace</source>
         <translation>abschließende Leerzeichen</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="166"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="164"/>
         <source>no newline at end of file</source>
         <translation>kein Zeilenumbruch am Dateiende</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="169"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="167"/>
         <source>blank line contains whitespace</source>
         <translation>leere Zeile enthält Leerzeichen</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="194"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="192"/>
         <source>too many blank lines ({0})</source>
         <translation>zu viele leere Zeilen ({0})</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="181"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="179"/>
         <source>blank lines found after function decorator</source>
         <translation>leere Zeile nach Funktionsdekorator gefunden</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="197"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="195"/>
         <source>blank line at end of file</source>
         <translation>leere Zeile am Dateiende</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="200"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="198"/>
         <source>multiple imports on one line</source>
         <translation>mehrfache Importe in einer Zeile</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="203"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="201"/>
         <source>module level import not at top of file</source>
         <translation>Modul Import nicht am Dateianfang</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="206"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="204"/>
         <source>line too long ({0} &gt; {1} characters)</source>
         <translation>Zeile zu lang ({0} &gt; {1} Zeichen)</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="209"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="207"/>
         <source>the backslash is redundant between brackets</source>
         <translation>Backslash ist redundant innerhalb von Klammern</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="212"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="210"/>
         <source>line break before binary operator</source>
         <translation>Zeilenumbruch vor Binäroperator</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="221"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="219"/>
         <source>.has_key() is deprecated, use &apos;in&apos;</source>
         <translation>.has_key() ist veraltet, verwende „in“</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="224"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="222"/>
         <source>deprecated form of raising exception</source>
         <translation>veraltete Art Ausnahmen zu werfen</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="227"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="225"/>
         <source>&apos;&lt;&gt;&apos; is deprecated, use &apos;!=&apos;</source>
         <translation>„&lt;&gt;“ is veraltet, verwende „!=“</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="230"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="228"/>
         <source>backticks are deprecated, use &apos;repr()&apos;</source>
         <translation>Backticks sind ungültig, verwende „repr()“</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="239"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="237"/>
         <source>multiple statements on one line (colon)</source>
         <translation>mehrere Anweisungen in einer Zeile (Doppelpunkt)</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="242"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="240"/>
         <source>multiple statements on one line (semicolon)</source>
         <translation>mehrere Anweisungen in einer Zeile (Semikolon)</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="245"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="243"/>
         <source>statement ends with a semicolon</source>
         <translation>Anweisung endet mit einem Semikolon</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="248"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="246"/>
         <source>multiple statements on one line (def)</source>
         <translation>mehrere Anweisungen in einer Zeile (def)</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="254"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="252"/>
         <source>comparison to {0} should be {1}</source>
         <translation>Vergleich mit {0} sollte {1} sein</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="257"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="255"/>
         <source>test for membership should be &apos;not in&apos;</source>
         <translation>Test auf Nicht-Mitgliederschaft soll mit &apos;not in&apos; erfolgen</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="260"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="258"/>
         <source>test for object identity should be &apos;is not&apos;</source>
         <translation>Test auf Ungleichheit der Objekte soll mit &apos;is not&apos; erfolgen</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="263"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="261"/>
         <source>do not compare types, use &apos;isinstance()&apos;</source>
         <translation>vergleiche keine Typen, verwende &apos;isinstance()&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="269"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="267"/>
         <source>do not assign a lambda expression, use a def</source>
         <translation>weise keine Lambda Ausdrücke zu, nutze def</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="272"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="270"/>
         <source>ambiguous variable name &apos;{0}&apos;</source>
         <translation>mehrdeutiger Variablenname &apos;{0}&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="275"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="273"/>
         <source>ambiguous class definition &apos;{0}&apos;</source>
         <translation>mehrdeutige Klassenbezeichnung &apos;{0}&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="278"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="276"/>
         <source>ambiguous function definition &apos;{0}&apos;</source>
         <translation>mehrdeutige Funktionsbezeichnung &apos;{0}&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="281"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="279"/>
         <source>{0}: {1}</source>
         <translation>{0}: {1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="284"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="282"/>
         <source>{0}</source>
         <translation>{0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="266"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="264"/>
         <source>do not use bare except</source>
         <translation>verwende kein leeres &apos;except&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="184"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="182"/>
         <source>expected {0} blank lines after class or function definition, found {1}</source>
         <translation>erwartete {0} Leerzeilen nach Klassen- oder Funktionsdefinition, {1} gefunden</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="236"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="234"/>
         <source>&apos;async&apos; and &apos;await&apos; are reserved keywords starting with Python 3.7</source>
         <translation>&apos;async&apos; und &apos;await&apos; sind ab Python 3.7 reservierte Schlüsselwörter</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="133"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="131"/>
         <source>missing whitespace around parameter equals</source>
         <translation>fehlende Leerzeichen um Parameter-Gleichheitszeichen</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="175"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="173"/>
         <source>expected {0} blank lines, found {1}</source>
         <translation>erwartete {0} leere Zeilen, {1} gefunden</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="188"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="186"/>
         <source>expected {0} blank lines before a nested definition, found {1}</source>
         <translation>erwartete {0} Leerzeilen vor einer geschachtelten Definition, {1} gefunden</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="215"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="213"/>
         <source>line break after binary operator</source>
         <translation>Zeilenumbruch nach Binäroperator</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="233"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="231"/>
         <source>invalid escape sequence &apos;\{0}&apos;</source>
         <translation>ungültige Escape-Sequenz &apos;\{0}&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="191"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="189"/>
         <source>too many blank lines ({0}) before a nested definition, expected {1}</source>
         <translation>zu viele leere Zeilen ({0}) vor einer geschachtelten Definition, erwartete {1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="178"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="176"/>
         <source>too many blank lines ({0}), expected {1}</source>
         <translation>zu viele leere Zeilen ({0}), erwartete {1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="45"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="43"/>
         <source>over-indented</source>
         <translation>zu weit eingerückt</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="218"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="216"/>
         <source>doc line too long ({0} &gt; {1} characters)</source>
         <translation>Dokumentationszeile zu lang ({0} &gt; {1} Zeichen)</translation>
     </message>
--- a/eric6/i18n/eric6_empty.ts	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/i18n/eric6_empty.ts	Sun Oct 04 16:28:51 2020 +0200
@@ -1088,72 +1088,72 @@
 <context>
     <name>AnnotationsChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="808"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="806"/>
         <source>missing type annotation for function argument &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="811"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="809"/>
         <source>missing type annotation for &apos;*{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="814"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="812"/>
         <source>missing type annotation for &apos;**{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="823"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="821"/>
         <source>missing return type annotation for public function</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="826"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="824"/>
         <source>missing return type annotation for protected function</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="829"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="827"/>
         <source>missing return type annotation for private function</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="832"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="830"/>
         <source>missing return type annotation for special method</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="835"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="833"/>
         <source>missing return type annotation for staticmethod</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="838"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="836"/>
         <source>missing return type annotation for classmethod</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="850"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="848"/>
         <source>{0}: {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="817"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="815"/>
         <source>missing type annotation for &apos;self&apos; in method</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="820"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="818"/>
         <source>missing type annotation for &apos;cls&apos; in classmethod</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="842"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="840"/>
         <source>type annotation coverage of {0}% is too low</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="846"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="844"/>
         <source>type annotation is too complex ({0} &gt; {1})</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3309,7 +3309,7 @@
 <context>
     <name>CodeStyleChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="1130"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="1128"/>
         <source>No message defined for code &apos;{0}&apos;.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -4021,221 +4021,221 @@
 <context>
     <name>CodeStyleFixer</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="858"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="856"/>
         <source>Triple single quotes converted to triple double quotes.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="861"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="859"/>
         <source>Introductory quotes corrected to be {0}&quot;&quot;&quot;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="864"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="862"/>
         <source>Single line docstring put on one line.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="867"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="865"/>
         <source>Period added to summary line.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="894"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="892"/>
         <source>Blank line before function/method docstring removed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="873"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="871"/>
         <source>Blank line inserted before class docstring.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="876"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="874"/>
         <source>Blank line inserted after class docstring.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="879"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="877"/>
         <source>Blank line inserted after docstring summary.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="882"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="880"/>
         <source>Blank line inserted after last paragraph of docstring.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="885"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="883"/>
         <source>Leading quotes put on separate line.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="888"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="886"/>
         <source>Trailing quotes put on separate line.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="891"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="889"/>
         <source>Blank line before class docstring removed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="897"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="895"/>
         <source>Blank line after class docstring removed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="900"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="898"/>
         <source>Blank line after function/method docstring removed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="903"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="901"/>
         <source>Blank line after last paragraph removed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="906"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="904"/>
         <source>Tab converted to 4 spaces.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="909"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="907"/>
         <source>Indentation adjusted to be a multiple of four.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="912"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="910"/>
         <source>Indentation of continuation line corrected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="915"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="913"/>
         <source>Indentation of closing bracket corrected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="918"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="916"/>
         <source>Missing indentation of continuation line corrected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="921"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="919"/>
         <source>Closing bracket aligned to opening bracket.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="924"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="922"/>
         <source>Indentation level changed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="927"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="925"/>
         <source>Indentation level of hanging indentation changed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="930"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="928"/>
         <source>Visual indentation corrected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="945"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="943"/>
         <source>Extraneous whitespace removed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="942"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="940"/>
         <source>Missing whitespace added.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="948"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="946"/>
         <source>Whitespace around comment sign corrected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="952"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="950"/>
         <source>%n blank line(s) inserted.</source>
         <translation type="unfinished">
             <numerusform></numerusform>
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="955"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="953"/>
         <source>%n superfluous lines removed</source>
         <translation type="unfinished">
             <numerusform></numerusform>
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="959"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="957"/>
         <source>Superfluous blank lines removed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="962"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="960"/>
         <source>Superfluous blank lines after function decorator removed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="965"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="963"/>
         <source>Imports were put on separate lines.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="968"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="966"/>
         <source>Long lines have been shortened.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="971"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="969"/>
         <source>Redundant backslash in brackets removed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="977"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="975"/>
         <source>Compound statement corrected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="980"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="978"/>
         <source>Comparison to None/True/False corrected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="983"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="981"/>
         <source>&apos;{0}&apos; argument added.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="986"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="984"/>
         <source>&apos;{0}&apos; argument removed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="989"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="987"/>
         <source>Whitespace stripped from end of line.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="992"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="990"/>
         <source>newline added to end of file.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="995"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="993"/>
         <source>Superfluous trailing blank lines removed from end of file.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="998"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="996"/>
         <source>&apos;&lt;&gt;&apos; replaced by &apos;!=&apos;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="1002"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="1000"/>
         <source>Could not save the file! Skipping it. Reason: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -4715,22 +4715,22 @@
 <context>
     <name>ComplexityChecker</name>
     <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="477"/>
+        <source>&apos;{0}&apos; is too complex ({1})</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="479"/>
-        <source>&apos;{0}&apos; is too complex ({1})</source>
+        <source>source code line is too complex ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="481"/>
-        <source>source code line is too complex ({0})</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="483"/>
         <source>overall source code line complexity is too high ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="486"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="484"/>
         <source>{0}: {1}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -8057,30 +8057,30 @@
 <context>
     <name>DeepLEngine</name>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="73"/>
-        <source>Text to be translated exceeds the translation limit of {0} characters.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="95"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="98"/>
         <source>Invalid response received from DeepL</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="98"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="101"/>
         <source>DeepL call returned an unknown result</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="102"/>
-        <source>&lt;p&gt;No translation found&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="79"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="82"/>
         <source>A valid DeepL Pro key is required.</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="73"/>
+        <source>DeepL: Text to be translated exceeds the translation limit of {0} characters.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="105"/>
+        <source>&lt;p&gt;DeepL: No translation found&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>DeleteFilesConfirmationDialog</name>
@@ -8345,237 +8345,237 @@
 <context>
     <name>DocStyleChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="291"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="289"/>
         <source>module is missing a docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="293"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="291"/>
         <source>public function/method is missing a docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="296"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="294"/>
         <source>private function/method may be missing a docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="297"/>
+        <source>public class is missing a docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="299"/>
-        <source>public class is missing a docstring</source>
+        <source>private class may be missing a docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="301"/>
-        <source>private class may be missing a docstring</source>
+        <source>docstring not surrounded by &quot;&quot;&quot;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="303"/>
-        <source>docstring not surrounded by &quot;&quot;&quot;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="305"/>
         <source>docstring containing \ not surrounded by r&quot;&quot;&quot;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="306"/>
+        <source>one-liner docstring on multiple lines</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="308"/>
-        <source>one-liner docstring on multiple lines</source>
+        <source>docstring has wrong indentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="310"/>
-        <source>docstring has wrong indentation</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="312"/>
         <source>docstring does not contain a summary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="357"/>
+        <source>docstring summary does not end with a period</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="314"/>
+        <source>docstring summary is not in imperative mood (Does instead of Do)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="318"/>
+        <source>docstring summary looks like a function&apos;s/method&apos;s signature</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="321"/>
+        <source>docstring does not mention the return value type</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="324"/>
+        <source>function/method docstring is separated by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="327"/>
+        <source>class docstring is not preceded by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="330"/>
+        <source>class docstring is not followed by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="391"/>
+        <source>docstring summary is not followed by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="336"/>
+        <source>last paragraph of docstring is not followed by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="344"/>
+        <source>private function/method is missing a docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="347"/>
+        <source>private class is missing a docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="351"/>
+        <source>leading quotes of docstring not on separate line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="354"/>
+        <source>trailing quotes of docstring not on separate line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="359"/>
-        <source>docstring summary does not end with a period</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="316"/>
-        <source>docstring summary is not in imperative mood (Does instead of Do)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="320"/>
-        <source>docstring summary looks like a function&apos;s/method&apos;s signature</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="323"/>
-        <source>docstring does not mention the return value type</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="326"/>
-        <source>function/method docstring is separated by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="329"/>
-        <source>class docstring is not preceded by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="332"/>
-        <source>class docstring is not followed by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="393"/>
-        <source>docstring summary is not followed by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="338"/>
-        <source>last paragraph of docstring is not followed by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="346"/>
-        <source>private function/method is missing a docstring</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="349"/>
-        <source>private class is missing a docstring</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="353"/>
-        <source>leading quotes of docstring not on separate line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="356"/>
-        <source>trailing quotes of docstring not on separate line</source>
+        <source>docstring summary does not start with &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="361"/>
-        <source>docstring summary does not start with &apos;{0}&apos;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="363"/>
         <source>docstring does not contain a @return line but function/method returns something</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="367"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="365"/>
         <source>docstring contains a @return line but function/method doesn&apos;t return anything</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="371"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="369"/>
         <source>docstring does not contain enough @param/@keyparam lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="374"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="372"/>
         <source>docstring contains too many @param/@keyparam lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="377"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="375"/>
         <source>keyword only arguments must be documented with @keyparam lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="380"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="378"/>
         <source>order of @param/@keyparam lines does not match the function/method signature</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="381"/>
+        <source>class docstring is preceded by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="383"/>
-        <source>class docstring is preceded by a blank line</source>
+        <source>class docstring is followed by a blank line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="385"/>
-        <source>class docstring is followed by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="387"/>
         <source>function/method docstring is preceded by a blank line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="390"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="388"/>
         <source>function/method docstring is followed by a blank line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="396"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="394"/>
         <source>last paragraph of docstring is followed by a blank line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="399"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="397"/>
         <source>docstring does not contain a @exception line but function/method raises an exception</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="403"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="401"/>
         <source>docstring contains a @exception line but function/method doesn&apos;t raise an exception</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="426"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="424"/>
         <source>{0}: {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="407"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="405"/>
         <source>raised exception &apos;{0}&apos; is not documented in docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="410"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="408"/>
         <source>documented exception &apos;{0}&apos; is not raised</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="413"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="411"/>
         <source>docstring does not contain a @signal line but class defines signals</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="416"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="414"/>
         <source>docstring contains a @signal line but class doesn&apos;t define signals</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="419"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="417"/>
         <source>defined signal &apos;{0}&apos; is not documented in docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="422"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="420"/>
         <source>documented signal &apos;{0}&apos; is not defined</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="351"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="349"/>
         <source>class docstring is still a default string</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="344"/>
-        <source>function docstring is still a default string</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="342"/>
+        <source>function docstring is still a default string</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="340"/>
         <source>module docstring is still a default string</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10865,7 +10865,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7835"/>
+        <location filename="../QScintilla/Editor.py" line="7834"/>
         <source>Check spelling...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11135,7 +11135,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5605"/>
+        <location filename="../QScintilla/Editor.py" line="5604"/>
         <source>Enable breakpoint</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11310,327 +11310,327 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4767"/>
+        <location filename="../QScintilla/Editor.py" line="4766"/>
         <source>Autocompletion</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4767"/>
+        <location filename="../QScintilla/Editor.py" line="4766"/>
         <source>Autocompletion is not available because there is no autocompletion source set.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4897"/>
+        <location filename="../QScintilla/Editor.py" line="4896"/>
         <source>Auto-Completion Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4897"/>
+        <location filename="../QScintilla/Editor.py" line="4896"/>
         <source>The completion list provider &apos;{0}&apos; was already registered. Ignoring duplicate request.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5176"/>
+        <location filename="../QScintilla/Editor.py" line="5175"/>
         <source>Call-Tips Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5176"/>
+        <location filename="../QScintilla/Editor.py" line="5175"/>
         <source>The call-tips provider &apos;{0}&apos; was already registered. Ignoring duplicate request.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5608"/>
+        <location filename="../QScintilla/Editor.py" line="5607"/>
         <source>Disable breakpoint</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5983"/>
+        <location filename="../QScintilla/Editor.py" line="5982"/>
         <source>Code Coverage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5983"/>
+        <location filename="../QScintilla/Editor.py" line="5982"/>
         <source>Please select a coverage file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6046"/>
+        <location filename="../QScintilla/Editor.py" line="6045"/>
         <source>Show Code Coverage Annotations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6039"/>
+        <location filename="../QScintilla/Editor.py" line="6038"/>
         <source>All lines have been covered.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6046"/>
+        <location filename="../QScintilla/Editor.py" line="6045"/>
         <source>There is no coverage file available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6163"/>
+        <location filename="../QScintilla/Editor.py" line="6162"/>
         <source>Profile Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6163"/>
+        <location filename="../QScintilla/Editor.py" line="6162"/>
         <source>Please select a profile file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6325"/>
+        <location filename="../QScintilla/Editor.py" line="6324"/>
         <source>Syntax Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6325"/>
+        <location filename="../QScintilla/Editor.py" line="6324"/>
         <source>No syntax error message available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6537"/>
+        <location filename="../QScintilla/Editor.py" line="6536"/>
         <source>Warning</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6537"/>
+        <location filename="../QScintilla/Editor.py" line="6536"/>
         <source>No warning messages available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6599"/>
+        <location filename="../QScintilla/Editor.py" line="6598"/>
         <source>Style: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6602"/>
+        <location filename="../QScintilla/Editor.py" line="6601"/>
         <source>Warning: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6609"/>
+        <location filename="../QScintilla/Editor.py" line="6608"/>
         <source>Error: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6714"/>
+        <location filename="../QScintilla/Editor.py" line="6713"/>
         <source>Macro Name</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6714"/>
+        <location filename="../QScintilla/Editor.py" line="6713"/>
         <source>Select a macro name:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6742"/>
+        <location filename="../QScintilla/Editor.py" line="6741"/>
         <source>Load macro file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6785"/>
+        <location filename="../QScintilla/Editor.py" line="6784"/>
         <source>Macro files (*.macro)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6765"/>
+        <location filename="../QScintilla/Editor.py" line="6764"/>
         <source>Error loading macro</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6756"/>
+        <location filename="../QScintilla/Editor.py" line="6755"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6765"/>
+        <location filename="../QScintilla/Editor.py" line="6764"/>
         <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; is corrupt.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6785"/>
+        <location filename="../QScintilla/Editor.py" line="6784"/>
         <source>Save macro file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6802"/>
+        <location filename="../QScintilla/Editor.py" line="6801"/>
         <source>Save macro</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6802"/>
+        <location filename="../QScintilla/Editor.py" line="6801"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6818"/>
+        <location filename="../QScintilla/Editor.py" line="6817"/>
         <source>Error saving macro</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6818"/>
+        <location filename="../QScintilla/Editor.py" line="6817"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6831"/>
+        <location filename="../QScintilla/Editor.py" line="6830"/>
         <source>Start Macro Recording</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6831"/>
+        <location filename="../QScintilla/Editor.py" line="6830"/>
         <source>Macro recording is already active. Start new?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6857"/>
+        <location filename="../QScintilla/Editor.py" line="6856"/>
         <source>Macro Recording</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6857"/>
+        <location filename="../QScintilla/Editor.py" line="6856"/>
         <source>Enter name of the macro:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6987"/>
+        <location filename="../QScintilla/Editor.py" line="6986"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric6. Reread it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6993"/>
+        <location filename="../QScintilla/Editor.py" line="6992"/>
         <source>&lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reopening it.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6997"/>
+        <location filename="../QScintilla/Editor.py" line="6996"/>
         <source>File changed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7167"/>
+        <location filename="../QScintilla/Editor.py" line="7166"/>
         <source>{0} (ro)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7308"/>
+        <location filename="../QScintilla/Editor.py" line="7307"/>
         <source>Drop Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7308"/>
+        <location filename="../QScintilla/Editor.py" line="7307"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7329"/>
+        <location filename="../QScintilla/Editor.py" line="7328"/>
         <source>Resources</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7331"/>
+        <location filename="../QScintilla/Editor.py" line="7330"/>
         <source>Add file...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7333"/>
+        <location filename="../QScintilla/Editor.py" line="7332"/>
         <source>Add files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7335"/>
+        <location filename="../QScintilla/Editor.py" line="7334"/>
         <source>Add aliased file...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7338"/>
+        <location filename="../QScintilla/Editor.py" line="7337"/>
         <source>Add localized resource...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7342"/>
+        <location filename="../QScintilla/Editor.py" line="7341"/>
         <source>Add resource frame</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7361"/>
+        <location filename="../QScintilla/Editor.py" line="7360"/>
         <source>Add file resource</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7377"/>
+        <location filename="../QScintilla/Editor.py" line="7376"/>
         <source>Add file resources</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7404"/>
+        <location filename="../QScintilla/Editor.py" line="7403"/>
         <source>Add aliased file resource</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7404"/>
+        <location filename="../QScintilla/Editor.py" line="7403"/>
         <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7470"/>
+        <location filename="../QScintilla/Editor.py" line="7469"/>
         <source>Package Diagram</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7470"/>
+        <location filename="../QScintilla/Editor.py" line="7469"/>
         <source>Include class attributes?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7492"/>
+        <location filename="../QScintilla/Editor.py" line="7491"/>
         <source>Imports Diagram</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7492"/>
+        <location filename="../QScintilla/Editor.py" line="7491"/>
         <source>Include imports from external modules?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7506"/>
+        <location filename="../QScintilla/Editor.py" line="7505"/>
         <source>Application Diagram</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7506"/>
+        <location filename="../QScintilla/Editor.py" line="7505"/>
         <source>Include module names?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7838"/>
+        <location filename="../QScintilla/Editor.py" line="7837"/>
         <source>Add to dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7840"/>
+        <location filename="../QScintilla/Editor.py" line="7839"/>
         <source>Ignore All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8256"/>
+        <location filename="../QScintilla/Editor.py" line="8255"/>
         <source>Sort Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8256"/>
+        <location filename="../QScintilla/Editor.py" line="8255"/>
         <source>The selection contains illegal data for a numerical sort.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8345"/>
+        <location filename="../QScintilla/Editor.py" line="8344"/>
         <source>Register Mouse Click Handler</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8345"/>
+        <location filename="../QScintilla/Editor.py" line="8344"/>
         <source>A mouse click handler for &quot;{0}&quot; was already registered by &quot;{1}&quot;. Aborting request by &quot;{2}&quot;...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11655,12 +11655,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8466"/>
+        <location filename="../QScintilla/Editor.py" line="8465"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8466"/>
+        <location filename="../QScintilla/Editor.py" line="8465"/>
         <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"></translation>
     </message>
@@ -13428,27 +13428,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="681"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="685"/>
         <source>Delete Sub-Style</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="681"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="685"/>
         <source>&lt;p&gt;Shall the sub-style &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="721"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="725"/>
         <source>{0} - Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="749"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="753"/>
         <source>Reset Sub-Styles to Default</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="749"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="753"/>
         <source>&lt;p&gt;Do you really want to reset all defined sub-styles of &lt;b&gt;{0}&lt;/b&gt; to the default values?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -16988,27 +16988,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="102"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="81"/>
         <source>Qt Help Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="145"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="124"/>
         <source>Generate documentation (eric6_doc)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="145"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="124"/>
         <source>Generate &amp;documentation (eric6_doc)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="149"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="128"/>
         <source>Generate API documentation using eric6_doc</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="151"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="130"/>
         <source>&lt;b&gt;Generate documentation&lt;/b&gt;&lt;p&gt;Generate API documentation using eric6_doc.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -25840,27 +25840,27 @@
 <context>
     <name>Globals</name>
     <message>
-        <location filename="../Globals/__init__.py" line="452"/>
+        <location filename="../Globals/__init__.py" line="421"/>
         <source>{0:4.2f} Bytes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Globals/__init__.py" line="456"/>
+        <location filename="../Globals/__init__.py" line="425"/>
         <source>{0:4.2f} KiB</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Globals/__init__.py" line="460"/>
+        <location filename="../Globals/__init__.py" line="429"/>
         <source>{0:4.2f} MiB</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Globals/__init__.py" line="464"/>
+        <location filename="../Globals/__init__.py" line="433"/>
         <source>{0:4.2f} GiB</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Globals/__init__.py" line="468"/>
+        <location filename="../Globals/__init__.py" line="437"/>
         <source>{0:4.2f} TiB</source>
         <translation type="unfinished"></translation>
     </message>
@@ -25869,12 +25869,12 @@
     <name>GlosbeEngine</name>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GlosbeEngine.py" line="85"/>
-        <source>Invalid response received</source>
+        <source>Glosbe: Invalid response received</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GlosbeEngine.py" line="99"/>
-        <source>No translation found.</source>
+        <source>Glosbe: No translation found.</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -25882,17 +25882,17 @@
     <name>GoogleV1Engine</name>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV1Engine.py" line="98"/>
-        <source>Invalid response received</source>
+        <source>Google V1: Invalid response received</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV1Engine.py" line="135"/>
-        <source>No translation found.</source>
+        <source>Google V1: No translation found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV1Engine.py" line="165"/>
-        <source>Only texts up to {0} characters are allowed.</source>
+        <source>Google V1: Only texts up to {0} characters are allowed.</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -25900,17 +25900,17 @@
     <name>GoogleV2Engine</name>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="72"/>
-        <source>A valid Google Translate key is required.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="83"/>
-        <source>Invalid response received</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="89"/>
-        <source>No translation available.</source>
+        <source>Google V2: A valid Google Translate key is required.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="84"/>
+        <source>Google V2: Invalid response received</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="90"/>
+        <source>Google V2: No translation available.</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -35852,34 +35852,34 @@
 <context>
     <name>IbmWatsonEngine</name>
     <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
+        <source>Error Getting Available Translations</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
+        <source>IBM Watson: No translation available.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="183"/>
-        <source>A valid IBM Watson Language Translator key is required.</source>
+        <source>IBM Watson: A valid Language Translator key is required.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="192"/>
-        <source>A valid IBM Watson Language Translator URL is required.</source>
+        <source>IBM Watson: A valid Language Translator URL is required.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="244"/>
-        <source>Invalid response received</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
-        <source>No translation available.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
-        <source>Error Getting Available Translations</source>
+        <source>IBM Watson: Invalid response received</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="232"/>
-        <source>The server sent an error indication.
-Error: {0}</source>
+        <source>IBM Watson: The server sent an error indication.
+ Error: {0}</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -41598,610 +41598,615 @@
 <context>
     <name>Lexers</name>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="560"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="547"/>
         <source>Python3 Files (*.py)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="84"/>
+        <source>Bash</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="86"/>
-        <source>Bash</source>
+        <source>Batch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="88"/>
-        <source>Batch</source>
+        <source>C/C++</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="90"/>
-        <source>C/C++</source>
+        <source>C#</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="92"/>
-        <source>C#</source>
+        <source>CMake</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="94"/>
-        <source>CMake</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="96"/>
         <source>CSS</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="98"/>
+        <source>D</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="100"/>
-        <source>D</source>
+        <source>Diff</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="102"/>
-        <source>Diff</source>
+        <source>Fortran</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="104"/>
-        <source>Fortran</source>
+        <source>Fortran77</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="106"/>
-        <source>Fortran77</source>
+        <source>HTML/PHP/XML</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="108"/>
-        <source>HTML/PHP/XML</source>
+        <source>IDL</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="110"/>
-        <source>IDL</source>
+        <source>Java</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="112"/>
-        <source>Java</source>
+        <source>JavaScript</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="114"/>
-        <source>JavaScript</source>
+        <source>Lua</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="116"/>
-        <source>Lua</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="118"/>
         <source>Makefile</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="122"/>
+        <source>Pascal</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="124"/>
-        <source>Pascal</source>
+        <source>Perl</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="126"/>
-        <source>Perl</source>
+        <source>PostScript</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="128"/>
-        <source>PostScript</source>
+        <source>Povray</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="130"/>
-        <source>Povray</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="132"/>
         <source>Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="137"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="135"/>
         <source>Python3</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="139"/>
+        <source>QSS</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="141"/>
-        <source>QSS</source>
+        <source>Ruby</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="143"/>
-        <source>Ruby</source>
+        <source>SQL</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="145"/>
-        <source>SQL</source>
+        <source>TCL</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="147"/>
-        <source>TCL</source>
+        <source>TeX</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="149"/>
-        <source>TeX</source>
+        <source>VHDL</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="151"/>
-        <source>VHDL</source>
+        <source>XML</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="153"/>
-        <source>XML</source>
+        <source>YAML</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="118"/>
+        <source>Matlab</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="120"/>
+        <source>Octave</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="155"/>
-        <source>YAML</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="120"/>
-        <source>Matlab</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="122"/>
-        <source>Octave</source>
+        <source>Gettext</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="157"/>
-        <source>Gettext</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="159"/>
         <source>CoffeeScript</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="183"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="173"/>
         <source>Pygments</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="575"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="562"/>
         <source>Quixote Template Files (*.ptl)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="578"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="565"/>
         <source>Ruby Files (*.rb)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="581"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="568"/>
         <source>IDL Files (*.idl)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="408"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="398"/>
         <source>C Files (*.h *.c)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="411"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="401"/>
         <source>C++ Files (*.h *.hpp *.hh *.cxx *.cpp *.cc)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="596"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="583"/>
         <source>C# Files (*.cs)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="417"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="407"/>
         <source>HTML Files (*.html *.htm *.asp *.shtml)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="608"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="595"/>
         <source>CSS Files (*.css)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="611"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="598"/>
         <source>QSS Files (*.qss)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="426"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="416"/>
         <source>PHP Files (*.php *.php3 *.php4 *.php5 *.phtml)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="429"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="419"/>
         <source>XML Files (*.xml *.xsl *.xslt *.dtd *.svg *.xul *.xsd)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="623"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="610"/>
         <source>Qt Resource Files (*.qrc)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="435"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="425"/>
         <source>D Files (*.d *.di)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="632"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="619"/>
         <source>Java Files (*.java)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="635"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="622"/>
         <source>JavaScript Files (*.js)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="638"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="625"/>
         <source>SQL Files (*.sql)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="641"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="628"/>
         <source>Docbook Files (*.docbook)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="450"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="440"/>
         <source>Perl Files (*.pl *.pm *.ph)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="650"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="637"/>
         <source>Lua Files (*.lua)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="456"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="446"/>
         <source>Tex Files (*.tex *.sty *.aux *.toc *.idx)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="653"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="640"/>
         <source>Shell Files (*.sh)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="462"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="452"/>
         <source>Batch Files (*.bat *.cmd)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="465"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="455"/>
         <source>Diff Files (*.diff *.patch)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="458"/>
+        <source>Makefiles (*makefile Makefile *.mak)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="461"/>
+        <source>Properties Files (*.properties *.ini *.inf *.reg *.cfg *.cnf *.rc)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="664"/>
+        <source>Povray Files (*.pov)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="468"/>
-        <source>Makefiles (*makefile Makefile *.mak)</source>
+        <source>CMake Files (CMakeLists.txt *.cmake *.ctest)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="471"/>
-        <source>Properties Files (*.properties *.ini *.inf *.reg *.cfg *.cnf *.rc)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="677"/>
-        <source>Povray Files (*.pov)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="478"/>
-        <source>CMake Files (CMakeLists.txt *.cmake *.ctest)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="481"/>
         <source>VHDL Files (*.vhd *.vhdl)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="484"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="474"/>
         <source>TCL/Tk Files (*.tcl *.tk)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="487"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="477"/>
         <source>Fortran Files (*.f90 *.f95 *.f2k)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="490"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="480"/>
         <source>Fortran77 Files (*.f *.for)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="493"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="483"/>
         <source>Pascal Files (*.dpr *.dpk *.pas *.dfm *.inc *.pp)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="704"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="691"/>
         <source>PostScript Files (*.ps)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="499"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="489"/>
         <source>YAML Files (*.yaml *.yml)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="502"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="495"/>
         <source>Matlab Files (*.m *.m.matlab)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="505"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="498"/>
         <source>Octave Files (*.m *.m.octave)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="716"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="706"/>
         <source>Gettext Files (*.po)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="719"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="709"/>
         <source>CoffeeScript Files (*.coffee)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="746"/>
-        <source>All Files (*)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="563"/>
-        <source>Python3 GUI Files (*.pyw)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="587"/>
-        <source>C Files (*.c)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="590"/>
-        <source>C++ Files (*.cpp)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="593"/>
-        <source>C++/C Header Files (*.h)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="599"/>
-        <source>HTML Files (*.html)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="602"/>
-        <source>PHP Files (*.php)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="605"/>
-        <source>ASP Files (*.asp)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="614"/>
-        <source>XML Files (*.xml)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="617"/>
-        <source>XSL Files (*.xsl)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="620"/>
-        <source>DTD Files (*.dtd)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="626"/>
-        <source>D Files (*.d)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="629"/>
-        <source>D Interface Files (*.di)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="644"/>
-        <source>Perl Files (*.pl)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="647"/>
-        <source>Perl Module Files (*.pm)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="656"/>
-        <source>Batch Files (*.bat)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="659"/>
-        <source>TeX Files (*.tex)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="662"/>
-        <source>TeX Template Files (*.sty)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="665"/>
-        <source>Diff Files (*.diff)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="668"/>
-        <source>Make Files (*.mak)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="671"/>
-        <source>Properties Files (*.ini)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="674"/>
-        <source>Configuration Files (*.cfg)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="680"/>
-        <source>CMake Files (CMakeLists.txt)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="683"/>
-        <source>CMake Macro Files (*.cmake)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="686"/>
-        <source>VHDL Files (*.vhd)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="689"/>
-        <source>TCL Files (*.tcl)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="692"/>
-        <source>Tk Files (*.tk)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="695"/>
-        <source>Fortran Files (*.f95)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="698"/>
-        <source>Fortran77 Files (*.f)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="701"/>
-        <source>Pascal Files (*.pas)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="707"/>
-        <source>YAML Files (*.yml)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="710"/>
-        <source>Matlab Files (*.m)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="713"/>
-        <source>Octave Files (*.m.octave)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="165"/>
-        <source>JSON</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="725"/>
-        <source>JSON Files (*.json)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="170"/>
-        <source>Markdown</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="730"/>
+        <source>All Files (*)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="550"/>
+        <source>Python3 GUI Files (*.pyw)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="574"/>
+        <source>C Files (*.c)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="577"/>
+        <source>C++ Files (*.cpp)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="580"/>
+        <source>C++/C Header Files (*.h)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="586"/>
+        <source>HTML Files (*.html)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="589"/>
+        <source>PHP Files (*.php)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="592"/>
+        <source>ASP Files (*.asp)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="601"/>
+        <source>XML Files (*.xml)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="604"/>
+        <source>XSL Files (*.xsl)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="607"/>
+        <source>DTD Files (*.dtd)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="613"/>
+        <source>D Files (*.d)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="616"/>
+        <source>D Interface Files (*.di)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="631"/>
+        <source>Perl Files (*.pl)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="634"/>
+        <source>Perl Module Files (*.pm)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="643"/>
+        <source>Batch Files (*.bat)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="646"/>
+        <source>TeX Files (*.tex)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="649"/>
+        <source>TeX Template Files (*.sty)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="652"/>
+        <source>Diff Files (*.diff)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="655"/>
+        <source>Make Files (*.mak)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="658"/>
+        <source>Properties Files (*.ini)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="661"/>
+        <source>Configuration Files (*.cfg)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="667"/>
+        <source>CMake Files (CMakeLists.txt)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="670"/>
+        <source>CMake Macro Files (*.cmake)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="673"/>
+        <source>VHDL Files (*.vhd)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="676"/>
+        <source>TCL Files (*.tcl)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="679"/>
+        <source>Tk Files (*.tk)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="682"/>
+        <source>Fortran Files (*.f95)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="685"/>
+        <source>Fortran77 Files (*.f)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="688"/>
+        <source>Pascal Files (*.pas)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="694"/>
+        <source>YAML Files (*.yml)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="700"/>
+        <source>Matlab Files (*.m)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="703"/>
+        <source>Octave Files (*.m.octave)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="159"/>
+        <source>JSON</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="712"/>
+        <source>JSON Files (*.json)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="161"/>
+        <source>Markdown</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="715"/>
         <source>Markdown Files (*.md)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="134"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="132"/>
         <source>Protocol (protobuf)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="584"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="571"/>
         <source>Protocol Files (*.proto)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="98"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="96"/>
         <source>Cython</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="393"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="383"/>
         <source>Cython Files (*.pyx *.pxd *.pxi)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="566"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="553"/>
         <source>Cython Files (*.pyx)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="569"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="556"/>
         <source>Cython Declaration Files (*.pxd)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="572"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="559"/>
         <source>Cython Include Files (*.pxi)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="139"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="137"/>
         <source>MicroPython</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="387"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="377"/>
         <source>Python Files (*.py *.py3)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="390"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="380"/>
         <source>Python GUI Files (*.pyw *.pyw3)</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="697"/>
+        <source>TOML Files (*.toml)</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>LfConvertDataDialog</name>
@@ -44214,23 +44219,23 @@
 <context>
     <name>MicrosoftEngine</name>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="187"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="190"/>
         <source>You have not registered for the Microsoft Translation service.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="193"/>
-        <source>No valid access token available.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="170"/>
-        <source>No translation available.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="205"/>
-        <source>No Text-to-Speech for the selected language available.</source>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="196"/>
+        <source>MS Translator: No valid access token available.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="173"/>
+        <source>MS Translator: No translation available.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="211"/>
+        <source>MS Translator: No Text-to-Speech for the selected language available.</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -44270,17 +44275,17 @@
 <context>
     <name>MiniEditor</name>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2496"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2495"/>
         <source>Save File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2496"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2495"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2504"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2503"/>
         <source>File saved</source>
         <translation type="unfinished"></translation>
     </message>
@@ -44676,243 +44681,243 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2176"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2175"/>
         <source>About</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2176"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2175"/>
         <source>&amp;About</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2180"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2179"/>
         <source>Display information about this software</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2182"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2181"/>
         <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2188"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2187"/>
         <source>About Qt</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2188"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2187"/>
         <source>About &amp;Qt</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2192"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2191"/>
         <source>Display information about the Qt toolkit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2194"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2193"/>
         <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2201"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2200"/>
         <source>What&apos;s This?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2201"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2200"/>
         <source>&amp;What&apos;s This?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2201"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2200"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../QScintilla/MiniEditor.py" line="2206"/>
+        <source>Context sensitive help</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/MiniEditor.py" line="2207"/>
-        <source>Context sensitive help</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2208"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2224"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2223"/>
         <source>&amp;File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2236"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2235"/>
         <source>&amp;Edit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2256"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2255"/>
         <source>&amp;Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2268"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2267"/>
         <source>File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2281"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2280"/>
         <source>Edit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2291"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2290"/>
         <source>Find</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2298"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2297"/>
         <source>Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2311"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2310"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2318"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2317"/>
         <source>&lt;p&gt;This part of the status bar displays the line number of the editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2325"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2324"/>
         <source>&lt;p&gt;This part of the status bar displays the cursor position of the editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2330"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2329"/>
         <source>Ready</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2357"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2356"/>
         <source>eric6 Mini Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2357"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2356"/>
         <source>The document has unsaved changes.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2386"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2385"/>
         <source>Open File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2386"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2385"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2415"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2414"/>
         <source>File loaded</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2851"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2849"/>
         <source>Untitled</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2533"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2532"/>
         <source>{0}[*] - {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2533"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2532"/>
         <source>Mini Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2814"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2812"/>
         <source>Printing...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../QScintilla/MiniEditor.py" line="2830"/>
+        <source>Printing completed</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/MiniEditor.py" line="2832"/>
-        <source>Printing completed</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2834"/>
         <source>Error while printing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2837"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2835"/>
         <source>Printing aborted</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2892"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2890"/>
         <source>Select all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2893"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2891"/>
         <source>Deselect all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2907"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2905"/>
         <source>Languages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2910"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2908"/>
         <source>No Language</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2934"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2932"/>
         <source>Guessed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2956"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2954"/>
         <source>Alternatives</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2952"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2950"/>
         <source>Alternatives ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2972"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2970"/>
         <source>Pygments Lexer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2972"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2970"/>
         <source>Select the Pygments lexer to apply.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3490"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3488"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3490"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3488"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2516"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2515"/>
         <source>[*] - {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -44920,463 +44925,463 @@
 <context>
     <name>MiscellaneousChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="492"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="490"/>
         <source>coding magic comment not found</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="495"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="493"/>
         <source>unknown encoding ({0}) found in coding magic comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="498"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="496"/>
         <source>copyright notice not present</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="501"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="499"/>
         <source>copyright notice contains invalid author</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="702"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="700"/>
         <source>found {0} formatter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="705"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="703"/>
         <source>format string does contain unindexed parameters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="708"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="706"/>
         <source>docstring does contain unindexed parameters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="711"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="709"/>
         <source>other string does contain unindexed parameters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="714"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="712"/>
         <source>format call uses too large index ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="717"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="715"/>
         <source>format call uses missing keyword ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="720"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="718"/>
         <source>format call uses keyword arguments but no named entries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="723"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="721"/>
         <source>format call uses variable arguments but no numbered entries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="726"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="724"/>
         <source>format call uses implicit and explicit indexes together</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="729"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="727"/>
         <source>format call provides unused index ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="732"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="730"/>
         <source>format call provides unused keyword ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="751"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="749"/>
         <source>expected these __future__ imports: {0}; but only got: {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="754"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="752"/>
         <source>expected these __future__ imports: {0}; but got none</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="761"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="759"/>
         <source>print statement found</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="764"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="762"/>
         <source>one element tuple found</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="800"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="798"/>
         <source>{0}: {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="504"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="502"/>
         <source>&quot;{0}&quot; is a Python builtin and is being shadowed; consider renaming the variable</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="508"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="506"/>
         <source>&quot;{0}&quot; is used as an argument and thus shadows a Python builtin; consider renaming the argument</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="512"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="510"/>
         <source>unnecessary generator - rewrite as a list comprehension</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="515"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="513"/>
         <source>unnecessary generator - rewrite as a set comprehension</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="518"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="516"/>
         <source>unnecessary generator - rewrite as a dict comprehension</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="521"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="519"/>
         <source>unnecessary list comprehension - rewrite as a set comprehension</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="524"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="522"/>
         <source>unnecessary list comprehension - rewrite as a dict comprehension</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="530"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="528"/>
         <source>unnecessary list comprehension - &quot;{0}&quot; can take a generator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="770"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="768"/>
         <source>mutable default argument of type {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="555"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="553"/>
         <source>sort keys - &apos;{0}&apos; should be before &apos;{1}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="738"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="736"/>
         <source>logging statement uses &apos;%&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="744"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="742"/>
         <source>logging statement uses f-string</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="747"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="745"/>
         <source>logging statement uses &apos;warn&apos; instead of &apos;warning&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="735"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="733"/>
         <source>logging statement uses string.format()</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="741"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="739"/>
         <source>logging statement uses &apos;+&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="757"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="755"/>
         <source>gettext import with alias _ found: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="648"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="646"/>
         <source>Python does not support the unary prefix increment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="657"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="655"/>
         <source>&apos;sys.maxint&apos; is not defined in Python 3 - use &apos;sys.maxsize&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="660"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="658"/>
         <source>&apos;BaseException.message&apos; has been deprecated as of Python 2.6 and is removed in Python 3 - use &apos;str(e)&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="664"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="662"/>
         <source>assigning to &apos;os.environ&apos; does not clear the environment - use &apos;os.environ.clear()&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="688"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="686"/>
         <source>Python 3 does not include &apos;.iter*&apos; methods on dictionaries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="691"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="689"/>
         <source>Python 3 does not include &apos;.view*&apos; methods on dictionaries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="694"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="692"/>
         <source>&apos;.next()&apos; does not exist in Python 3</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="697"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="695"/>
         <source>&apos;__metaclass__&apos; does nothing on Python 3 - use &apos;class MyClass(BaseClass, metaclass=...)&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="773"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="771"/>
         <source>mutable default argument of function call &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="651"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="649"/>
         <source>using .strip() with multi-character strings is misleading</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="678"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="676"/>
         <source>using &apos;hasattr(x, &quot;__call__&quot;)&apos; to test if &apos;x&apos; is callable is unreliable</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="668"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="666"/>
         <source>loop control variable {0} not used within the loop body - start the name with an underscore</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="776"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="774"/>
         <source>None should not be added at any return if function has no return value except None</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="780"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="778"/>
         <source>an explicit value at every return should be added if function has a return value except None</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="784"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="782"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="788"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="786"/>
         <source>a value should not be assigned to a variable if it will be used as a return value only</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="654"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="652"/>
         <source>do not call assert False since python -O removes these calls</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="672"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="670"/>
         <source>unncessary f-string</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="675"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="673"/>
         <source>cannot use &apos;self.__class__&apos; as first argument of &apos;super()&apos; call</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="682"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="680"/>
         <source>do not call getattr with a constant attribute value</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="685"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="683"/>
         <source>do not call setattr with a constant attribute value</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="796"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="794"/>
         <source>commented code lines should be removed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="792"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="790"/>
         <source>prefer implied line continuation inside parentheses, brackets and braces as opposed to a backslash</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="559"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="557"/>
         <source>use of &apos;datetime.datetime()&apos; without &apos;tzinfo&apos; argument should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="563"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="561"/>
         <source>use of &apos;datetime.datetime.today()&apos; should be avoided.
 Use &apos;datetime.datetime.now(tz=)&apos; instead.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="567"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="565"/>
         <source>use of &apos;datetime.datetime.utcnow()&apos; should be avoided.
 Use &apos;datetime.datetime.now(tz=)&apos; instead.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="571"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="569"/>
         <source>use of &apos;datetime.datetime.utcfromtimestamp()&apos; should be avoided.
 Use &apos;datetime.datetime.fromtimestamp(, tz=)&apos; instead.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="575"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="573"/>
         <source>use of &apos;datetime.datetime.now()&apos; without &apos;tz&apos; argument should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="579"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="577"/>
         <source>use of &apos;datetime.datetime.fromtimestamp()&apos; without &apos;tz&apos; argument should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="583"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="581"/>
         <source>use of &apos;datetime.datetime.strptime()&apos; should be followed by &apos;.replace(tzinfo=)&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="590"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="588"/>
         <source>use of &apos;datetime.date()&apos; should be avoided.
 Use &apos;datetime.datetime(, tzinfo=).date()&apos; instead.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="594"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="592"/>
         <source>use of &apos;datetime.date.today()&apos; should be avoided.
 Use &apos;datetime.datetime.now(tz=).date()&apos; instead.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="598"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="596"/>
         <source>use of &apos;datetime.date.fromtimestamp()&apos; should be avoided.
 Use &apos;datetime.datetime.fromtimestamp(tz=).date()&apos; instead.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="608"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="606"/>
         <source>use of &apos;datetime.time()&apos; without &apos;tzinfo&apos; argument should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="587"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="585"/>
         <source>use of &apos;datetime.datetime.fromordinal()&apos; should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="602"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="600"/>
         <source>use of &apos;datetime.date.fromordinal()&apos; should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="605"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="603"/>
         <source>use of &apos;datetime.date.fromisoformat()&apos; should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="527"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="525"/>
         <source>unnecessary {0} call - rewrite as a literal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="533"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="531"/>
         <source>unnecessary {0} literal - rewrite as a {1} literal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="536"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="534"/>
         <source>unnecessary {0} passed to tuple() - rewrite as a {1} literal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="539"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="537"/>
         <source>unnecessary {0} passed to list() - rewrite as a {1} literal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="542"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="540"/>
         <source>unnecessary list call - remove the outer call to list()</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="545"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="543"/>
         <source>unnecessary list comprehension - &quot;in&quot; can take a generator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="548"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="546"/>
         <source>unnecessary {0} passed to tuple() - remove the outer call to {1}()</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="551"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="549"/>
         <source>unnecessary {0} passed to list() - remove the outer call to {1}()</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="613"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="611"/>
         <source>&apos;sys.version[:3]&apos; referenced (Python 3.10), use &apos;sys.version_info&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="616"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="614"/>
         <source>&apos;sys.version[2]&apos; referenced (Python 3.10), use &apos;sys.version_info&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="619"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="617"/>
         <source>&apos;sys.version&apos; compared to string (Python 3.10), use &apos;sys.version_info&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="623"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="621"/>
         <source>&apos;sys.version_info[0] == 3&apos; referenced (Python 4), use &apos;&gt;=&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="626"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="624"/>
         <source>&apos;six.PY3&apos; referenced (Python 4), use &apos;not six.PY2&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="629"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="627"/>
         <source>&apos;sys.version_info[1]&apos; compared to integer (Python 4), compare &apos;sys.version_info&apos; to tuple</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="633"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="631"/>
         <source>&apos;sys.version_info.minor&apos; compared to integer (Python 4), compare &apos;sys.version_info&apos; to tuple</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="637"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="635"/>
         <source>&apos;sys.version[0]&apos; referenced (Python 10), use &apos;sys.version_info&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="640"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="638"/>
         <source>&apos;sys.version&apos; compared to string (Python 10), use &apos;sys.version_info&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="644"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="642"/>
         <source>&apos;sys.version[:1]&apos; referenced (Python 10), use &apos;sys.version_info&apos;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -45820,84 +45825,84 @@
     <name>MyMemoryEngine</name>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MyMemoryEngine.py" line="72"/>
-        <source>Only texts up to {0} characters are allowed.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MyMemoryEngine.py" line="95"/>
-        <source>Invalid response received</source>
+        <source>MyMemory: Only texts up to {0} characters are allowed.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MyMemoryEngine.py" line="99"/>
+        <source>MyMemory: Invalid response received</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
 <context>
     <name>NamingStyleChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="432"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="430"/>
         <source>class names should use CapWords convention</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="435"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="433"/>
         <source>function name should be lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="438"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="436"/>
         <source>argument name should be lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="441"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="439"/>
         <source>first argument of a class method should be named &apos;cls&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="444"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="442"/>
         <source>first argument of a method should be named &apos;self&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="447"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="445"/>
         <source>first argument of a static method should not be named &apos;self&apos; or &apos;cls</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="451"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="449"/>
         <source>module names should be lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="454"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="452"/>
         <source>package names should be lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="457"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="455"/>
         <source>constant imported as non constant</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="460"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="458"/>
         <source>lowercase imported as non lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="463"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="461"/>
         <source>camelcase imported as lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="466"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="464"/>
         <source>camelcase imported as constant</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="469"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="467"/>
         <source>variable in function should be lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="472"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="470"/>
         <source>names &apos;l&apos;, &apos;O&apos; and &apos;I&apos; should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
@@ -52924,12 +52929,12 @@
     <name>PromtEngine</name>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/PromtEngine.py" line="97"/>
-        <source>Invalid response received</source>
+        <source>Promt: Invalid response received</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/PromtEngine.py" line="106"/>
-        <source>This direction of translation is not available.</source>
+        <source>Promt: This direction of translation is not available.</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -55108,7 +55113,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="694"/>
+        <location filename="../UI/PythonDisViewer.py" line="696"/>
         <source>Code Object &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -55118,22 +55123,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="450"/>
+        <location filename="../UI/PythonDisViewer.py" line="452"/>
         <source>No editor has been opened.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="462"/>
+        <location filename="../UI/PythonDisViewer.py" line="464"/>
         <source>The current editor does not contain any source code.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="468"/>
+        <location filename="../UI/PythonDisViewer.py" line="470"/>
         <source>The current editor does not contain Python source code.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="517"/>
+        <location filename="../UI/PythonDisViewer.py" line="519"/>
         <source>Disassembly of last traceback</source>
         <translation type="unfinished"></translation>
     </message>
@@ -55163,72 +55168,72 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="809"/>
+        <location filename="../UI/PythonDisViewer.py" line="811"/>
         <source>Name</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="811"/>
-        <source>Filename</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/PythonDisViewer.py" line="813"/>
-        <source>First Line</source>
+        <source>Filename</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/PythonDisViewer.py" line="815"/>
-        <source>Argument Count</source>
+        <source>First Line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/PythonDisViewer.py" line="817"/>
+        <source>Argument Count</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="819"/>
         <source>Positional-only Arguments</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="823"/>
-        <source>Number of Locals</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/PythonDisViewer.py" line="825"/>
-        <source>Stack Size</source>
+        <source>Number of Locals</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/PythonDisViewer.py" line="827"/>
+        <source>Stack Size</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="829"/>
         <source>Flags</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="830"/>
+        <location filename="../UI/PythonDisViewer.py" line="832"/>
         <source>Constants</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="833"/>
+        <location filename="../UI/PythonDisViewer.py" line="835"/>
         <source>Names</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="836"/>
+        <location filename="../UI/PythonDisViewer.py" line="838"/>
         <source>Variable Names</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="839"/>
+        <location filename="../UI/PythonDisViewer.py" line="841"/>
         <source>Free Variables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="842"/>
+        <location filename="../UI/PythonDisViewer.py" line="844"/>
         <source>Cell Variables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="820"/>
+        <location filename="../UI/PythonDisViewer.py" line="822"/>
         <source>Keyword-only Arguments</source>
         <translation type="unfinished"></translation>
     </message>
@@ -77673,3301 +77678,3301 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="799"/>
+        <location filename="../ViewManager/ViewManager.py" line="798"/>
         <source>Print Preview</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1481"/>
+        <location filename="../ViewManager/ViewManager.py" line="1480"/>
         <source>Move left one character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1481"/>
+        <location filename="../ViewManager/ViewManager.py" line="1480"/>
         <source>Left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1490"/>
+        <location filename="../ViewManager/ViewManager.py" line="1489"/>
         <source>Meta+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1495"/>
+        <location filename="../ViewManager/ViewManager.py" line="1494"/>
         <source>Move right one character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1495"/>
+        <location filename="../ViewManager/ViewManager.py" line="1494"/>
         <source>Right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1503"/>
+        <location filename="../ViewManager/ViewManager.py" line="1502"/>
         <source>Meta+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1509"/>
+        <location filename="../ViewManager/ViewManager.py" line="1508"/>
         <source>Move up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1509"/>
+        <location filename="../ViewManager/ViewManager.py" line="1508"/>
         <source>Up</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1515"/>
+        <location filename="../ViewManager/ViewManager.py" line="1514"/>
         <source>Meta+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1521"/>
+        <location filename="../ViewManager/ViewManager.py" line="1520"/>
         <source>Move down one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1521"/>
+        <location filename="../ViewManager/ViewManager.py" line="1520"/>
         <source>Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1527"/>
+        <location filename="../ViewManager/ViewManager.py" line="1526"/>
         <source>Meta+N</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1533"/>
+        <location filename="../ViewManager/ViewManager.py" line="1532"/>
         <source>Move left one word part</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1567"/>
+        <location filename="../ViewManager/ViewManager.py" line="1566"/>
         <source>Alt+Left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1547"/>
+        <location filename="../ViewManager/ViewManager.py" line="1546"/>
         <source>Move right one word part</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2448"/>
+        <location filename="../ViewManager/ViewManager.py" line="2446"/>
         <source>Alt+Right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1561"/>
+        <location filename="../ViewManager/ViewManager.py" line="1560"/>
         <source>Move left one word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1612"/>
+        <location filename="../ViewManager/ViewManager.py" line="1611"/>
         <source>Ctrl+Left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1576"/>
+        <location filename="../ViewManager/ViewManager.py" line="1575"/>
         <source>Move right one word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2202"/>
+        <location filename="../ViewManager/ViewManager.py" line="2200"/>
         <source>Ctrl+Right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1588"/>
+        <location filename="../ViewManager/ViewManager.py" line="1587"/>
         <source>Move to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2403"/>
+        <location filename="../ViewManager/ViewManager.py" line="2401"/>
         <source>Home</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1604"/>
+        <location filename="../ViewManager/ViewManager.py" line="1603"/>
         <source>Move to start of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1615"/>
+        <location filename="../ViewManager/ViewManager.py" line="1614"/>
         <source>Alt+Home</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1621"/>
+        <location filename="../ViewManager/ViewManager.py" line="1620"/>
         <source>Move to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1629"/>
+        <location filename="../ViewManager/ViewManager.py" line="1628"/>
         <source>Meta+E</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2418"/>
+        <location filename="../ViewManager/ViewManager.py" line="2416"/>
         <source>End</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1638"/>
+        <location filename="../ViewManager/ViewManager.py" line="1637"/>
         <source>Scroll view down one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1728"/>
+        <location filename="../ViewManager/ViewManager.py" line="1727"/>
         <source>Ctrl+Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1650"/>
+        <location filename="../ViewManager/ViewManager.py" line="1649"/>
         <source>Scroll view up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1711"/>
+        <location filename="../ViewManager/ViewManager.py" line="1710"/>
         <source>Ctrl+Up</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1661"/>
+        <location filename="../ViewManager/ViewManager.py" line="1660"/>
         <source>Move up one paragraph</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1661"/>
+        <location filename="../ViewManager/ViewManager.py" line="1660"/>
         <source>Alt+Up</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1670"/>
+        <location filename="../ViewManager/ViewManager.py" line="1669"/>
         <source>Move down one paragraph</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1670"/>
+        <location filename="../ViewManager/ViewManager.py" line="1669"/>
         <source>Alt+Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1682"/>
+        <location filename="../ViewManager/ViewManager.py" line="1681"/>
         <source>Move up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1682"/>
+        <location filename="../ViewManager/ViewManager.py" line="1681"/>
         <source>PgUp</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1691"/>
+        <location filename="../ViewManager/ViewManager.py" line="1690"/>
         <source>Move down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1691"/>
+        <location filename="../ViewManager/ViewManager.py" line="1690"/>
         <source>PgDown</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1697"/>
+        <location filename="../ViewManager/ViewManager.py" line="1696"/>
         <source>Meta+V</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1703"/>
+        <location filename="../ViewManager/ViewManager.py" line="1702"/>
         <source>Move to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1714"/>
+        <location filename="../ViewManager/ViewManager.py" line="1713"/>
         <source>Ctrl+Home</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1720"/>
+        <location filename="../ViewManager/ViewManager.py" line="1719"/>
         <source>Move to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1731"/>
+        <location filename="../ViewManager/ViewManager.py" line="1730"/>
         <source>Ctrl+End</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1737"/>
+        <location filename="../ViewManager/ViewManager.py" line="1736"/>
         <source>Indent one level</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1737"/>
+        <location filename="../ViewManager/ViewManager.py" line="1736"/>
         <source>Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1746"/>
+        <location filename="../ViewManager/ViewManager.py" line="1745"/>
         <source>Unindent one level</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1746"/>
+        <location filename="../ViewManager/ViewManager.py" line="1745"/>
         <source>Shift+Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1756"/>
+        <location filename="../ViewManager/ViewManager.py" line="1755"/>
         <source>Extend selection left one character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1756"/>
+        <location filename="../ViewManager/ViewManager.py" line="1755"/>
         <source>Shift+Left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1765"/>
+        <location filename="../ViewManager/ViewManager.py" line="1764"/>
         <source>Meta+Shift+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1771"/>
+        <location filename="../ViewManager/ViewManager.py" line="1770"/>
         <source>Extend selection right one character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1771"/>
+        <location filename="../ViewManager/ViewManager.py" line="1770"/>
         <source>Shift+Right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1780"/>
+        <location filename="../ViewManager/ViewManager.py" line="1779"/>
         <source>Meta+Shift+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1786"/>
+        <location filename="../ViewManager/ViewManager.py" line="1785"/>
         <source>Extend selection up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1786"/>
+        <location filename="../ViewManager/ViewManager.py" line="1785"/>
         <source>Shift+Up</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1795"/>
+        <location filename="../ViewManager/ViewManager.py" line="1794"/>
         <source>Meta+Shift+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1801"/>
+        <location filename="../ViewManager/ViewManager.py" line="1800"/>
         <source>Extend selection down one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1801"/>
+        <location filename="../ViewManager/ViewManager.py" line="1800"/>
         <source>Shift+Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1810"/>
+        <location filename="../ViewManager/ViewManager.py" line="1809"/>
         <source>Meta+Shift+N</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1816"/>
+        <location filename="../ViewManager/ViewManager.py" line="1815"/>
         <source>Extend selection left one word part</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1852"/>
+        <location filename="../ViewManager/ViewManager.py" line="1851"/>
         <source>Alt+Shift+Left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1830"/>
+        <location filename="../ViewManager/ViewManager.py" line="1829"/>
         <source>Extend selection right one word part</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2463"/>
+        <location filename="../ViewManager/ViewManager.py" line="2461"/>
         <source>Alt+Shift+Right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1844"/>
+        <location filename="../ViewManager/ViewManager.py" line="1843"/>
         <source>Extend selection left one word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2557"/>
+        <location filename="../ViewManager/ViewManager.py" line="2555"/>
         <source>Ctrl+Shift+Left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1861"/>
+        <location filename="../ViewManager/ViewManager.py" line="1860"/>
         <source>Extend selection right one word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2219"/>
+        <location filename="../ViewManager/ViewManager.py" line="2217"/>
         <source>Ctrl+Shift+Right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1878"/>
+        <location filename="../ViewManager/ViewManager.py" line="1877"/>
         <source>Extend selection to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1890"/>
+        <location filename="../ViewManager/ViewManager.py" line="1889"/>
         <source>Shift+Home</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1896"/>
+        <location filename="../ViewManager/ViewManager.py" line="1895"/>
         <source>Extend selection to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1904"/>
+        <location filename="../ViewManager/ViewManager.py" line="1903"/>
         <source>Meta+Shift+E</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1907"/>
+        <location filename="../ViewManager/ViewManager.py" line="1906"/>
         <source>Shift+End</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1913"/>
+        <location filename="../ViewManager/ViewManager.py" line="1912"/>
         <source>Extend selection up one paragraph</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1913"/>
+        <location filename="../ViewManager/ViewManager.py" line="1912"/>
         <source>Alt+Shift+Up</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1926"/>
+        <location filename="../ViewManager/ViewManager.py" line="1925"/>
         <source>Extend selection down one paragraph</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1926"/>
+        <location filename="../ViewManager/ViewManager.py" line="1925"/>
         <source>Alt+Shift+Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1939"/>
+        <location filename="../ViewManager/ViewManager.py" line="1938"/>
         <source>Extend selection up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1939"/>
+        <location filename="../ViewManager/ViewManager.py" line="1938"/>
         <source>Shift+PgUp</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1951"/>
+        <location filename="../ViewManager/ViewManager.py" line="1950"/>
         <source>Extend selection down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1951"/>
+        <location filename="../ViewManager/ViewManager.py" line="1950"/>
         <source>Shift+PgDown</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1961"/>
+        <location filename="../ViewManager/ViewManager.py" line="1960"/>
         <source>Meta+Shift+V</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1967"/>
+        <location filename="../ViewManager/ViewManager.py" line="1966"/>
         <source>Extend selection to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1975"/>
+        <location filename="../ViewManager/ViewManager.py" line="1974"/>
         <source>Ctrl+Shift+Up</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1978"/>
+        <location filename="../ViewManager/ViewManager.py" line="1977"/>
         <source>Ctrl+Shift+Home</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1984"/>
+        <location filename="../ViewManager/ViewManager.py" line="1983"/>
         <source>Extend selection to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1992"/>
+        <location filename="../ViewManager/ViewManager.py" line="1991"/>
         <source>Ctrl+Shift+Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1995"/>
+        <location filename="../ViewManager/ViewManager.py" line="1994"/>
         <source>Ctrl+Shift+End</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2001"/>
+        <location filename="../ViewManager/ViewManager.py" line="2000"/>
         <source>Delete previous character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2001"/>
+        <location filename="../ViewManager/ViewManager.py" line="2000"/>
         <source>Backspace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2010"/>
+        <location filename="../ViewManager/ViewManager.py" line="2009"/>
         <source>Meta+H</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2013"/>
+        <location filename="../ViewManager/ViewManager.py" line="2012"/>
         <source>Shift+Backspace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2019"/>
+        <location filename="../ViewManager/ViewManager.py" line="2018"/>
         <source>Delete previous character if not at start of line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2032"/>
+        <location filename="../ViewManager/ViewManager.py" line="2031"/>
         <source>Delete current character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2032"/>
+        <location filename="../ViewManager/ViewManager.py" line="2031"/>
         <source>Del</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2040"/>
+        <location filename="../ViewManager/ViewManager.py" line="2039"/>
         <source>Meta+D</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2046"/>
+        <location filename="../ViewManager/ViewManager.py" line="2045"/>
         <source>Delete word to left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2046"/>
+        <location filename="../ViewManager/ViewManager.py" line="2045"/>
         <source>Ctrl+Backspace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2057"/>
+        <location filename="../ViewManager/ViewManager.py" line="2056"/>
         <source>Delete word to right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2057"/>
+        <location filename="../ViewManager/ViewManager.py" line="2056"/>
         <source>Ctrl+Del</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2067"/>
+        <location filename="../ViewManager/ViewManager.py" line="2066"/>
         <source>Delete line to left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2067"/>
+        <location filename="../ViewManager/ViewManager.py" line="2066"/>
         <source>Ctrl+Shift+Backspace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2078"/>
+        <location filename="../ViewManager/ViewManager.py" line="2077"/>
         <source>Delete line to right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2084"/>
+        <location filename="../ViewManager/ViewManager.py" line="2083"/>
         <source>Meta+K</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2087"/>
+        <location filename="../ViewManager/ViewManager.py" line="2086"/>
         <source>Ctrl+Shift+Del</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2093"/>
+        <location filename="../ViewManager/ViewManager.py" line="2092"/>
         <source>Insert new line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2093"/>
+        <location filename="../ViewManager/ViewManager.py" line="2092"/>
         <source>Return</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2093"/>
+        <location filename="../ViewManager/ViewManager.py" line="2092"/>
         <source>Enter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2116"/>
+        <location filename="../ViewManager/ViewManager.py" line="2115"/>
         <source>Delete current line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2116"/>
+        <location filename="../ViewManager/ViewManager.py" line="2115"/>
         <source>Ctrl+Shift+L</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2127"/>
+        <location filename="../ViewManager/ViewManager.py" line="2126"/>
         <source>Duplicate current line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2127"/>
+        <location filename="../ViewManager/ViewManager.py" line="2126"/>
         <source>Ctrl+D</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2138"/>
+        <location filename="../ViewManager/ViewManager.py" line="2137"/>
         <source>Swap current and previous lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2138"/>
+        <location filename="../ViewManager/ViewManager.py" line="2137"/>
         <source>Ctrl+T</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2162"/>
+        <location filename="../ViewManager/ViewManager.py" line="2160"/>
         <source>Cut current line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2162"/>
+        <location filename="../ViewManager/ViewManager.py" line="2160"/>
         <source>Alt+Shift+L</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2172"/>
+        <location filename="../ViewManager/ViewManager.py" line="2170"/>
         <source>Copy current line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2172"/>
+        <location filename="../ViewManager/ViewManager.py" line="2170"/>
         <source>Ctrl+Shift+T</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2183"/>
+        <location filename="../ViewManager/ViewManager.py" line="2181"/>
         <source>Toggle insert/overtype</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2183"/>
+        <location filename="../ViewManager/ViewManager.py" line="2181"/>
         <source>Ins</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2747"/>
+        <location filename="../ViewManager/ViewManager.py" line="2745"/>
         <source>Convert selection to lower case</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2747"/>
+        <location filename="../ViewManager/ViewManager.py" line="2745"/>
         <source>Alt+Shift+U</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2759"/>
+        <location filename="../ViewManager/ViewManager.py" line="2757"/>
         <source>Convert selection to upper case</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2759"/>
+        <location filename="../ViewManager/ViewManager.py" line="2757"/>
         <source>Ctrl+Shift+U</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2194"/>
+        <location filename="../ViewManager/ViewManager.py" line="2192"/>
         <source>Move to end of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2205"/>
+        <location filename="../ViewManager/ViewManager.py" line="2203"/>
         <source>Alt+End</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2211"/>
+        <location filename="../ViewManager/ViewManager.py" line="2209"/>
         <source>Extend selection to end of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2225"/>
+        <location filename="../ViewManager/ViewManager.py" line="2223"/>
         <source>Formfeed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2234"/>
+        <location filename="../ViewManager/ViewManager.py" line="2232"/>
         <source>Escape</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2234"/>
+        <location filename="../ViewManager/ViewManager.py" line="2232"/>
         <source>Esc</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2243"/>
+        <location filename="../ViewManager/ViewManager.py" line="2241"/>
         <source>Extend rectangular selection down one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2243"/>
+        <location filename="../ViewManager/ViewManager.py" line="2241"/>
         <source>Alt+Ctrl+Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2253"/>
+        <location filename="../ViewManager/ViewManager.py" line="2251"/>
         <source>Meta+Alt+Shift+N</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2259"/>
+        <location filename="../ViewManager/ViewManager.py" line="2257"/>
         <source>Extend rectangular selection up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2259"/>
+        <location filename="../ViewManager/ViewManager.py" line="2257"/>
         <source>Alt+Ctrl+Up</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2268"/>
+        <location filename="../ViewManager/ViewManager.py" line="2266"/>
         <source>Meta+Alt+Shift+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2274"/>
+        <location filename="../ViewManager/ViewManager.py" line="2272"/>
         <source>Extend rectangular selection left one character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2274"/>
+        <location filename="../ViewManager/ViewManager.py" line="2272"/>
         <source>Alt+Ctrl+Left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2286"/>
+        <location filename="../ViewManager/ViewManager.py" line="2284"/>
         <source>Meta+Alt+Shift+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2292"/>
+        <location filename="../ViewManager/ViewManager.py" line="2290"/>
         <source>Extend rectangular selection right one character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2292"/>
+        <location filename="../ViewManager/ViewManager.py" line="2290"/>
         <source>Alt+Ctrl+Right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2304"/>
+        <location filename="../ViewManager/ViewManager.py" line="2302"/>
         <source>Meta+Alt+Shift+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2310"/>
+        <location filename="../ViewManager/ViewManager.py" line="2308"/>
         <source>Extend rectangular selection to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2323"/>
+        <location filename="../ViewManager/ViewManager.py" line="2321"/>
         <source>Alt+Shift+Home</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2329"/>
+        <location filename="../ViewManager/ViewManager.py" line="2327"/>
         <source>Extend rectangular selection to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2339"/>
+        <location filename="../ViewManager/ViewManager.py" line="2337"/>
         <source>Meta+Alt+Shift+E</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2342"/>
+        <location filename="../ViewManager/ViewManager.py" line="2340"/>
         <source>Alt+Shift+End</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2348"/>
+        <location filename="../ViewManager/ViewManager.py" line="2346"/>
         <source>Extend rectangular selection up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2348"/>
+        <location filename="../ViewManager/ViewManager.py" line="2346"/>
         <source>Alt+Shift+PgUp</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2363"/>
+        <location filename="../ViewManager/ViewManager.py" line="2361"/>
         <source>Extend rectangular selection down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2363"/>
+        <location filename="../ViewManager/ViewManager.py" line="2361"/>
         <source>Alt+Shift+PgDown</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2375"/>
+        <location filename="../ViewManager/ViewManager.py" line="2373"/>
         <source>Meta+Alt+Shift+V</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2381"/>
+        <location filename="../ViewManager/ViewManager.py" line="2379"/>
         <source>Duplicate current selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2381"/>
+        <location filename="../ViewManager/ViewManager.py" line="2379"/>
         <source>Ctrl+Shift+D</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2395"/>
+        <location filename="../ViewManager/ViewManager.py" line="2393"/>
         <source>Scroll to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2410"/>
+        <location filename="../ViewManager/ViewManager.py" line="2408"/>
         <source>Scroll to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2425"/>
+        <location filename="../ViewManager/ViewManager.py" line="2423"/>
         <source>Scroll vertically to center current line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2433"/>
+        <location filename="../ViewManager/ViewManager.py" line="2431"/>
         <source>Meta+L</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2440"/>
+        <location filename="../ViewManager/ViewManager.py" line="2438"/>
         <source>Move to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2455"/>
+        <location filename="../ViewManager/ViewManager.py" line="2453"/>
         <source>Extend selection to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2471"/>
+        <location filename="../ViewManager/ViewManager.py" line="2469"/>
         <source>Move to end of previous word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2483"/>
+        <location filename="../ViewManager/ViewManager.py" line="2481"/>
         <source>Extend selection to end of previous word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2495"/>
+        <location filename="../ViewManager/ViewManager.py" line="2493"/>
         <source>Move to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2503"/>
+        <location filename="../ViewManager/ViewManager.py" line="2501"/>
         <source>Meta+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2510"/>
+        <location filename="../ViewManager/ViewManager.py" line="2508"/>
         <source>Extend selection to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2521"/>
+        <location filename="../ViewManager/ViewManager.py" line="2519"/>
         <source>Meta+Shift+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2528"/>
+        <location filename="../ViewManager/ViewManager.py" line="2526"/>
         <source>Extend rectangular selection to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2538"/>
+        <location filename="../ViewManager/ViewManager.py" line="2536"/>
         <source>Meta+Alt+Shift+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2546"/>
+        <location filename="../ViewManager/ViewManager.py" line="2544"/>
         <source>Extend selection to start of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2565"/>
+        <location filename="../ViewManager/ViewManager.py" line="2563"/>
         <source>Move to start of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2579"/>
+        <location filename="../ViewManager/ViewManager.py" line="2577"/>
         <source>Extend selection to start of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2594"/>
+        <location filename="../ViewManager/ViewManager.py" line="2592"/>
         <source>Move to first visible character in display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2611"/>
+        <location filename="../ViewManager/ViewManager.py" line="2609"/>
         <source>Extend selection to first visible character in display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2628"/>
+        <location filename="../ViewManager/ViewManager.py" line="2626"/>
         <source>Move to end of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2642"/>
+        <location filename="../ViewManager/ViewManager.py" line="2640"/>
         <source>Extend selection to end of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2657"/>
+        <location filename="../ViewManager/ViewManager.py" line="2655"/>
         <source>Stuttered move up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2669"/>
+        <location filename="../ViewManager/ViewManager.py" line="2667"/>
         <source>Stuttered extend selection up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2682"/>
+        <location filename="../ViewManager/ViewManager.py" line="2680"/>
         <source>Stuttered move down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2694"/>
+        <location filename="../ViewManager/ViewManager.py" line="2692"/>
         <source>Stuttered extend selection down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2707"/>
+        <location filename="../ViewManager/ViewManager.py" line="2705"/>
         <source>Delete right to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2715"/>
+        <location filename="../ViewManager/ViewManager.py" line="2713"/>
         <source>Alt+Del</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2722"/>
+        <location filename="../ViewManager/ViewManager.py" line="2720"/>
         <source>Move selected lines up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2734"/>
+        <location filename="../ViewManager/ViewManager.py" line="2732"/>
         <source>Move selected lines down one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3449"/>
+        <location filename="../ViewManager/ViewManager.py" line="3447"/>
         <source>Search</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2877"/>
+        <location filename="../ViewManager/ViewManager.py" line="2875"/>
         <source>&amp;Search...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2877"/>
+        <location filename="../ViewManager/ViewManager.py" line="2875"/>
         <source>Ctrl+F</source>
         <comment>Search|Search</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="2883"/>
+        <source>Search for a text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="2885"/>
-        <source>Search for a text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2887"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2897"/>
+        <location filename="../ViewManager/ViewManager.py" line="2895"/>
         <source>Search next</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2897"/>
+        <location filename="../ViewManager/ViewManager.py" line="2895"/>
         <source>Search &amp;next</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2897"/>
+        <location filename="../ViewManager/ViewManager.py" line="2895"/>
         <source>F3</source>
         <comment>Search|Search next</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="2904"/>
+        <source>Search next occurrence of text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="2906"/>
-        <source>Search next occurrence of text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2908"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2918"/>
+        <location filename="../ViewManager/ViewManager.py" line="2916"/>
         <source>Search previous</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2918"/>
+        <location filename="../ViewManager/ViewManager.py" line="2916"/>
         <source>Search &amp;previous</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2918"/>
+        <location filename="../ViewManager/ViewManager.py" line="2916"/>
         <source>Shift+F3</source>
         <comment>Search|Search previous</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="2924"/>
+        <source>Search previous occurrence of text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="2926"/>
-        <source>Search previous occurrence of text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2928"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2938"/>
+        <location filename="../ViewManager/ViewManager.py" line="2936"/>
         <source>Clear search markers</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2938"/>
+        <location filename="../ViewManager/ViewManager.py" line="2936"/>
         <source>Ctrl+3</source>
         <comment>Search|Clear search markers</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="2944"/>
+        <source>Clear all displayed search markers</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="2946"/>
-        <source>Clear all displayed search markers</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2948"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3003"/>
+        <location filename="../ViewManager/ViewManager.py" line="3001"/>
         <source>Replace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3003"/>
+        <location filename="../ViewManager/ViewManager.py" line="3001"/>
         <source>&amp;Replace...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3003"/>
+        <location filename="../ViewManager/ViewManager.py" line="3001"/>
         <source>Ctrl+R</source>
         <comment>Search|Replace</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3008"/>
+        <source>Replace some text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3010"/>
-        <source>Replace some text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3012"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="635"/>
+        <location filename="../ViewManager/ViewManager.py" line="634"/>
         <source>New</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="635"/>
+        <location filename="../ViewManager/ViewManager.py" line="634"/>
         <source>&amp;New</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="635"/>
+        <location filename="../ViewManager/ViewManager.py" line="634"/>
         <source>Ctrl+N</source>
         <comment>File|New</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="643"/>
+        <location filename="../ViewManager/ViewManager.py" line="642"/>
         <source>Open an empty editor window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="646"/>
+        <location filename="../ViewManager/ViewManager.py" line="645"/>
         <source>&lt;b&gt;New&lt;/b&gt;&lt;p&gt;An empty editor window will be created.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="654"/>
+        <location filename="../ViewManager/ViewManager.py" line="653"/>
         <source>Open</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="654"/>
+        <location filename="../ViewManager/ViewManager.py" line="653"/>
         <source>&amp;Open...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="654"/>
+        <location filename="../ViewManager/ViewManager.py" line="653"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="662"/>
+        <location filename="../ViewManager/ViewManager.py" line="661"/>
         <source>Open a file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="664"/>
+        <location filename="../ViewManager/ViewManager.py" line="663"/>
         <source>&lt;b&gt;Open a file&lt;/b&gt;&lt;p&gt;You will be asked for the name of a file to be opened in an editor window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="675"/>
+        <location filename="../ViewManager/ViewManager.py" line="674"/>
         <source>Close</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="675"/>
+        <location filename="../ViewManager/ViewManager.py" line="674"/>
         <source>&amp;Close</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="675"/>
+        <location filename="../ViewManager/ViewManager.py" line="674"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="683"/>
+        <location filename="../ViewManager/ViewManager.py" line="682"/>
         <source>Close the current window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="686"/>
+        <location filename="../ViewManager/ViewManager.py" line="685"/>
         <source>&lt;b&gt;Close Window&lt;/b&gt;&lt;p&gt;Close the current window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="694"/>
+        <location filename="../ViewManager/ViewManager.py" line="693"/>
         <source>Close All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="694"/>
+        <location filename="../ViewManager/ViewManager.py" line="693"/>
         <source>Clos&amp;e All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="698"/>
+        <location filename="../ViewManager/ViewManager.py" line="697"/>
         <source>Close all editor windows</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="701"/>
+        <location filename="../ViewManager/ViewManager.py" line="700"/>
         <source>&lt;b&gt;Close All Windows&lt;/b&gt;&lt;p&gt;Close all editor windows.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="712"/>
         <source>Save</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="712"/>
         <source>&amp;Save</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="712"/>
         <source>Ctrl+S</source>
         <comment>File|Save</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="720"/>
+        <location filename="../ViewManager/ViewManager.py" line="719"/>
         <source>Save the current file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="722"/>
+        <location filename="../ViewManager/ViewManager.py" line="721"/>
         <source>&lt;b&gt;Save File&lt;/b&gt;&lt;p&gt;Save the contents of current editor window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="729"/>
         <source>Save as</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="729"/>
         <source>Save &amp;as...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="729"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="737"/>
+        <location filename="../ViewManager/ViewManager.py" line="736"/>
         <source>Save the current file to a new one</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="739"/>
+        <location filename="../ViewManager/ViewManager.py" line="738"/>
         <source>&lt;b&gt;Save File as&lt;/b&gt;&lt;p&gt;Save the contents of current editor window to a new file. The file can be entered in a file selection dialog.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="748"/>
+        <location filename="../ViewManager/ViewManager.py" line="747"/>
         <source>Save Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="748"/>
+        <location filename="../ViewManager/ViewManager.py" line="747"/>
         <source>Save &amp;Copy...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="753"/>
+        <location filename="../ViewManager/ViewManager.py" line="752"/>
         <source>Save a copy of the current file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="755"/>
+        <location filename="../ViewManager/ViewManager.py" line="754"/>
         <source>&lt;b&gt;Save Copy&lt;/b&gt;&lt;p&gt;Save a copy of the contents of current editor window. The file can be entered in a file selection dialog.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="764"/>
+        <location filename="../ViewManager/ViewManager.py" line="763"/>
         <source>Save all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="764"/>
+        <location filename="../ViewManager/ViewManager.py" line="763"/>
         <source>Save a&amp;ll</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="769"/>
+        <location filename="../ViewManager/ViewManager.py" line="768"/>
         <source>Save all files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="771"/>
+        <location filename="../ViewManager/ViewManager.py" line="770"/>
         <source>&lt;b&gt;Save All Files&lt;/b&gt;&lt;p&gt;Save the contents of all editor windows.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="781"/>
+        <location filename="../ViewManager/ViewManager.py" line="780"/>
         <source>Print</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="781"/>
+        <location filename="../ViewManager/ViewManager.py" line="780"/>
         <source>&amp;Print</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="781"/>
+        <location filename="../ViewManager/ViewManager.py" line="780"/>
         <source>Ctrl+P</source>
         <comment>File|Print</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="788"/>
+        <location filename="../ViewManager/ViewManager.py" line="787"/>
         <source>Print the current file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="790"/>
+        <location filename="../ViewManager/ViewManager.py" line="789"/>
         <source>&lt;b&gt;Print File&lt;/b&gt;&lt;p&gt;Print the contents of current editor window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="804"/>
+        <location filename="../ViewManager/ViewManager.py" line="803"/>
         <source>Print preview of the current file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="806"/>
+        <location filename="../ViewManager/ViewManager.py" line="805"/>
         <source>&lt;b&gt;Print Preview&lt;/b&gt;&lt;p&gt;Print preview of the current editor window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="816"/>
+        <location filename="../ViewManager/ViewManager.py" line="815"/>
         <source>Search File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="816"/>
+        <location filename="../ViewManager/ViewManager.py" line="815"/>
         <source>Search &amp;File...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="816"/>
+        <location filename="../ViewManager/ViewManager.py" line="815"/>
         <source>Alt+Ctrl+F</source>
         <comment>File|Search File</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="822"/>
+        <location filename="../ViewManager/ViewManager.py" line="821"/>
         <source>Search for a file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="824"/>
+        <location filename="../ViewManager/ViewManager.py" line="823"/>
         <source>&lt;b&gt;Search File&lt;/b&gt;&lt;p&gt;Search for a file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="838"/>
+        <location filename="../ViewManager/ViewManager.py" line="837"/>
         <source>&amp;File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="840"/>
+        <location filename="../ViewManager/ViewManager.py" line="839"/>
         <source>Open &amp;Recent Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="843"/>
+        <location filename="../ViewManager/ViewManager.py" line="842"/>
         <source>Open &amp;Bookmarked Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="891"/>
+        <location filename="../ViewManager/ViewManager.py" line="890"/>
         <source>File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="914"/>
+        <location filename="../ViewManager/ViewManager.py" line="913"/>
         <source>Export as</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="938"/>
+        <location filename="../ViewManager/ViewManager.py" line="937"/>
         <source>Undo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="938"/>
+        <location filename="../ViewManager/ViewManager.py" line="937"/>
         <source>&amp;Undo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="938"/>
+        <location filename="../ViewManager/ViewManager.py" line="937"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="938"/>
+        <location filename="../ViewManager/ViewManager.py" line="937"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="947"/>
+        <location filename="../ViewManager/ViewManager.py" line="946"/>
         <source>Undo the last change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="949"/>
+        <location filename="../ViewManager/ViewManager.py" line="948"/>
         <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last change done in the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="957"/>
+        <location filename="../ViewManager/ViewManager.py" line="956"/>
         <source>Redo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="957"/>
+        <location filename="../ViewManager/ViewManager.py" line="956"/>
         <source>&amp;Redo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="957"/>
+        <location filename="../ViewManager/ViewManager.py" line="956"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="965"/>
+        <location filename="../ViewManager/ViewManager.py" line="964"/>
         <source>Redo the last change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="967"/>
+        <location filename="../ViewManager/ViewManager.py" line="966"/>
         <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last change done in the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="984"/>
+        <location filename="../ViewManager/ViewManager.py" line="983"/>
         <source>Revert to last saved state</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="975"/>
+        <location filename="../ViewManager/ViewManager.py" line="974"/>
         <source>Re&amp;vert to last saved state</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="975"/>
+        <location filename="../ViewManager/ViewManager.py" line="974"/>
         <source>Ctrl+Y</source>
         <comment>Edit|Revert</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="985"/>
         <source>&lt;b&gt;Revert to last saved state&lt;/b&gt;&lt;p&gt;Undo all changes up to the last saved state of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <source>Cut</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <source>Cu&amp;t</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1006"/>
+        <location filename="../ViewManager/ViewManager.py" line="1005"/>
         <source>Cut the selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1008"/>
+        <location filename="../ViewManager/ViewManager.py" line="1007"/>
         <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected text of the current editor to the clipboard.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1017"/>
+        <location filename="../ViewManager/ViewManager.py" line="1016"/>
         <source>Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1017"/>
+        <location filename="../ViewManager/ViewManager.py" line="1016"/>
         <source>&amp;Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1017"/>
+        <location filename="../ViewManager/ViewManager.py" line="1016"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1017"/>
+        <location filename="../ViewManager/ViewManager.py" line="1016"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1026"/>
+        <location filename="../ViewManager/ViewManager.py" line="1025"/>
         <source>Copy the selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1028"/>
+        <location filename="../ViewManager/ViewManager.py" line="1027"/>
         <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected text of the current editor to the clipboard.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1037"/>
+        <location filename="../ViewManager/ViewManager.py" line="1036"/>
         <source>Paste</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1037"/>
+        <location filename="../ViewManager/ViewManager.py" line="1036"/>
         <source>&amp;Paste</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1037"/>
+        <location filename="../ViewManager/ViewManager.py" line="1036"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1037"/>
+        <location filename="../ViewManager/ViewManager.py" line="1036"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1046"/>
+        <location filename="../ViewManager/ViewManager.py" line="1045"/>
         <source>Paste the last cut/copied text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1048"/>
+        <location filename="../ViewManager/ViewManager.py" line="1047"/>
         <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the last cut/copied text from the clipboard to the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1057"/>
+        <location filename="../ViewManager/ViewManager.py" line="1056"/>
         <source>Clear</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1057"/>
+        <location filename="../ViewManager/ViewManager.py" line="1056"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1065"/>
+        <location filename="../ViewManager/ViewManager.py" line="1064"/>
         <source>Clear all text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1067"/>
+        <location filename="../ViewManager/ViewManager.py" line="1066"/>
         <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Delete all text of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1082"/>
+        <location filename="../ViewManager/ViewManager.py" line="1081"/>
         <source>Join Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1075"/>
+        <location filename="../ViewManager/ViewManager.py" line="1074"/>
         <source>Ctrl+J</source>
         <comment>Edit|Join Lines</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1084"/>
+        <location filename="../ViewManager/ViewManager.py" line="1083"/>
         <source>&lt;b&gt;Join Lines&lt;/b&gt;&lt;p&gt;Join the current and the next lines.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1092"/>
+        <location filename="../ViewManager/ViewManager.py" line="1091"/>
         <source>Indent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1092"/>
+        <location filename="../ViewManager/ViewManager.py" line="1091"/>
         <source>&amp;Indent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1092"/>
+        <location filename="../ViewManager/ViewManager.py" line="1091"/>
         <source>Ctrl+I</source>
         <comment>Edit|Indent</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1100"/>
+        <location filename="../ViewManager/ViewManager.py" line="1099"/>
         <source>Indent line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1102"/>
+        <location filename="../ViewManager/ViewManager.py" line="1101"/>
         <source>&lt;b&gt;Indent&lt;/b&gt;&lt;p&gt;Indents the current line or the lines of the selection by one level.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1111"/>
+        <location filename="../ViewManager/ViewManager.py" line="1110"/>
         <source>Unindent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1111"/>
+        <location filename="../ViewManager/ViewManager.py" line="1110"/>
         <source>U&amp;nindent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1111"/>
+        <location filename="../ViewManager/ViewManager.py" line="1110"/>
         <source>Ctrl+Shift+I</source>
         <comment>Edit|Unindent</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1119"/>
+        <location filename="../ViewManager/ViewManager.py" line="1118"/>
         <source>Unindent line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1121"/>
+        <location filename="../ViewManager/ViewManager.py" line="1120"/>
         <source>&lt;b&gt;Unindent&lt;/b&gt;&lt;p&gt;Unindents the current line or the lines of the selection by one level.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1130"/>
+        <location filename="../ViewManager/ViewManager.py" line="1129"/>
         <source>Smart indent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1136"/>
+        <location filename="../ViewManager/ViewManager.py" line="1135"/>
         <source>Smart indent Line or Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1138"/>
+        <location filename="../ViewManager/ViewManager.py" line="1137"/>
         <source>&lt;b&gt;Smart indent&lt;/b&gt;&lt;p&gt;Indents the current line or the lines of the current selection smartly.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1147"/>
+        <location filename="../ViewManager/ViewManager.py" line="1146"/>
         <source>Comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1147"/>
+        <location filename="../ViewManager/ViewManager.py" line="1146"/>
         <source>C&amp;omment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1147"/>
+        <location filename="../ViewManager/ViewManager.py" line="1146"/>
         <source>Ctrl+M</source>
         <comment>Edit|Comment</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1155"/>
+        <location filename="../ViewManager/ViewManager.py" line="1154"/>
         <source>Comment Line or Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1157"/>
+        <location filename="../ViewManager/ViewManager.py" line="1156"/>
         <source>&lt;b&gt;Comment&lt;/b&gt;&lt;p&gt;Comments the current line or the lines of the current selection.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1166"/>
+        <location filename="../ViewManager/ViewManager.py" line="1165"/>
         <source>Uncomment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1166"/>
+        <location filename="../ViewManager/ViewManager.py" line="1165"/>
         <source>Unco&amp;mment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1166"/>
+        <location filename="../ViewManager/ViewManager.py" line="1165"/>
         <source>Alt+Ctrl+M</source>
         <comment>Edit|Uncomment</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1174"/>
+        <location filename="../ViewManager/ViewManager.py" line="1173"/>
         <source>Uncomment Line or Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1176"/>
+        <location filename="../ViewManager/ViewManager.py" line="1175"/>
         <source>&lt;b&gt;Uncomment&lt;/b&gt;&lt;p&gt;Uncomments the current line or the lines of the current selection.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1185"/>
+        <location filename="../ViewManager/ViewManager.py" line="1184"/>
         <source>Toggle Comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1185"/>
+        <location filename="../ViewManager/ViewManager.py" line="1184"/>
         <source>Ctrl+Shift+M</source>
         <comment>Edit|Toggle Comment</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1193"/>
+        <location filename="../ViewManager/ViewManager.py" line="1192"/>
         <source>Toggle the comment of the current line, selection or comment block</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1197"/>
+        <location filename="../ViewManager/ViewManager.py" line="1196"/>
         <source>&lt;b&gt;Toggle Comment&lt;/b&gt;&lt;p&gt;If the current line does not start with a block comment, the current line or selection is commented. If it is already commented, this comment block is uncommented. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1207"/>
+        <location filename="../ViewManager/ViewManager.py" line="1206"/>
         <source>Stream Comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1212"/>
+        <location filename="../ViewManager/ViewManager.py" line="1211"/>
         <source>Stream Comment Line or Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1215"/>
+        <location filename="../ViewManager/ViewManager.py" line="1214"/>
         <source>&lt;b&gt;Stream Comment&lt;/b&gt;&lt;p&gt;Stream comments the current line or the current selection.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1224"/>
+        <location filename="../ViewManager/ViewManager.py" line="1223"/>
         <source>Box Comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1229"/>
+        <location filename="../ViewManager/ViewManager.py" line="1228"/>
         <source>Box Comment Line or Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1231"/>
+        <location filename="../ViewManager/ViewManager.py" line="1230"/>
         <source>&lt;b&gt;Box Comment&lt;/b&gt;&lt;p&gt;Box comments the current line or the lines of the current selection.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1240"/>
+        <location filename="../ViewManager/ViewManager.py" line="1239"/>
         <source>Select to brace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1240"/>
+        <location filename="../ViewManager/ViewManager.py" line="1239"/>
         <source>Select to &amp;brace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1240"/>
+        <location filename="../ViewManager/ViewManager.py" line="1239"/>
         <source>Ctrl+E</source>
         <comment>Edit|Select to brace</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1247"/>
+        <location filename="../ViewManager/ViewManager.py" line="1246"/>
         <source>Select text to the matching brace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1249"/>
+        <location filename="../ViewManager/ViewManager.py" line="1248"/>
         <source>&lt;b&gt;Select to brace&lt;/b&gt;&lt;p&gt;Select text of the current editor to the matching brace.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1258"/>
+        <location filename="../ViewManager/ViewManager.py" line="1257"/>
         <source>Select all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1258"/>
+        <location filename="../ViewManager/ViewManager.py" line="1257"/>
         <source>&amp;Select all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1258"/>
+        <location filename="../ViewManager/ViewManager.py" line="1257"/>
         <source>Ctrl+A</source>
         <comment>Edit|Select all</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1266"/>
+        <location filename="../ViewManager/ViewManager.py" line="1265"/>
         <source>Select all text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1268"/>
+        <location filename="../ViewManager/ViewManager.py" line="1267"/>
         <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Select all text of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1275"/>
         <source>Deselect all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1275"/>
         <source>&amp;Deselect all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1275"/>
         <source>Alt+Ctrl+A</source>
         <comment>Edit|Deselect all</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1283"/>
+        <location filename="../ViewManager/ViewManager.py" line="1282"/>
         <source>Deselect all text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1285"/>
+        <location filename="../ViewManager/ViewManager.py" line="1284"/>
         <source>&lt;b&gt;Deselect All&lt;/b&gt;&lt;p&gt;Deselect all text of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1300"/>
+        <location filename="../ViewManager/ViewManager.py" line="1299"/>
         <source>Convert Line End Characters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1293"/>
+        <location filename="../ViewManager/ViewManager.py" line="1292"/>
         <source>Convert &amp;Line End Characters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1302"/>
+        <location filename="../ViewManager/ViewManager.py" line="1301"/>
         <source>&lt;b&gt;Convert Line End Characters&lt;/b&gt;&lt;p&gt;Convert the line end characters to the currently set type.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1316"/>
+        <location filename="../ViewManager/ViewManager.py" line="1315"/>
         <source>Shorten empty lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1318"/>
+        <location filename="../ViewManager/ViewManager.py" line="1317"/>
         <source>&lt;b&gt;Shorten empty lines&lt;/b&gt;&lt;p&gt;Shorten lines consisting solely of whitespace characters.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2778"/>
+        <location filename="../ViewManager/ViewManager.py" line="2776"/>
         <source>Complete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1327"/>
+        <location filename="../ViewManager/ViewManager.py" line="1326"/>
         <source>&amp;Complete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1327"/>
+        <location filename="../ViewManager/ViewManager.py" line="1326"/>
         <source>Ctrl+Space</source>
         <comment>Edit|Complete</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1334"/>
+        <location filename="../ViewManager/ViewManager.py" line="1333"/>
         <source>Complete current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1336"/>
+        <location filename="../ViewManager/ViewManager.py" line="1335"/>
         <source>&lt;b&gt;Complete&lt;/b&gt;&lt;p&gt;Performs a completion of the word containing the cursor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1345"/>
+        <location filename="../ViewManager/ViewManager.py" line="1344"/>
         <source>Complete from Document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1345"/>
+        <location filename="../ViewManager/ViewManager.py" line="1344"/>
         <source>Ctrl+Shift+Space</source>
         <comment>Edit|Complete from Document</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1355"/>
+        <location filename="../ViewManager/ViewManager.py" line="1354"/>
         <source>Complete current word from Document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1358"/>
+        <location filename="../ViewManager/ViewManager.py" line="1357"/>
         <source>&lt;b&gt;Complete from Document&lt;/b&gt;&lt;p&gt;Performs a completion from document of the word containing the cursor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1368"/>
+        <location filename="../ViewManager/ViewManager.py" line="1367"/>
         <source>Complete from APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1368"/>
+        <location filename="../ViewManager/ViewManager.py" line="1367"/>
         <source>Ctrl+Alt+Space</source>
         <comment>Edit|Complete from APIs</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1378"/>
+        <location filename="../ViewManager/ViewManager.py" line="1377"/>
         <source>Complete current word from APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1381"/>
+        <location filename="../ViewManager/ViewManager.py" line="1380"/>
         <source>&lt;b&gt;Complete from APIs&lt;/b&gt;&lt;p&gt;Performs a completion from APIs of the word containing the cursor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1391"/>
+        <location filename="../ViewManager/ViewManager.py" line="1390"/>
         <source>Complete from Document and APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1391"/>
+        <location filename="../ViewManager/ViewManager.py" line="1390"/>
         <source>Alt+Shift+Space</source>
         <comment>Edit|Complete from Document and APIs</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1401"/>
+        <location filename="../ViewManager/ViewManager.py" line="1400"/>
         <source>Complete current word from Document and APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1404"/>
+        <location filename="../ViewManager/ViewManager.py" line="1403"/>
         <source>&lt;b&gt;Complete from Document and APIs&lt;/b&gt;&lt;p&gt;Performs a completion from document and APIs of the word containing the cursor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1414"/>
+        <location filename="../ViewManager/ViewManager.py" line="1413"/>
         <source>Calltip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1414"/>
+        <location filename="../ViewManager/ViewManager.py" line="1413"/>
         <source>&amp;Calltip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1414"/>
+        <location filename="../ViewManager/ViewManager.py" line="1413"/>
         <source>Meta+Alt+Space</source>
         <comment>Edit|Calltip</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1421"/>
+        <location filename="../ViewManager/ViewManager.py" line="1420"/>
         <source>Show Calltips</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1423"/>
+        <location filename="../ViewManager/ViewManager.py" line="1422"/>
         <source>&lt;b&gt;Calltip&lt;/b&gt;&lt;p&gt;Show calltips based on the characters immediately to the left of the cursor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1450"/>
+        <location filename="../ViewManager/ViewManager.py" line="1449"/>
         <source>Sort</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1450"/>
+        <location filename="../ViewManager/ViewManager.py" line="1449"/>
         <source>Ctrl+Alt+S</source>
         <comment>Edit|Sort</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1457"/>
+        <location filename="../ViewManager/ViewManager.py" line="1456"/>
         <source>Sort the lines containing the rectangular selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1460"/>
+        <location filename="../ViewManager/ViewManager.py" line="1459"/>
         <source>&lt;b&gt;Sort&lt;/b&gt;&lt;p&gt;Sort the lines spanned by a rectangular selection based on the selection ignoring leading and trailing whitespace.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2103"/>
+        <location filename="../ViewManager/ViewManager.py" line="2102"/>
         <source>Insert new line below current line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2103"/>
+        <location filename="../ViewManager/ViewManager.py" line="2102"/>
         <source>Shift+Return</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2103"/>
+        <location filename="../ViewManager/ViewManager.py" line="2102"/>
         <source>Shift+Enter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3354"/>
+        <location filename="../ViewManager/ViewManager.py" line="3352"/>
         <source>&amp;Search</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2788"/>
+        <location filename="../ViewManager/ViewManager.py" line="2786"/>
         <source>&amp;Edit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2845"/>
+        <location filename="../ViewManager/ViewManager.py" line="2843"/>
         <source>Edit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2957"/>
+        <location filename="../ViewManager/ViewManager.py" line="2955"/>
         <source>Search current word forward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2957"/>
+        <location filename="../ViewManager/ViewManager.py" line="2955"/>
         <source>Ctrl+.</source>
         <comment>Search|Search current word forward</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2968"/>
+        <location filename="../ViewManager/ViewManager.py" line="2966"/>
         <source>Search next occurrence of the current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2971"/>
+        <location filename="../ViewManager/ViewManager.py" line="2969"/>
         <source>&lt;b&gt;Search current word forward&lt;/b&gt;&lt;p&gt;Search the next occurrence of the current word of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2980"/>
+        <location filename="../ViewManager/ViewManager.py" line="2978"/>
         <source>Search current word backward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2980"/>
+        <location filename="../ViewManager/ViewManager.py" line="2978"/>
         <source>Ctrl+,</source>
         <comment>Search|Search current word backward</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2991"/>
+        <location filename="../ViewManager/ViewManager.py" line="2989"/>
         <source>Search previous occurrence of the current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2994"/>
+        <location filename="../ViewManager/ViewManager.py" line="2992"/>
         <source>&lt;b&gt;Search current word backward&lt;/b&gt;&lt;p&gt;Search the previous occurrence of the current word of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3389"/>
+        <location filename="../ViewManager/ViewManager.py" line="3387"/>
         <source>Quicksearch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3090"/>
+        <location filename="../ViewManager/ViewManager.py" line="3088"/>
         <source>&amp;Quicksearch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3090"/>
+        <location filename="../ViewManager/ViewManager.py" line="3088"/>
         <source>Ctrl+Shift+K</source>
         <comment>Search|Quicksearch</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3096"/>
+        <source>Perform a quicksearch</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3098"/>
-        <source>Perform a quicksearch</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3100"/>
         <source>&lt;b&gt;Quicksearch&lt;/b&gt;&lt;p&gt;This activates the quicksearch function of the IDE by giving focus to the quicksearch entry field. If this field is already active and contains text, it searches for the next occurrence of this text.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3111"/>
+        <location filename="../ViewManager/ViewManager.py" line="3109"/>
         <source>Quicksearch backwards</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3111"/>
+        <location filename="../ViewManager/ViewManager.py" line="3109"/>
         <source>Quicksearch &amp;backwards</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3111"/>
+        <location filename="../ViewManager/ViewManager.py" line="3109"/>
         <source>Ctrl+Shift+J</source>
         <comment>Search|Quicksearch backwards</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3121"/>
+        <location filename="../ViewManager/ViewManager.py" line="3119"/>
         <source>Perform a quicksearch backwards</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3124"/>
+        <location filename="../ViewManager/ViewManager.py" line="3122"/>
         <source>&lt;b&gt;Quicksearch backwards&lt;/b&gt;&lt;p&gt;This searches the previous occurrence of the quicksearch text.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3133"/>
+        <location filename="../ViewManager/ViewManager.py" line="3131"/>
         <source>Quicksearch extend</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3133"/>
+        <location filename="../ViewManager/ViewManager.py" line="3131"/>
         <source>Quicksearch e&amp;xtend</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3133"/>
+        <location filename="../ViewManager/ViewManager.py" line="3131"/>
         <source>Ctrl+Shift+H</source>
         <comment>Search|Quicksearch extend</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3141"/>
+        <location filename="../ViewManager/ViewManager.py" line="3139"/>
         <source>Extend the quicksearch to the end of the current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3144"/>
+        <location filename="../ViewManager/ViewManager.py" line="3142"/>
         <source>&lt;b&gt;Quicksearch extend&lt;/b&gt;&lt;p&gt;This extends the quicksearch text to the end of the word currently found.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3160"/>
+        <source>Goto Line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3152"/>
+        <source>&amp;Goto Line...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3152"/>
+        <source>Ctrl+G</source>
+        <comment>Search|Goto Line</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3162"/>
-        <source>Goto Line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3154"/>
-        <source>&amp;Goto Line...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3154"/>
-        <source>Ctrl+G</source>
-        <comment>Search|Goto Line</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3164"/>
         <source>&lt;b&gt;Goto Line&lt;/b&gt;&lt;p&gt;Go to a specific line of text in the current editor. A dialog is shown to enter the linenumber.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3179"/>
+        <source>Goto Brace</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3171"/>
+        <source>Goto &amp;Brace</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3171"/>
+        <source>Ctrl+L</source>
+        <comment>Search|Goto Brace</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3181"/>
-        <source>Goto Brace</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3173"/>
-        <source>Goto &amp;Brace</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3173"/>
-        <source>Ctrl+L</source>
-        <comment>Search|Goto Brace</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3183"/>
         <source>&lt;b&gt;Goto Brace&lt;/b&gt;&lt;p&gt;Go to the matching brace in the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3202"/>
+        <location filename="../ViewManager/ViewManager.py" line="3200"/>
         <source>Goto Last Edit Location</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3191"/>
+        <location filename="../ViewManager/ViewManager.py" line="3189"/>
         <source>Goto Last &amp;Edit Location</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3191"/>
+        <location filename="../ViewManager/ViewManager.py" line="3189"/>
         <source>Ctrl+Shift+G</source>
         <comment>Search|Goto Last Edit Location</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3205"/>
+        <location filename="../ViewManager/ViewManager.py" line="3203"/>
         <source>&lt;b&gt;Goto Last Edit Location&lt;/b&gt;&lt;p&gt;Go to the location of the last edit in the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3214"/>
+        <location filename="../ViewManager/ViewManager.py" line="3212"/>
         <source>Goto Previous Method or Class</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3214"/>
+        <location filename="../ViewManager/ViewManager.py" line="3212"/>
         <source>Ctrl+Shift+Up</source>
         <comment>Search|Goto Previous Method or Class</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3224"/>
+        <location filename="../ViewManager/ViewManager.py" line="3222"/>
         <source>Go to the previous method or class definition</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3228"/>
+        <location filename="../ViewManager/ViewManager.py" line="3226"/>
         <source>&lt;b&gt;Goto Previous Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the previous method or class definition and highlights the name.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3238"/>
+        <location filename="../ViewManager/ViewManager.py" line="3236"/>
         <source>Goto Next Method or Class</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3238"/>
+        <location filename="../ViewManager/ViewManager.py" line="3236"/>
         <source>Ctrl+Shift+Down</source>
         <comment>Search|Goto Next Method or Class</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3246"/>
+        <source>Go to the next method or class definition</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3248"/>
-        <source>Go to the next method or class definition</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3250"/>
         <source>&lt;b&gt;Goto Next Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the next method or class definition and highlights the name.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3261"/>
+        <location filename="../ViewManager/ViewManager.py" line="3259"/>
         <source>Search in Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3261"/>
+        <location filename="../ViewManager/ViewManager.py" line="3259"/>
         <source>Search in &amp;Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3261"/>
+        <location filename="../ViewManager/ViewManager.py" line="3259"/>
         <source>Shift+Ctrl+F</source>
         <comment>Search|Search Files</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3267"/>
+        <source>Search for a text in files</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3269"/>
-        <source>Search for a text in files</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3271"/>
         <source>&lt;b&gt;Search in Files&lt;/b&gt;&lt;p&gt;Search for some text in the files of a directory tree or the project. A dialog is shown to enter the searchtext and options for the search and to display the result.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3281"/>
+        <location filename="../ViewManager/ViewManager.py" line="3279"/>
         <source>Replace in Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3281"/>
+        <location filename="../ViewManager/ViewManager.py" line="3279"/>
         <source>Replace in F&amp;iles...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3281"/>
+        <location filename="../ViewManager/ViewManager.py" line="3279"/>
         <source>Shift+Ctrl+R</source>
         <comment>Search|Replace in Files</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3286"/>
+        <source>Search for a text in files and replace it</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3288"/>
-        <source>Search for a text in files and replace it</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3290"/>
         <source>&lt;b&gt;Replace in Files&lt;/b&gt;&lt;p&gt;Search for some text in the files of a directory tree or the project and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and to display the result.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3301"/>
+        <location filename="../ViewManager/ViewManager.py" line="3299"/>
         <source>Search in Open Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3301"/>
+        <location filename="../ViewManager/ViewManager.py" line="3299"/>
         <source>Search in Open Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3301"/>
+        <location filename="../ViewManager/ViewManager.py" line="3299"/>
         <source>Meta+Ctrl+Alt+F</source>
         <comment>Search|Search Open Files</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3310"/>
+        <source>Search for a text in open files</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3312"/>
-        <source>Search for a text in open files</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3314"/>
         <source>&lt;b&gt;Search in Open Files&lt;/b&gt;&lt;p&gt;Search for some text in the currently opened files. A dialog is shown to enter the searchtext and options for the search and to display the result.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3324"/>
+        <location filename="../ViewManager/ViewManager.py" line="3322"/>
         <source>Replace in Open Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3324"/>
+        <location filename="../ViewManager/ViewManager.py" line="3322"/>
         <source>Replace in Open Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3324"/>
+        <location filename="../ViewManager/ViewManager.py" line="3322"/>
         <source>Meta+Ctrl+Alt+R</source>
         <comment>Search|Replace in Open Files</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3332"/>
+        <source>Search for a text in open files and replace it</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3334"/>
-        <source>Search for a text in open files and replace it</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3336"/>
         <source>&lt;b&gt;Replace in Open Files&lt;/b&gt;&lt;p&gt;Search for some text in the currently opened files and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and to display the result.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3408"/>
+        <location filename="../ViewManager/ViewManager.py" line="3406"/>
         <source>&lt;p&gt;Enter the searchtext directly into this field. The search will be performed case insensitive. The quicksearch function is activated upon activation of the quicksearch next action (default key Ctrl+Shift+K), if this entry field does not have the input focus. Otherwise it searches for the next occurrence of the text entered. The quicksearch backwards action (default key Ctrl+Shift+J) searches backward. Activating the &apos;quicksearch extend&apos; action (default key Ctrl+Shift+H) extends the current searchtext to the end of the currently found word. The quicksearch can be ended by pressing the Return key while the quicksearch entry has the the input focus.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3435"/>
+        <location filename="../ViewManager/ViewManager.py" line="3433"/>
         <source>Quicksearch Textedit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3487"/>
         <source>Zoom in</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3487"/>
         <source>Zoom &amp;in</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3487"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3487"/>
         <source>Zoom In</source>
         <comment>View|Zoom in</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3496"/>
+        <source>Zoom in on the text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3498"/>
-        <source>Zoom in on the text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3500"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3508"/>
+        <location filename="../ViewManager/ViewManager.py" line="3506"/>
         <source>Zoom out</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3508"/>
+        <location filename="../ViewManager/ViewManager.py" line="3506"/>
         <source>Zoom &amp;out</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3508"/>
+        <location filename="../ViewManager/ViewManager.py" line="3506"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3508"/>
+        <location filename="../ViewManager/ViewManager.py" line="3506"/>
         <source>Zoom Out</source>
         <comment>View|Zoom out</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3515"/>
+        <source>Zoom out on the text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3517"/>
-        <source>Zoom out on the text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3519"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3525"/>
         <source>Zoom reset</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3525"/>
         <source>Zoom &amp;reset</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3525"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3533"/>
+        <source>Reset the zoom of the text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3535"/>
-        <source>Reset the zoom of the text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3537"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3546"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>Zoom</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3546"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>&amp;Zoom</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3546"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>Ctrl+#</source>
         <comment>View|Zoom</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3552"/>
+        <source>Zoom the text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3554"/>
-        <source>Zoom the text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3556"/>
         <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"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3567"/>
+        <source>Toggle all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3563"/>
+        <source>&amp;Toggle all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3569"/>
-        <source>Toggle all folds</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3565"/>
-        <source>&amp;Toggle all folds</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3571"/>
         <source>&lt;b&gt;Toggle all folds&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3583"/>
+        <source>Toggle all folds (including children)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3577"/>
+        <source>Toggle all &amp;folds (including children)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3585"/>
-        <source>Toggle all folds (including children)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3579"/>
-        <source>Toggle all &amp;folds (including children)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3587"/>
         <source>&lt;b&gt;Toggle all folds (including children)&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor including all children.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3599"/>
+        <source>Toggle current fold</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3595"/>
+        <source>Toggle &amp;current fold</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3601"/>
-        <source>Toggle current fold</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3597"/>
-        <source>Toggle &amp;current fold</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3603"/>
         <source>&lt;b&gt;Toggle current fold&lt;/b&gt;&lt;p&gt;Toggle the folds of the current line of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3631"/>
+        <source>Remove all highlights</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3633"/>
-        <source>Remove all highlights</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3635"/>
         <source>&lt;b&gt;Remove all highlights&lt;/b&gt;&lt;p&gt;Remove the highlights of all editors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3643"/>
+        <location filename="../ViewManager/ViewManager.py" line="3641"/>
         <source>New Document View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3643"/>
+        <location filename="../ViewManager/ViewManager.py" line="3641"/>
         <source>New &amp;Document View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3646"/>
+        <source>Open a new view of the current document</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3648"/>
-        <source>Open a new view of the current document</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3650"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3660"/>
+        <location filename="../ViewManager/ViewManager.py" line="3658"/>
         <source>New Document View (with new split)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3667"/>
+        <location filename="../ViewManager/ViewManager.py" line="3665"/>
         <source>Open a new view of the current document in a new split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3670"/>
+        <location filename="../ViewManager/ViewManager.py" line="3668"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document in a new split. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3681"/>
+        <location filename="../ViewManager/ViewManager.py" line="3679"/>
         <source>Split view</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3681"/>
+        <location filename="../ViewManager/ViewManager.py" line="3679"/>
         <source>&amp;Split view</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3684"/>
+        <source>Add a split to the view</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3686"/>
-        <source>Add a split to the view</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3688"/>
         <source>&lt;b&gt;Split view&lt;/b&gt;&lt;p&gt;Add a split to the view.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3696"/>
+        <location filename="../ViewManager/ViewManager.py" line="3694"/>
         <source>Arrange horizontally</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3696"/>
+        <location filename="../ViewManager/ViewManager.py" line="3694"/>
         <source>Arrange &amp;horizontally</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3698"/>
+        <source>Arrange the splitted views horizontally</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3700"/>
-        <source>Arrange the splitted views horizontally</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3702"/>
         <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3711"/>
+        <location filename="../ViewManager/ViewManager.py" line="3709"/>
         <source>Remove split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3711"/>
+        <location filename="../ViewManager/ViewManager.py" line="3709"/>
         <source>&amp;Remove split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3714"/>
+        <source>Remove the current split</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3716"/>
-        <source>Remove the current split</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3718"/>
         <source>&lt;b&gt;Remove split&lt;/b&gt;&lt;p&gt;Remove the current split.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3726"/>
+        <location filename="../ViewManager/ViewManager.py" line="3724"/>
         <source>Next split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3726"/>
+        <location filename="../ViewManager/ViewManager.py" line="3724"/>
         <source>&amp;Next split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3726"/>
+        <location filename="../ViewManager/ViewManager.py" line="3724"/>
         <source>Ctrl+Alt+N</source>
         <comment>View|Next split</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3731"/>
+        <source>Move to the next split</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3733"/>
-        <source>Move to the next split</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3735"/>
         <source>&lt;b&gt;Next split&lt;/b&gt;&lt;p&gt;Move to the next split.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3743"/>
+        <location filename="../ViewManager/ViewManager.py" line="3741"/>
         <source>Previous split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3743"/>
+        <location filename="../ViewManager/ViewManager.py" line="3741"/>
         <source>&amp;Previous split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3743"/>
+        <location filename="../ViewManager/ViewManager.py" line="3741"/>
         <source>Ctrl+Alt+P</source>
         <comment>View|Previous split</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3747"/>
+        <source>Move to the previous split</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3749"/>
-        <source>Move to the previous split</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3751"/>
         <source>&lt;b&gt;Previous split&lt;/b&gt;&lt;p&gt;Move to the previous split.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3759"/>
+        <location filename="../ViewManager/ViewManager.py" line="3757"/>
         <source>Preview</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3762"/>
+        <source>Preview the current file in the web browser</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3764"/>
-        <source>Preview the current file in the web browser</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3766"/>
         <source>&lt;b&gt;Preview&lt;/b&gt;&lt;p&gt;This opens the web browser with a preview of the current file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3835"/>
+        <location filename="../ViewManager/ViewManager.py" line="3833"/>
         <source>&amp;View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3872"/>
+        <location filename="../ViewManager/ViewManager.py" line="3870"/>
         <source>View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3906"/>
+        <source>Start Macro Recording</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3900"/>
+        <source>S&amp;tart Macro Recording</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3908"/>
-        <source>Start Macro Recording</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3902"/>
-        <source>S&amp;tart Macro Recording</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3910"/>
         <source>&lt;b&gt;Start Macro Recording&lt;/b&gt;&lt;p&gt;Start recording editor commands into a new macro.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3920"/>
+        <source>Stop Macro Recording</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3916"/>
+        <source>Sto&amp;p Macro Recording</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3922"/>
-        <source>Stop Macro Recording</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3918"/>
-        <source>Sto&amp;p Macro Recording</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3924"/>
         <source>&lt;b&gt;Stop Macro Recording&lt;/b&gt;&lt;p&gt;Stop recording editor commands into a new macro.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3934"/>
+        <source>Run Macro</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3930"/>
+        <source>&amp;Run Macro</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3936"/>
-        <source>Run Macro</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3932"/>
-        <source>&amp;Run Macro</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3938"/>
         <source>&lt;b&gt;Run Macro&lt;/b&gt;&lt;p&gt;Run a previously recorded editor macro.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3948"/>
+        <source>Delete Macro</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3944"/>
+        <source>&amp;Delete Macro</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3950"/>
-        <source>Delete Macro</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3946"/>
-        <source>&amp;Delete Macro</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3952"/>
         <source>&lt;b&gt;Delete Macro&lt;/b&gt;&lt;p&gt;Delete a previously recorded editor macro.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3962"/>
+        <source>Load Macro</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3958"/>
+        <source>&amp;Load Macro</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3964"/>
-        <source>Load Macro</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3960"/>
-        <source>&amp;Load Macro</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3966"/>
         <source>&lt;b&gt;Load Macro&lt;/b&gt;&lt;p&gt;Load an editor macro from a file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3976"/>
+        <source>Save Macro</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3972"/>
+        <source>&amp;Save Macro</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3978"/>
-        <source>Save Macro</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3974"/>
-        <source>&amp;Save Macro</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3980"/>
         <source>&lt;b&gt;Save Macro&lt;/b&gt;&lt;p&gt;Save a previously recorded editor macro to a file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3996"/>
+        <location filename="../ViewManager/ViewManager.py" line="3994"/>
         <source>&amp;Macros</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4020"/>
+        <source>Toggle Bookmark</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <source>&amp;Toggle Bookmark</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <source>Alt+Ctrl+T</source>
+        <comment>Bookmark|Toggle</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4022"/>
-        <source>Toggle Bookmark</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4014"/>
-        <source>&amp;Toggle Bookmark</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4014"/>
-        <source>Alt+Ctrl+T</source>
-        <comment>Bookmark|Toggle</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4024"/>
         <source>&lt;b&gt;Toggle Bookmark&lt;/b&gt;&lt;p&gt;Toggle a bookmark at the current line of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4039"/>
+        <source>Next Bookmark</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4031"/>
+        <source>&amp;Next Bookmark</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4031"/>
+        <source>Ctrl+PgDown</source>
+        <comment>Bookmark|Next</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4041"/>
-        <source>Next Bookmark</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4033"/>
-        <source>&amp;Next Bookmark</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4033"/>
-        <source>Ctrl+PgDown</source>
-        <comment>Bookmark|Next</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4043"/>
         <source>&lt;b&gt;Next Bookmark&lt;/b&gt;&lt;p&gt;Go to next bookmark of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4057"/>
+        <source>Previous Bookmark</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4049"/>
+        <source>&amp;Previous Bookmark</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4049"/>
+        <source>Ctrl+PgUp</source>
+        <comment>Bookmark|Previous</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4059"/>
-        <source>Previous Bookmark</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4051"/>
-        <source>&amp;Previous Bookmark</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4051"/>
-        <source>Ctrl+PgUp</source>
-        <comment>Bookmark|Previous</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4061"/>
         <source>&lt;b&gt;Previous Bookmark&lt;/b&gt;&lt;p&gt;Go to previous bookmark of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4074"/>
+        <source>Clear Bookmarks</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <source>&amp;Clear Bookmarks</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <source>Alt+Ctrl+C</source>
+        <comment>Bookmark|Clear</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4076"/>
-        <source>Clear Bookmarks</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4069"/>
-        <source>&amp;Clear Bookmarks</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4069"/>
-        <source>Alt+Ctrl+C</source>
-        <comment>Bookmark|Clear</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4078"/>
         <source>&lt;b&gt;Clear Bookmarks&lt;/b&gt;&lt;p&gt;Clear bookmarks of all editors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4090"/>
+        <source>Goto Syntax Error</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4084"/>
+        <source>&amp;Goto Syntax Error</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4092"/>
-        <source>Goto Syntax Error</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4086"/>
-        <source>&amp;Goto Syntax Error</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4094"/>
         <source>&lt;b&gt;Goto Syntax Error&lt;/b&gt;&lt;p&gt;Go to next syntax error of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4105"/>
+        <source>Clear Syntax Errors</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4100"/>
+        <source>Clear &amp;Syntax Errors</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4107"/>
-        <source>Clear Syntax Errors</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4102"/>
-        <source>Clear &amp;Syntax Errors</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4109"/>
         <source>&lt;b&gt;Clear Syntax Errors&lt;/b&gt;&lt;p&gt;Clear syntax errors of all editors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4122"/>
+        <source>Next warning message</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4116"/>
+        <source>&amp;Next warning message</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4124"/>
-        <source>Next warning message</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4118"/>
-        <source>&amp;Next warning message</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4126"/>
         <source>&lt;b&gt;Next warning message&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4141"/>
+        <source>Previous warning message</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4133"/>
+        <source>&amp;Previous warning message</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4143"/>
-        <source>Previous warning message</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4135"/>
-        <source>&amp;Previous warning message</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4145"/>
         <source>&lt;b&gt;Previous warning message&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4159"/>
+        <source>Clear Warning Messages</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4152"/>
+        <source>Clear &amp;Warning Messages</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4161"/>
-        <source>Clear Warning Messages</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4154"/>
-        <source>Clear &amp;Warning Messages</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4163"/>
         <source>&lt;b&gt;Clear Warning Messages&lt;/b&gt;&lt;p&gt;Clear pyflakes warning messages of all editors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4175"/>
+        <source>Next uncovered line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4169"/>
+        <source>&amp;Next uncovered line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4177"/>
-        <source>Next uncovered line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4171"/>
-        <source>&amp;Next uncovered line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4179"/>
         <source>&lt;b&gt;Next uncovered line&lt;/b&gt;&lt;p&gt;Go to next line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4194"/>
+        <source>Previous uncovered line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4186"/>
+        <source>&amp;Previous uncovered line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4196"/>
-        <source>Previous uncovered line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4188"/>
-        <source>&amp;Previous uncovered line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4198"/>
         <source>&lt;b&gt;Previous uncovered line&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4212"/>
+        <source>Next Task</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4206"/>
+        <source>&amp;Next Task</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4214"/>
-        <source>Next Task</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4208"/>
-        <source>&amp;Next Task</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4216"/>
         <source>&lt;b&gt;Next Task&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a task.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4229"/>
+        <source>Previous Task</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4222"/>
+        <source>&amp;Previous Task</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4231"/>
-        <source>Previous Task</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4224"/>
-        <source>&amp;Previous Task</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4233"/>
         <source>&lt;b&gt;Previous Task&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a task.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4246"/>
+        <source>Next Change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4240"/>
+        <source>&amp;Next Change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4248"/>
-        <source>Next Change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4242"/>
-        <source>&amp;Next Change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4250"/>
         <source>&lt;b&gt;Next Change&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4264"/>
+        <source>Previous Change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4257"/>
+        <source>&amp;Previous Change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4266"/>
-        <source>Previous Change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4259"/>
-        <source>&amp;Previous Change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4268"/>
         <source>&lt;b&gt;Previous Change&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4287"/>
+        <location filename="../ViewManager/ViewManager.py" line="4285"/>
         <source>&amp;Bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4333"/>
+        <location filename="../ViewManager/ViewManager.py" line="4331"/>
         <source>Bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4366"/>
+        <location filename="../ViewManager/ViewManager.py" line="4364"/>
         <source>Check spelling</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4366"/>
+        <location filename="../ViewManager/ViewManager.py" line="4364"/>
         <source>Check &amp;spelling...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4366"/>
+        <location filename="../ViewManager/ViewManager.py" line="4364"/>
         <source>Shift+F7</source>
         <comment>Spelling|Spell Check</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4373"/>
+        <source>Perform spell check of current editor</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4375"/>
-        <source>Perform spell check of current editor</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4377"/>
         <source>&lt;b&gt;Check spelling&lt;/b&gt;&lt;p&gt;Perform a spell check of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4385"/>
+        <location filename="../ViewManager/ViewManager.py" line="4383"/>
         <source>Automatic spell checking</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4385"/>
+        <location filename="../ViewManager/ViewManager.py" line="4383"/>
         <source>&amp;Automatic spell checking</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4391"/>
+        <source>(De-)Activate automatic spell checking</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4393"/>
-        <source>(De-)Activate automatic spell checking</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4395"/>
         <source>&lt;b&gt;Automatic spell checking&lt;/b&gt;&lt;p&gt;Activate or deactivate the automatic spell checking function of all editors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4424"/>
+        <source>Edit Dictionary</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4426"/>
-        <source>Edit Dictionary</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4428"/>
         <source>Project Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4431"/>
+        <location filename="../ViewManager/ViewManager.py" line="4429"/>
         <source>Project Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4436"/>
+        <location filename="../ViewManager/ViewManager.py" line="4434"/>
         <source>User Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4439"/>
+        <location filename="../ViewManager/ViewManager.py" line="4437"/>
         <source>User Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4462"/>
+        <location filename="../ViewManager/ViewManager.py" line="4460"/>
         <source>Spelling</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4485"/>
+        <location filename="../ViewManager/ViewManager.py" line="4483"/>
         <source>Open files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4529"/>
+        <location filename="../ViewManager/ViewManager.py" line="4527"/>
         <source>File Modified</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4529"/>
+        <location filename="../ViewManager/ViewManager.py" line="4527"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has unsaved changes.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4928"/>
+        <location filename="../ViewManager/ViewManager.py" line="4926"/>
         <source>Line: {0:5}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4934"/>
+        <location filename="../ViewManager/ViewManager.py" line="4932"/>
         <source>Pos: {0:5}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4955"/>
+        <location filename="../ViewManager/ViewManager.py" line="4953"/>
         <source>Language: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4962"/>
+        <location filename="../ViewManager/ViewManager.py" line="4960"/>
         <source>EOL Mode: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5373"/>
+        <location filename="../ViewManager/ViewManager.py" line="5371"/>
         <source>&amp;Clear</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5367"/>
+        <location filename="../ViewManager/ViewManager.py" line="5365"/>
         <source>&amp;Add</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5370"/>
+        <location filename="../ViewManager/ViewManager.py" line="5368"/>
         <source>&amp;Edit...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6639"/>
+        <location filename="../ViewManager/ViewManager.py" line="6637"/>
         <source>Edit Spelling Dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6596"/>
+        <location filename="../ViewManager/ViewManager.py" line="6594"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6614"/>
+        <location filename="../ViewManager/ViewManager.py" line="6612"/>
         <source>Editing {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6626"/>
+        <location filename="../ViewManager/ViewManager.py" line="6624"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6639"/>
+        <location filename="../ViewManager/ViewManager.py" line="6637"/>
         <source>The spelling dictionary was saved successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3022"/>
+        <location filename="../ViewManager/ViewManager.py" line="3020"/>
         <source>Replace and Search</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3022"/>
+        <location filename="../ViewManager/ViewManager.py" line="3020"/>
         <source>Meta+R</source>
         <comment>Search|Replace and Search</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3032"/>
+        <location filename="../ViewManager/ViewManager.py" line="3030"/>
         <source>Replace the found text and search the next occurrence</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3035"/>
+        <location filename="../ViewManager/ViewManager.py" line="3033"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3046"/>
+        <location filename="../ViewManager/ViewManager.py" line="3044"/>
         <source>Replace Occurrence</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3046"/>
+        <location filename="../ViewManager/ViewManager.py" line="3044"/>
         <source>Ctrl+Meta+R</source>
         <comment>Search|Replace Occurrence</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3054"/>
+        <source>Replace the found text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3056"/>
-        <source>Replace the found text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3058"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3068"/>
+        <location filename="../ViewManager/ViewManager.py" line="3066"/>
         <source>Replace All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3068"/>
+        <location filename="../ViewManager/ViewManager.py" line="3066"/>
         <source>Shift+Meta+R</source>
         <comment>Search|Replace All</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3076"/>
+        <source>Replace search text occurrences</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3078"/>
-        <source>Replace search text occurrences</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3080"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1432"/>
+        <location filename="../ViewManager/ViewManager.py" line="1431"/>
         <source>Code Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1432"/>
+        <location filename="../ViewManager/ViewManager.py" line="1431"/>
         <source>Ctrl+Alt+I</source>
         <comment>Edit|Code Info</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1440"/>
+        <location filename="../ViewManager/ViewManager.py" line="1439"/>
         <source>Show Code Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1442"/>
+        <location filename="../ViewManager/ViewManager.py" line="1441"/>
         <source>&lt;b&gt;Code Info&lt;/b&gt;&lt;p&gt;Show code information based on the cursor position.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3614"/>
+        <source>Clear all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3610"/>
+        <source>Clear &amp;all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3616"/>
-        <source>Clear all folds</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3612"/>
-        <source>Clear &amp;all folds</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3618"/>
         <source>&lt;b&gt;Clear all folds&lt;/b&gt;&lt;p&gt;Clear all folds of the current editor, i.e. ensure that all lines are displayed unfolded.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2150"/>
+        <location filename="../ViewManager/ViewManager.py" line="2148"/>
         <source>Reverse selected lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2150"/>
+        <location filename="../ViewManager/ViewManager.py" line="2148"/>
         <source>Meta+Alt+R</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3776"/>
+        <location filename="../ViewManager/ViewManager.py" line="3774"/>
         <source>Python AST Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3779"/>
+        <source>Show the AST for the current Python file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3781"/>
-        <source>Show the AST for the current Python file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3783"/>
         <source>&lt;b&gt;Python AST Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the AST of the current Python source file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3793"/>
+        <location filename="../ViewManager/ViewManager.py" line="3791"/>
         <source>Python Disassembly Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3798"/>
+        <source>Show the Disassembly for the current Python file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3800"/>
-        <source>Show the Disassembly for the current Python file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3802"/>
         <source>&lt;b&gt;Python Disassembly Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the Disassembly of the current Python source file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -83818,7 +83823,7 @@
 <context>
     <name>WebBrowserTools</name>
     <message>
-        <location filename="../WebBrowser/Tools/WebBrowserTools.py" line="249"/>
+        <location filename="../WebBrowser/Tools/WebBrowserTools.py" line="251"/>
         <source>&lt;unknown&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -86484,57 +86489,57 @@
     <name>YandexEngine</name>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="38"/>
-        <source>Invalid API key.</source>
+        <source>Yandex: Invalid API key.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="39"/>
-        <source>API key has been blocked.</source>
+        <source>Yandex: API key has been blocked.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="40"/>
-        <source>Daily limit for requests has been reached.</source>
+        <source>Yandex: Daily limit for requests has been reached.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="41"/>
-        <source>Daily limit for the volume of translated text reached.</source>
+        <source>Yandex: Daily limit for the volume of translated text reached.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="43"/>
-        <source>Text size exceeds the maximum.</source>
+        <source>Yandex: Text size exceeds the maximum.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="44"/>
-        <source>Text could not be translated.</source>
+        <source>Yandex: Text could not be translated.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="45"/>
-        <source>The specified translation direction is not supported.</source>
+        <source>Yandex: The specified translation direction is not supported.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="86"/>
-        <source>Only texts up to {0} characters are allowed.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="91"/>
-        <source>A valid Yandex key is required.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="106"/>
-        <source>Invalid response received</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="112"/>
-        <source>Unknown error code ({0}) received.</source>
+        <source>Yandex: Only texts up to {0} characters are allowed.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="109"/>
+        <source>Yandex: Invalid response received</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="115"/>
+        <source>Yandex: Unknown error code ({0}) received.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="94"/>
+        <source>Yandex: A valid key is required.</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -86962,417 +86967,417 @@
 <context>
     <name>pycodestyle</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="24"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="22"/>
         <source>indentation contains mixed spaces and tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="27"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="25"/>
         <source>indentation is not a multiple of four</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="30"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="28"/>
         <source>expected an indented block</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="33"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="31"/>
         <source>unexpected indentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="36"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="34"/>
         <source>indentation is not a multiple of four (comment)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="39"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="37"/>
         <source>expected an indented block (comment)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="42"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="40"/>
         <source>unexpected indentation (comment)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="48"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="46"/>
         <source>continuation line indentation is not a multiple of four</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="51"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="49"/>
         <source>continuation line missing indentation or outdented</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="54"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="52"/>
         <source>closing bracket does not match indentation of opening bracket&apos;s line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="58"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="56"/>
         <source>closing bracket does not match visual indentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="61"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="59"/>
         <source>continuation line with same indent as next logical line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="64"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="62"/>
         <source>continuation line over-indented for hanging indent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="67"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="65"/>
         <source>continuation line over-indented for visual indent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="70"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="68"/>
         <source>continuation line under-indented for visual indent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="73"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="71"/>
         <source>visually indented line with same indent as next logical line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="76"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="74"/>
         <source>continuation line unaligned for hanging indent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="79"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="77"/>
         <source>closing bracket is missing indentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="82"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="80"/>
         <source>indentation contains tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="85"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="83"/>
         <source>whitespace after &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="94"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="92"/>
         <source>whitespace before &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="97"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="95"/>
         <source>multiple spaces before operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="100"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="98"/>
         <source>multiple spaces after operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="103"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="101"/>
         <source>tab before operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="106"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="104"/>
         <source>tab after operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="109"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="107"/>
         <source>missing whitespace around operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="112"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="110"/>
         <source>missing whitespace around arithmetic operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="115"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="113"/>
         <source>missing whitespace around bitwise or shift operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="118"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="116"/>
         <source>missing whitespace around modulo operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="121"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="119"/>
         <source>missing whitespace after &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="124"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="122"/>
         <source>multiple spaces after &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="127"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="125"/>
         <source>tab after &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="130"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="128"/>
         <source>unexpected spaces around keyword / parameter equals</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="136"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="134"/>
         <source>at least two spaces before inline comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="139"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="137"/>
         <source>inline comment should start with &apos;# &apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="142"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="140"/>
         <source>block comment should start with &apos;# &apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="145"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="143"/>
         <source>too many leading &apos;#&apos; for block comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="148"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="146"/>
         <source>multiple spaces after keyword</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="151"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="149"/>
         <source>multiple spaces before keyword</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="154"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="152"/>
         <source>tab after keyword</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="157"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="155"/>
         <source>tab before keyword</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="160"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="158"/>
         <source>missing whitespace after keyword</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="163"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="161"/>
         <source>trailing whitespace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="166"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="164"/>
         <source>no newline at end of file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="169"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="167"/>
         <source>blank line contains whitespace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="194"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="192"/>
         <source>too many blank lines ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="181"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="179"/>
         <source>blank lines found after function decorator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="197"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="195"/>
         <source>blank line at end of file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="200"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="198"/>
         <source>multiple imports on one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="203"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="201"/>
         <source>module level import not at top of file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="206"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="204"/>
         <source>line too long ({0} &gt; {1} characters)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="209"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="207"/>
         <source>the backslash is redundant between brackets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="212"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="210"/>
         <source>line break before binary operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="221"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="219"/>
         <source>.has_key() is deprecated, use &apos;in&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="224"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="222"/>
         <source>deprecated form of raising exception</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="227"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="225"/>
         <source>&apos;&lt;&gt;&apos; is deprecated, use &apos;!=&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="230"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="228"/>
         <source>backticks are deprecated, use &apos;repr()&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="239"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="237"/>
         <source>multiple statements on one line (colon)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="242"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="240"/>
         <source>multiple statements on one line (semicolon)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="245"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="243"/>
         <source>statement ends with a semicolon</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="248"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="246"/>
         <source>multiple statements on one line (def)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="254"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="252"/>
         <source>comparison to {0} should be {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="257"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="255"/>
         <source>test for membership should be &apos;not in&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="260"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="258"/>
         <source>test for object identity should be &apos;is not&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="263"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="261"/>
         <source>do not compare types, use &apos;isinstance()&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="269"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="267"/>
         <source>do not assign a lambda expression, use a def</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="272"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="270"/>
         <source>ambiguous variable name &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="275"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="273"/>
         <source>ambiguous class definition &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="278"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="276"/>
         <source>ambiguous function definition &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="281"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="279"/>
         <source>{0}: {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="284"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="282"/>
         <source>{0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="266"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="264"/>
         <source>do not use bare except</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="184"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="182"/>
         <source>expected {0} blank lines after class or function definition, found {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="236"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="234"/>
         <source>&apos;async&apos; and &apos;await&apos; are reserved keywords starting with Python 3.7</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="133"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="131"/>
         <source>missing whitespace around parameter equals</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="175"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="173"/>
         <source>expected {0} blank lines, found {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="188"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="186"/>
         <source>expected {0} blank lines before a nested definition, found {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="215"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="213"/>
         <source>line break after binary operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="233"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="231"/>
         <source>invalid escape sequence &apos;\{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="191"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="189"/>
         <source>too many blank lines ({0}) before a nested definition, expected {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="178"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="176"/>
         <source>too many blank lines ({0}), expected {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="45"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="43"/>
         <source>over-indented</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="218"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="216"/>
         <source>doc line too long ({0} &gt; {1} characters)</source>
         <translation type="unfinished"></translation>
     </message>
--- a/eric6/i18n/eric6_en.ts	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/i18n/eric6_en.ts	Sun Oct 04 16:28:51 2020 +0200
@@ -1088,72 +1088,72 @@
 <context>
     <name>AnnotationsChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="808"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="806"/>
         <source>missing type annotation for function argument &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="811"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="809"/>
         <source>missing type annotation for &apos;*{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="814"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="812"/>
         <source>missing type annotation for &apos;**{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="823"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="821"/>
         <source>missing return type annotation for public function</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="826"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="824"/>
         <source>missing return type annotation for protected function</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="829"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="827"/>
         <source>missing return type annotation for private function</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="832"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="830"/>
         <source>missing return type annotation for special method</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="835"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="833"/>
         <source>missing return type annotation for staticmethod</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="838"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="836"/>
         <source>missing return type annotation for classmethod</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="850"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="848"/>
         <source>{0}: {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="817"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="815"/>
         <source>missing type annotation for &apos;self&apos; in method</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="820"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="818"/>
         <source>missing type annotation for &apos;cls&apos; in classmethod</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="842"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="840"/>
         <source>type annotation coverage of {0}% is too low</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="846"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="844"/>
         <source>type annotation is too complex ({0} &gt; {1})</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3309,7 +3309,7 @@
 <context>
     <name>CodeStyleChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="1130"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="1128"/>
         <source>No message defined for code &apos;{0}&apos;.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -4021,142 +4021,142 @@
 <context>
     <name>CodeStyleFixer</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="858"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="856"/>
         <source>Triple single quotes converted to triple double quotes.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="861"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="859"/>
         <source>Introductory quotes corrected to be {0}&quot;&quot;&quot;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="864"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="862"/>
         <source>Single line docstring put on one line.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="867"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="865"/>
         <source>Period added to summary line.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="894"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="892"/>
         <source>Blank line before function/method docstring removed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="873"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="871"/>
         <source>Blank line inserted before class docstring.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="876"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="874"/>
         <source>Blank line inserted after class docstring.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="879"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="877"/>
         <source>Blank line inserted after docstring summary.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="882"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="880"/>
         <source>Blank line inserted after last paragraph of docstring.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="885"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="883"/>
         <source>Leading quotes put on separate line.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="888"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="886"/>
         <source>Trailing quotes put on separate line.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="891"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="889"/>
         <source>Blank line before class docstring removed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="897"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="895"/>
         <source>Blank line after class docstring removed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="900"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="898"/>
         <source>Blank line after function/method docstring removed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="903"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="901"/>
         <source>Blank line after last paragraph removed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="906"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="904"/>
         <source>Tab converted to 4 spaces.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="909"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="907"/>
         <source>Indentation adjusted to be a multiple of four.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="912"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="910"/>
         <source>Indentation of continuation line corrected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="915"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="913"/>
         <source>Indentation of closing bracket corrected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="918"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="916"/>
         <source>Missing indentation of continuation line corrected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="921"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="919"/>
         <source>Closing bracket aligned to opening bracket.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="924"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="922"/>
         <source>Indentation level changed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="927"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="925"/>
         <source>Indentation level of hanging indentation changed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="930"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="928"/>
         <source>Visual indentation corrected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="945"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="943"/>
         <source>Extraneous whitespace removed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="942"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="940"/>
         <source>Missing whitespace added.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="948"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="946"/>
         <source>Whitespace around comment sign corrected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="952"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="950"/>
         <source>%n blank line(s) inserted.</source>
         <translation>
             <numerusform>%n blank line inserted.</numerusform>
@@ -4164,7 +4164,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="955"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="953"/>
         <source>%n superfluous lines removed</source>
         <translation>
             <numerusform>%n superfluous line removed</numerusform>
@@ -4172,72 +4172,72 @@
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="959"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="957"/>
         <source>Superfluous blank lines removed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="962"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="960"/>
         <source>Superfluous blank lines after function decorator removed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="965"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="963"/>
         <source>Imports were put on separate lines.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="968"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="966"/>
         <source>Long lines have been shortened.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="971"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="969"/>
         <source>Redundant backslash in brackets removed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="977"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="975"/>
         <source>Compound statement corrected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="980"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="978"/>
         <source>Comparison to None/True/False corrected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="983"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="981"/>
         <source>&apos;{0}&apos; argument added.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="986"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="984"/>
         <source>&apos;{0}&apos; argument removed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="989"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="987"/>
         <source>Whitespace stripped from end of line.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="992"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="990"/>
         <source>newline added to end of file.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="995"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="993"/>
         <source>Superfluous trailing blank lines removed from end of file.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="998"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="996"/>
         <source>&apos;&lt;&gt;&apos; replaced by &apos;!=&apos;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="1002"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="1000"/>
         <source>Could not save the file! Skipping it. Reason: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -4723,22 +4723,22 @@
 <context>
     <name>ComplexityChecker</name>
     <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="477"/>
+        <source>&apos;{0}&apos; is too complex ({1})</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="479"/>
-        <source>&apos;{0}&apos; is too complex ({1})</source>
+        <source>source code line is too complex ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="481"/>
-        <source>source code line is too complex ({0})</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="483"/>
         <source>overall source code line complexity is too high ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="486"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="484"/>
         <source>{0}: {1}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -8065,30 +8065,30 @@
 <context>
     <name>DeepLEngine</name>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="73"/>
-        <source>Text to be translated exceeds the translation limit of {0} characters.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="95"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="98"/>
         <source>Invalid response received from DeepL</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="98"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="101"/>
         <source>DeepL call returned an unknown result</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="102"/>
-        <source>&lt;p&gt;No translation found&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="79"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="82"/>
         <source>A valid DeepL Pro key is required.</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="73"/>
+        <source>DeepL: Text to be translated exceeds the translation limit of {0} characters.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="105"/>
+        <source>&lt;p&gt;DeepL: No translation found&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>DeleteFilesConfirmationDialog</name>
@@ -8353,237 +8353,237 @@
 <context>
     <name>DocStyleChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="291"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="289"/>
         <source>module is missing a docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="293"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="291"/>
         <source>public function/method is missing a docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="296"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="294"/>
         <source>private function/method may be missing a docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="297"/>
+        <source>public class is missing a docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="299"/>
-        <source>public class is missing a docstring</source>
+        <source>private class may be missing a docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="301"/>
-        <source>private class may be missing a docstring</source>
+        <source>docstring not surrounded by &quot;&quot;&quot;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="303"/>
-        <source>docstring not surrounded by &quot;&quot;&quot;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="305"/>
         <source>docstring containing \ not surrounded by r&quot;&quot;&quot;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="306"/>
+        <source>one-liner docstring on multiple lines</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="308"/>
-        <source>one-liner docstring on multiple lines</source>
+        <source>docstring has wrong indentation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="357"/>
+        <source>docstring summary does not end with a period</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="314"/>
+        <source>docstring summary is not in imperative mood (Does instead of Do)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="318"/>
+        <source>docstring summary looks like a function&apos;s/method&apos;s signature</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="321"/>
+        <source>docstring does not mention the return value type</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="324"/>
+        <source>function/method docstring is separated by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="327"/>
+        <source>class docstring is not preceded by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="330"/>
+        <source>class docstring is not followed by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="391"/>
+        <source>docstring summary is not followed by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="336"/>
+        <source>last paragraph of docstring is not followed by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="344"/>
+        <source>private function/method is missing a docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="347"/>
+        <source>private class is missing a docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="351"/>
+        <source>leading quotes of docstring not on separate line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="354"/>
+        <source>trailing quotes of docstring not on separate line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="361"/>
+        <source>docstring does not contain a @return line but function/method returns something</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="365"/>
+        <source>docstring contains a @return line but function/method doesn&apos;t return anything</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="369"/>
+        <source>docstring does not contain enough @param/@keyparam lines</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="372"/>
+        <source>docstring contains too many @param/@keyparam lines</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="375"/>
+        <source>keyword only arguments must be documented with @keyparam lines</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="378"/>
+        <source>order of @param/@keyparam lines does not match the function/method signature</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="381"/>
+        <source>class docstring is preceded by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="383"/>
+        <source>class docstring is followed by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="385"/>
+        <source>function/method docstring is preceded by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="388"/>
+        <source>function/method docstring is followed by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="394"/>
+        <source>last paragraph of docstring is followed by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="397"/>
+        <source>docstring does not contain a @exception line but function/method raises an exception</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="401"/>
+        <source>docstring contains a @exception line but function/method doesn&apos;t raise an exception</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="424"/>
+        <source>{0}: {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="310"/>
-        <source>docstring has wrong indentation</source>
+        <source>docstring does not contain a summary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="359"/>
-        <source>docstring summary does not end with a period</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="316"/>
-        <source>docstring summary is not in imperative mood (Does instead of Do)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="320"/>
-        <source>docstring summary looks like a function&apos;s/method&apos;s signature</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="323"/>
-        <source>docstring does not mention the return value type</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="326"/>
-        <source>function/method docstring is separated by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="329"/>
-        <source>class docstring is not preceded by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="332"/>
-        <source>class docstring is not followed by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="393"/>
-        <source>docstring summary is not followed by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="338"/>
-        <source>last paragraph of docstring is not followed by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="346"/>
-        <source>private function/method is missing a docstring</source>
+        <source>docstring summary does not start with &apos;{0}&apos;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="405"/>
+        <source>raised exception &apos;{0}&apos; is not documented in docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="408"/>
+        <source>documented exception &apos;{0}&apos; is not raised</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="411"/>
+        <source>docstring does not contain a @signal line but class defines signals</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="414"/>
+        <source>docstring contains a @signal line but class doesn&apos;t define signals</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="417"/>
+        <source>defined signal &apos;{0}&apos; is not documented in docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="420"/>
+        <source>documented signal &apos;{0}&apos; is not defined</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="349"/>
-        <source>private class is missing a docstring</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="353"/>
-        <source>leading quotes of docstring not on separate line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="356"/>
-        <source>trailing quotes of docstring not on separate line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="363"/>
-        <source>docstring does not contain a @return line but function/method returns something</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="367"/>
-        <source>docstring contains a @return line but function/method doesn&apos;t return anything</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="371"/>
-        <source>docstring does not contain enough @param/@keyparam lines</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="374"/>
-        <source>docstring contains too many @param/@keyparam lines</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="377"/>
-        <source>keyword only arguments must be documented with @keyparam lines</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="380"/>
-        <source>order of @param/@keyparam lines does not match the function/method signature</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="383"/>
-        <source>class docstring is preceded by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="385"/>
-        <source>class docstring is followed by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="387"/>
-        <source>function/method docstring is preceded by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="390"/>
-        <source>function/method docstring is followed by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="396"/>
-        <source>last paragraph of docstring is followed by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="399"/>
-        <source>docstring does not contain a @exception line but function/method raises an exception</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="403"/>
-        <source>docstring contains a @exception line but function/method doesn&apos;t raise an exception</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="426"/>
-        <source>{0}: {1}</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="312"/>
-        <source>docstring does not contain a summary</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="361"/>
-        <source>docstring summary does not start with &apos;{0}&apos;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="407"/>
-        <source>raised exception &apos;{0}&apos; is not documented in docstring</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="410"/>
-        <source>documented exception &apos;{0}&apos; is not raised</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="413"/>
-        <source>docstring does not contain a @signal line but class defines signals</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="416"/>
-        <source>docstring contains a @signal line but class doesn&apos;t define signals</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="419"/>
-        <source>defined signal &apos;{0}&apos; is not documented in docstring</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="422"/>
-        <source>documented signal &apos;{0}&apos; is not defined</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="351"/>
         <source>class docstring is still a default string</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="344"/>
-        <source>function docstring is still a default string</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="342"/>
+        <source>function docstring is still a default string</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="340"/>
         <source>module docstring is still a default string</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10880,7 +10880,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7835"/>
+        <location filename="../QScintilla/Editor.py" line="7834"/>
         <source>Check spelling...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11105,7 +11105,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5605"/>
+        <location filename="../QScintilla/Editor.py" line="5604"/>
         <source>Enable breakpoint</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11270,267 +11270,267 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4767"/>
+        <location filename="../QScintilla/Editor.py" line="4766"/>
         <source>Autocompletion</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4767"/>
+        <location filename="../QScintilla/Editor.py" line="4766"/>
         <source>Autocompletion is not available because there is no autocompletion source set.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5608"/>
+        <location filename="../QScintilla/Editor.py" line="5607"/>
         <source>Disable breakpoint</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5983"/>
+        <location filename="../QScintilla/Editor.py" line="5982"/>
         <source>Code Coverage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5983"/>
+        <location filename="../QScintilla/Editor.py" line="5982"/>
         <source>Please select a coverage file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6046"/>
+        <location filename="../QScintilla/Editor.py" line="6045"/>
         <source>Show Code Coverage Annotations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6039"/>
+        <location filename="../QScintilla/Editor.py" line="6038"/>
         <source>All lines have been covered.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6046"/>
+        <location filename="../QScintilla/Editor.py" line="6045"/>
         <source>There is no coverage file available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6163"/>
+        <location filename="../QScintilla/Editor.py" line="6162"/>
         <source>Profile Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6163"/>
+        <location filename="../QScintilla/Editor.py" line="6162"/>
         <source>Please select a profile file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6325"/>
+        <location filename="../QScintilla/Editor.py" line="6324"/>
         <source>Syntax Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6325"/>
+        <location filename="../QScintilla/Editor.py" line="6324"/>
         <source>No syntax error message available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6714"/>
+        <location filename="../QScintilla/Editor.py" line="6713"/>
         <source>Macro Name</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6714"/>
+        <location filename="../QScintilla/Editor.py" line="6713"/>
         <source>Select a macro name:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6742"/>
+        <location filename="../QScintilla/Editor.py" line="6741"/>
         <source>Load macro file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6785"/>
+        <location filename="../QScintilla/Editor.py" line="6784"/>
         <source>Macro files (*.macro)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6765"/>
+        <location filename="../QScintilla/Editor.py" line="6764"/>
         <source>Error loading macro</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6756"/>
+        <location filename="../QScintilla/Editor.py" line="6755"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6765"/>
+        <location filename="../QScintilla/Editor.py" line="6764"/>
         <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; is corrupt.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6785"/>
+        <location filename="../QScintilla/Editor.py" line="6784"/>
         <source>Save macro file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6802"/>
+        <location filename="../QScintilla/Editor.py" line="6801"/>
         <source>Save macro</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6802"/>
+        <location filename="../QScintilla/Editor.py" line="6801"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6818"/>
+        <location filename="../QScintilla/Editor.py" line="6817"/>
         <source>Error saving macro</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6818"/>
+        <location filename="../QScintilla/Editor.py" line="6817"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6831"/>
+        <location filename="../QScintilla/Editor.py" line="6830"/>
         <source>Start Macro Recording</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6831"/>
+        <location filename="../QScintilla/Editor.py" line="6830"/>
         <source>Macro recording is already active. Start new?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6857"/>
+        <location filename="../QScintilla/Editor.py" line="6856"/>
         <source>Macro Recording</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6857"/>
+        <location filename="../QScintilla/Editor.py" line="6856"/>
         <source>Enter name of the macro:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6997"/>
+        <location filename="../QScintilla/Editor.py" line="6996"/>
         <source>File changed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7167"/>
+        <location filename="../QScintilla/Editor.py" line="7166"/>
         <source>{0} (ro)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7308"/>
+        <location filename="../QScintilla/Editor.py" line="7307"/>
         <source>Drop Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7308"/>
+        <location filename="../QScintilla/Editor.py" line="7307"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7329"/>
+        <location filename="../QScintilla/Editor.py" line="7328"/>
         <source>Resources</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7331"/>
+        <location filename="../QScintilla/Editor.py" line="7330"/>
         <source>Add file...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7333"/>
+        <location filename="../QScintilla/Editor.py" line="7332"/>
         <source>Add files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7335"/>
+        <location filename="../QScintilla/Editor.py" line="7334"/>
         <source>Add aliased file...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7338"/>
+        <location filename="../QScintilla/Editor.py" line="7337"/>
         <source>Add localized resource...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7342"/>
+        <location filename="../QScintilla/Editor.py" line="7341"/>
         <source>Add resource frame</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7361"/>
+        <location filename="../QScintilla/Editor.py" line="7360"/>
         <source>Add file resource</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7377"/>
+        <location filename="../QScintilla/Editor.py" line="7376"/>
         <source>Add file resources</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7404"/>
+        <location filename="../QScintilla/Editor.py" line="7403"/>
         <source>Add aliased file resource</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7404"/>
+        <location filename="../QScintilla/Editor.py" line="7403"/>
         <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7470"/>
+        <location filename="../QScintilla/Editor.py" line="7469"/>
         <source>Package Diagram</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7470"/>
+        <location filename="../QScintilla/Editor.py" line="7469"/>
         <source>Include class attributes?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7492"/>
+        <location filename="../QScintilla/Editor.py" line="7491"/>
         <source>Imports Diagram</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7492"/>
+        <location filename="../QScintilla/Editor.py" line="7491"/>
         <source>Include imports from external modules?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7506"/>
+        <location filename="../QScintilla/Editor.py" line="7505"/>
         <source>Application Diagram</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7506"/>
+        <location filename="../QScintilla/Editor.py" line="7505"/>
         <source>Include module names?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7838"/>
+        <location filename="../QScintilla/Editor.py" line="7837"/>
         <source>Add to dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7840"/>
+        <location filename="../QScintilla/Editor.py" line="7839"/>
         <source>Ignore All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6602"/>
+        <location filename="../QScintilla/Editor.py" line="6601"/>
         <source>Warning: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6609"/>
+        <location filename="../QScintilla/Editor.py" line="6608"/>
         <source>Error: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6993"/>
+        <location filename="../QScintilla/Editor.py" line="6992"/>
         <source>&lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reopening it.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11555,27 +11555,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8256"/>
+        <location filename="../QScintilla/Editor.py" line="8255"/>
         <source>Sort Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8256"/>
+        <location filename="../QScintilla/Editor.py" line="8255"/>
         <source>The selection contains illegal data for a numerical sort.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6537"/>
+        <location filename="../QScintilla/Editor.py" line="6536"/>
         <source>Warning</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6537"/>
+        <location filename="../QScintilla/Editor.py" line="6536"/>
         <source>No warning messages available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6599"/>
+        <location filename="../QScintilla/Editor.py" line="6598"/>
         <source>Style: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11600,7 +11600,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6987"/>
+        <location filename="../QScintilla/Editor.py" line="6986"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric6. Reread it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11615,32 +11615,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4897"/>
+        <location filename="../QScintilla/Editor.py" line="4896"/>
         <source>Auto-Completion Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4897"/>
+        <location filename="../QScintilla/Editor.py" line="4896"/>
         <source>The completion list provider &apos;{0}&apos; was already registered. Ignoring duplicate request.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5176"/>
+        <location filename="../QScintilla/Editor.py" line="5175"/>
         <source>Call-Tips Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5176"/>
+        <location filename="../QScintilla/Editor.py" line="5175"/>
         <source>The call-tips provider &apos;{0}&apos; was already registered. Ignoring duplicate request.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8345"/>
+        <location filename="../QScintilla/Editor.py" line="8344"/>
         <source>Register Mouse Click Handler</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8345"/>
+        <location filename="../QScintilla/Editor.py" line="8344"/>
         <source>A mouse click handler for &quot;{0}&quot; was already registered by &quot;{1}&quot;. Aborting request by &quot;{2}&quot;...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11670,12 +11670,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8466"/>
+        <location filename="../QScintilla/Editor.py" line="8465"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8466"/>
+        <location filename="../QScintilla/Editor.py" line="8465"/>
         <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"></translation>
     </message>
@@ -13443,27 +13443,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="681"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="685"/>
         <source>Delete Sub-Style</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="681"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="685"/>
         <source>&lt;p&gt;Shall the sub-style &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="721"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="725"/>
         <source>{0} - Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="749"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="753"/>
         <source>Reset Sub-Styles to Default</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="749"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="753"/>
         <source>&lt;p&gt;Do you really want to reset all defined sub-styles of &lt;b&gt;{0}&lt;/b&gt; to the default values?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -16998,7 +16998,7 @@
 <context>
     <name>EricdocPlugin</name>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="102"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="81"/>
         <source>Qt Help Tools</source>
         <translation type="unfinished"></translation>
     </message>
@@ -17008,22 +17008,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="145"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="124"/>
         <source>Generate documentation (eric6_doc)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="145"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="124"/>
         <source>Generate &amp;documentation (eric6_doc)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="149"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="128"/>
         <source>Generate API documentation using eric6_doc</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="151"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="130"/>
         <source>&lt;b&gt;Generate documentation&lt;/b&gt;&lt;p&gt;Generate API documentation using eric6_doc.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -25860,27 +25860,27 @@
 <context>
     <name>Globals</name>
     <message>
-        <location filename="../Globals/__init__.py" line="452"/>
+        <location filename="../Globals/__init__.py" line="421"/>
         <source>{0:4.2f} Bytes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Globals/__init__.py" line="456"/>
+        <location filename="../Globals/__init__.py" line="425"/>
         <source>{0:4.2f} KiB</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Globals/__init__.py" line="460"/>
+        <location filename="../Globals/__init__.py" line="429"/>
         <source>{0:4.2f} MiB</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Globals/__init__.py" line="464"/>
+        <location filename="../Globals/__init__.py" line="433"/>
         <source>{0:4.2f} GiB</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Globals/__init__.py" line="468"/>
+        <location filename="../Globals/__init__.py" line="437"/>
         <source>{0:4.2f} TiB</source>
         <translation type="unfinished"></translation>
     </message>
@@ -25889,30 +25889,30 @@
     <name>GlosbeEngine</name>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GlosbeEngine.py" line="85"/>
-        <source>Invalid response received</source>
+        <source>Glosbe: Invalid response received</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GlosbeEngine.py" line="99"/>
-        <source>No translation found.</source>
+        <source>Glosbe: No translation found.</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
 <context>
     <name>GoogleV1Engine</name>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV1Engine.py" line="165"/>
-        <source>Only texts up to {0} characters are allowed.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV1Engine.py" line="98"/>
-        <source>Invalid response received</source>
+        <source>Google V1: Invalid response received</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV1Engine.py" line="135"/>
-        <source>No translation found.</source>
+        <source>Google V1: No translation found.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV1Engine.py" line="165"/>
+        <source>Google V1: Only texts up to {0} characters are allowed.</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -25920,17 +25920,17 @@
     <name>GoogleV2Engine</name>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="72"/>
-        <source>A valid Google Translate key is required.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="83"/>
-        <source>Invalid response received</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="89"/>
-        <source>No translation available.</source>
+        <source>Google V2: A valid Google Translate key is required.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="84"/>
+        <source>Google V2: Invalid response received</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="90"/>
+        <source>Google V2: No translation available.</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -35885,34 +35885,34 @@
 <context>
     <name>IbmWatsonEngine</name>
     <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
+        <source>Error Getting Available Translations</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
+        <source>IBM Watson: No translation available.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="183"/>
-        <source>A valid IBM Watson Language Translator key is required.</source>
+        <source>IBM Watson: A valid Language Translator key is required.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="192"/>
-        <source>A valid IBM Watson Language Translator URL is required.</source>
+        <source>IBM Watson: A valid Language Translator URL is required.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="244"/>
-        <source>Invalid response received</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
-        <source>No translation available.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
-        <source>Error Getting Available Translations</source>
+        <source>IBM Watson: Invalid response received</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="232"/>
-        <source>The server sent an error indication.
-Error: {0}</source>
+        <source>IBM Watson: The server sent an error indication.
+ Error: {0}</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -41638,610 +41638,615 @@
 <context>
     <name>Lexers</name>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="84"/>
+        <source>Bash</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="86"/>
-        <source>Bash</source>
+        <source>Batch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="88"/>
-        <source>Batch</source>
+        <source>C/C++</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="90"/>
-        <source>C/C++</source>
+        <source>C#</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="92"/>
-        <source>C#</source>
+        <source>CMake</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="94"/>
-        <source>CMake</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="96"/>
         <source>CSS</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="98"/>
+        <source>D</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="100"/>
-        <source>D</source>
+        <source>Diff</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="102"/>
-        <source>Diff</source>
+        <source>Fortran</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="104"/>
-        <source>Fortran</source>
+        <source>Fortran77</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="106"/>
-        <source>Fortran77</source>
+        <source>HTML/PHP/XML</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="108"/>
-        <source>HTML/PHP/XML</source>
+        <source>IDL</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="110"/>
-        <source>IDL</source>
+        <source>Java</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="112"/>
-        <source>Java</source>
+        <source>JavaScript</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="114"/>
-        <source>JavaScript</source>
+        <source>Lua</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="116"/>
-        <source>Lua</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="118"/>
         <source>Makefile</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="122"/>
+        <source>Pascal</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="124"/>
-        <source>Pascal</source>
+        <source>Perl</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="126"/>
-        <source>Perl</source>
+        <source>PostScript</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="128"/>
-        <source>PostScript</source>
+        <source>Povray</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="130"/>
-        <source>Povray</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="132"/>
         <source>Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="141"/>
+        <source>Ruby</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="143"/>
-        <source>Ruby</source>
+        <source>SQL</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="145"/>
-        <source>SQL</source>
+        <source>TCL</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="147"/>
-        <source>TCL</source>
+        <source>TeX</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="149"/>
-        <source>TeX</source>
+        <source>VHDL</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="151"/>
-        <source>VHDL</source>
+        <source>XML</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="153"/>
-        <source>XML</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="155"/>
         <source>YAML</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="183"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="173"/>
         <source>Pygments</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="575"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="562"/>
         <source>Quixote Template Files (*.ptl)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="578"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="565"/>
         <source>Ruby Files (*.rb)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="581"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="568"/>
         <source>IDL Files (*.idl)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="408"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="398"/>
         <source>C Files (*.h *.c)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="411"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="401"/>
         <source>C++ Files (*.h *.hpp *.hh *.cxx *.cpp *.cc)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="596"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="583"/>
         <source>C# Files (*.cs)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="417"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="407"/>
         <source>HTML Files (*.html *.htm *.asp *.shtml)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="608"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="595"/>
         <source>CSS Files (*.css)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="611"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="598"/>
         <source>QSS Files (*.qss)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="426"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="416"/>
         <source>PHP Files (*.php *.php3 *.php4 *.php5 *.phtml)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="429"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="419"/>
         <source>XML Files (*.xml *.xsl *.xslt *.dtd *.svg *.xul *.xsd)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="623"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="610"/>
         <source>Qt Resource Files (*.qrc)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="435"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="425"/>
         <source>D Files (*.d *.di)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="632"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="619"/>
         <source>Java Files (*.java)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="635"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="622"/>
         <source>JavaScript Files (*.js)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="638"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="625"/>
         <source>SQL Files (*.sql)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="641"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="628"/>
         <source>Docbook Files (*.docbook)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="450"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="440"/>
         <source>Perl Files (*.pl *.pm *.ph)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="650"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="637"/>
         <source>Lua Files (*.lua)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="456"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="446"/>
         <source>Tex Files (*.tex *.sty *.aux *.toc *.idx)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="653"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="640"/>
         <source>Shell Files (*.sh)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="462"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="452"/>
         <source>Batch Files (*.bat *.cmd)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="465"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="455"/>
         <source>Diff Files (*.diff *.patch)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="458"/>
+        <source>Makefiles (*makefile Makefile *.mak)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="461"/>
+        <source>Properties Files (*.properties *.ini *.inf *.reg *.cfg *.cnf *.rc)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="664"/>
+        <source>Povray Files (*.pov)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="468"/>
-        <source>Makefiles (*makefile Makefile *.mak)</source>
+        <source>CMake Files (CMakeLists.txt *.cmake *.ctest)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="471"/>
-        <source>Properties Files (*.properties *.ini *.inf *.reg *.cfg *.cnf *.rc)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="677"/>
-        <source>Povray Files (*.pov)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="478"/>
-        <source>CMake Files (CMakeLists.txt *.cmake *.ctest)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="481"/>
         <source>VHDL Files (*.vhd *.vhdl)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="484"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="474"/>
         <source>TCL/Tk Files (*.tcl *.tk)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="487"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="477"/>
         <source>Fortran Files (*.f90 *.f95 *.f2k)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="490"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="480"/>
         <source>Fortran77 Files (*.f *.for)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="493"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="483"/>
         <source>Pascal Files (*.dpr *.dpk *.pas *.dfm *.inc *.pp)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="704"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="691"/>
         <source>PostScript Files (*.ps)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="499"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="489"/>
         <source>YAML Files (*.yaml *.yml)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="746"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="730"/>
         <source>All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="560"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="547"/>
         <source>Python3 Files (*.py)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="563"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="550"/>
         <source>Python3 GUI Files (*.pyw)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="587"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="574"/>
         <source>C Files (*.c)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="590"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="577"/>
         <source>C++ Files (*.cpp)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="593"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="580"/>
         <source>C++/C Header Files (*.h)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="599"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="586"/>
         <source>HTML Files (*.html)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="602"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="589"/>
         <source>PHP Files (*.php)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="605"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="592"/>
         <source>ASP Files (*.asp)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="614"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="601"/>
         <source>XML Files (*.xml)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="617"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="604"/>
         <source>XSL Files (*.xsl)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="620"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="607"/>
         <source>DTD Files (*.dtd)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="626"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="613"/>
         <source>D Files (*.d)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="629"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="616"/>
         <source>D Interface Files (*.di)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="644"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="631"/>
         <source>Perl Files (*.pl)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="647"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="634"/>
         <source>Perl Module Files (*.pm)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="656"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="643"/>
         <source>Batch Files (*.bat)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="659"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="646"/>
         <source>TeX Files (*.tex)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="662"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="649"/>
         <source>TeX Template Files (*.sty)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="665"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="652"/>
         <source>Diff Files (*.diff)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="668"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="655"/>
         <source>Make Files (*.mak)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="671"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="658"/>
         <source>Properties Files (*.ini)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="674"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="661"/>
         <source>Configuration Files (*.cfg)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="680"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="667"/>
         <source>CMake Files (CMakeLists.txt)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="683"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="670"/>
         <source>CMake Macro Files (*.cmake)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="686"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="673"/>
         <source>VHDL Files (*.vhd)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="689"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="676"/>
         <source>TCL Files (*.tcl)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="692"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="679"/>
         <source>Tk Files (*.tk)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="695"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="682"/>
         <source>Fortran Files (*.f95)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="698"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="685"/>
         <source>Fortran77 Files (*.f)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="701"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="688"/>
         <source>Pascal Files (*.pas)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="707"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="694"/>
         <source>YAML Files (*.yml)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="135"/>
+        <source>Python3</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="118"/>
+        <source>Matlab</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="120"/>
+        <source>Octave</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="495"/>
+        <source>Matlab Files (*.m *.m.matlab)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="700"/>
+        <source>Matlab Files (*.m)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="703"/>
+        <source>Octave Files (*.m.octave)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="498"/>
+        <source>Octave Files (*.m *.m.octave)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="139"/>
+        <source>QSS</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="155"/>
+        <source>Gettext</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="706"/>
+        <source>Gettext Files (*.po)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="157"/>
+        <source>CoffeeScript</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="709"/>
+        <source>CoffeeScript Files (*.coffee)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="159"/>
+        <source>JSON</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="712"/>
+        <source>JSON Files (*.json)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="161"/>
+        <source>Markdown</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="715"/>
+        <source>Markdown Files (*.md)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="132"/>
+        <source>Protocol (protobuf)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="571"/>
+        <source>Protocol Files (*.proto)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="96"/>
+        <source>Cython</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="383"/>
+        <source>Cython Files (*.pyx *.pxd *.pxi)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="553"/>
+        <source>Cython Files (*.pyx)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="556"/>
+        <source>Cython Declaration Files (*.pxd)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="559"/>
+        <source>Cython Include Files (*.pxi)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="137"/>
-        <source>Python3</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="120"/>
-        <source>Matlab</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="122"/>
-        <source>Octave</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="502"/>
-        <source>Matlab Files (*.m *.m.matlab)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="710"/>
-        <source>Matlab Files (*.m)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="713"/>
-        <source>Octave Files (*.m.octave)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="505"/>
-        <source>Octave Files (*.m *.m.octave)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="141"/>
-        <source>QSS</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="157"/>
-        <source>Gettext</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="716"/>
-        <source>Gettext Files (*.po)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="159"/>
-        <source>CoffeeScript</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="719"/>
-        <source>CoffeeScript Files (*.coffee)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="165"/>
-        <source>JSON</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="725"/>
-        <source>JSON Files (*.json)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="170"/>
-        <source>Markdown</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="730"/>
-        <source>Markdown Files (*.md)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="134"/>
-        <source>Protocol (protobuf)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="584"/>
-        <source>Protocol Files (*.proto)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="98"/>
-        <source>Cython</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="393"/>
-        <source>Cython Files (*.pyx *.pxd *.pxi)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="566"/>
-        <source>Cython Files (*.pyx)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="569"/>
-        <source>Cython Declaration Files (*.pxd)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="572"/>
-        <source>Cython Include Files (*.pxi)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="139"/>
         <source>MicroPython</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="387"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="377"/>
         <source>Python Files (*.py *.py3)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="390"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="380"/>
         <source>Python GUI Files (*.pyw *.pyw3)</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="697"/>
+        <source>TOML Files (*.toml)</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>LfConvertDataDialog</name>
@@ -44255,23 +44260,23 @@
 <context>
     <name>MicrosoftEngine</name>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="187"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="190"/>
         <source>You have not registered for the Microsoft Translation service.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="193"/>
-        <source>No valid access token available.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="170"/>
-        <source>No translation available.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="205"/>
-        <source>No Text-to-Speech for the selected language available.</source>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="196"/>
+        <source>MS Translator: No valid access token available.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="173"/>
+        <source>MS Translator: No translation available.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="211"/>
+        <source>MS Translator: No Text-to-Speech for the selected language available.</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -44672,238 +44677,238 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2176"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2175"/>
         <source>About</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2176"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2175"/>
         <source>&amp;About</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2180"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2179"/>
         <source>Display information about this software</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2182"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2181"/>
         <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2188"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2187"/>
         <source>About Qt</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2188"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2187"/>
         <source>About &amp;Qt</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2192"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2191"/>
         <source>Display information about the Qt toolkit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2194"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2193"/>
         <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2201"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2200"/>
         <source>What&apos;s This?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2201"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2200"/>
         <source>&amp;What&apos;s This?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2201"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2200"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../QScintilla/MiniEditor.py" line="2206"/>
+        <source>Context sensitive help</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/MiniEditor.py" line="2207"/>
-        <source>Context sensitive help</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2208"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2224"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2223"/>
         <source>&amp;File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2236"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2235"/>
         <source>&amp;Edit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2256"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2255"/>
         <source>&amp;Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2268"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2267"/>
         <source>File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2281"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2280"/>
         <source>Edit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2291"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2290"/>
         <source>Find</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2298"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2297"/>
         <source>Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2311"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2310"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2318"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2317"/>
         <source>&lt;p&gt;This part of the status bar displays the line number of the editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2325"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2324"/>
         <source>&lt;p&gt;This part of the status bar displays the cursor position of the editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2330"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2329"/>
         <source>Ready</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2357"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2356"/>
         <source>The document has unsaved changes.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2386"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2385"/>
         <source>Open File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2386"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2385"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2415"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2414"/>
         <source>File loaded</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2496"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2495"/>
         <source>Save File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2496"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2495"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2504"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2503"/>
         <source>File saved</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2851"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2849"/>
         <source>Untitled</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2533"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2532"/>
         <source>{0}[*] - {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2533"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2532"/>
         <source>Mini Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2814"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2812"/>
         <source>Printing...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../QScintilla/MiniEditor.py" line="2830"/>
+        <source>Printing completed</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/MiniEditor.py" line="2832"/>
-        <source>Printing completed</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2834"/>
         <source>Error while printing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2837"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2835"/>
         <source>Printing aborted</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2892"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2890"/>
         <source>Select all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2893"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2891"/>
         <source>Deselect all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2907"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2905"/>
         <source>Languages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2910"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2908"/>
         <source>No Language</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2934"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2932"/>
         <source>Guessed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2956"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2954"/>
         <source>Alternatives</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2952"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2950"/>
         <source>Alternatives ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2972"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2970"/>
         <source>Pygments Lexer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2972"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2970"/>
         <source>Select the Pygments lexer to apply.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -44918,7 +44923,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2357"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2356"/>
         <source>eric6 Mini Editor</source>
         <translation type="unfinished"></translation>
     </message>
@@ -44943,17 +44948,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3490"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3488"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3490"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3488"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2516"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2515"/>
         <source>[*] - {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -44961,463 +44966,463 @@
 <context>
     <name>MiscellaneousChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="492"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="490"/>
         <source>coding magic comment not found</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="495"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="493"/>
         <source>unknown encoding ({0}) found in coding magic comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="498"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="496"/>
         <source>copyright notice not present</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="501"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="499"/>
         <source>copyright notice contains invalid author</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="702"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="700"/>
         <source>found {0} formatter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="705"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="703"/>
         <source>format string does contain unindexed parameters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="708"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="706"/>
         <source>docstring does contain unindexed parameters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="711"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="709"/>
         <source>other string does contain unindexed parameters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="714"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="712"/>
         <source>format call uses too large index ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="717"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="715"/>
         <source>format call uses missing keyword ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="720"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="718"/>
         <source>format call uses keyword arguments but no named entries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="723"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="721"/>
         <source>format call uses variable arguments but no numbered entries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="726"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="724"/>
         <source>format call uses implicit and explicit indexes together</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="729"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="727"/>
         <source>format call provides unused index ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="732"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="730"/>
         <source>format call provides unused keyword ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="751"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="749"/>
         <source>expected these __future__ imports: {0}; but only got: {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="754"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="752"/>
         <source>expected these __future__ imports: {0}; but got none</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="761"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="759"/>
         <source>print statement found</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="764"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="762"/>
         <source>one element tuple found</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="800"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="798"/>
         <source>{0}: {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="504"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="502"/>
         <source>&quot;{0}&quot; is a Python builtin and is being shadowed; consider renaming the variable</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="508"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="506"/>
         <source>&quot;{0}&quot; is used as an argument and thus shadows a Python builtin; consider renaming the argument</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="512"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="510"/>
         <source>unnecessary generator - rewrite as a list comprehension</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="515"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="513"/>
         <source>unnecessary generator - rewrite as a set comprehension</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="518"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="516"/>
         <source>unnecessary generator - rewrite as a dict comprehension</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="521"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="519"/>
         <source>unnecessary list comprehension - rewrite as a set comprehension</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="524"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="522"/>
         <source>unnecessary list comprehension - rewrite as a dict comprehension</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="530"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="528"/>
         <source>unnecessary list comprehension - &quot;{0}&quot; can take a generator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="770"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="768"/>
         <source>mutable default argument of type {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="555"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="553"/>
         <source>sort keys - &apos;{0}&apos; should be before &apos;{1}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="738"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="736"/>
         <source>logging statement uses &apos;%&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="744"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="742"/>
         <source>logging statement uses f-string</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="747"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="745"/>
         <source>logging statement uses &apos;warn&apos; instead of &apos;warning&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="735"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="733"/>
         <source>logging statement uses string.format()</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="741"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="739"/>
         <source>logging statement uses &apos;+&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="757"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="755"/>
         <source>gettext import with alias _ found: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="648"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="646"/>
         <source>Python does not support the unary prefix increment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="657"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="655"/>
         <source>&apos;sys.maxint&apos; is not defined in Python 3 - use &apos;sys.maxsize&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="660"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="658"/>
         <source>&apos;BaseException.message&apos; has been deprecated as of Python 2.6 and is removed in Python 3 - use &apos;str(e)&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="664"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="662"/>
         <source>assigning to &apos;os.environ&apos; does not clear the environment - use &apos;os.environ.clear()&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="688"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="686"/>
         <source>Python 3 does not include &apos;.iter*&apos; methods on dictionaries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="691"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="689"/>
         <source>Python 3 does not include &apos;.view*&apos; methods on dictionaries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="694"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="692"/>
         <source>&apos;.next()&apos; does not exist in Python 3</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="697"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="695"/>
         <source>&apos;__metaclass__&apos; does nothing on Python 3 - use &apos;class MyClass(BaseClass, metaclass=...)&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="773"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="771"/>
         <source>mutable default argument of function call &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="651"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="649"/>
         <source>using .strip() with multi-character strings is misleading</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="678"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="676"/>
         <source>using &apos;hasattr(x, &quot;__call__&quot;)&apos; to test if &apos;x&apos; is callable is unreliable</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="668"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="666"/>
         <source>loop control variable {0} not used within the loop body - start the name with an underscore</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="776"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="774"/>
         <source>None should not be added at any return if function has no return value except None</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="780"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="778"/>
         <source>an explicit value at every return should be added if function has a return value except None</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="784"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="782"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="788"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="786"/>
         <source>a value should not be assigned to a variable if it will be used as a return value only</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="654"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="652"/>
         <source>do not call assert False since python -O removes these calls</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="672"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="670"/>
         <source>unncessary f-string</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="675"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="673"/>
         <source>cannot use &apos;self.__class__&apos; as first argument of &apos;super()&apos; call</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="682"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="680"/>
         <source>do not call getattr with a constant attribute value</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="685"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="683"/>
         <source>do not call setattr with a constant attribute value</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="796"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="794"/>
         <source>commented code lines should be removed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="792"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="790"/>
         <source>prefer implied line continuation inside parentheses, brackets and braces as opposed to a backslash</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="559"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="557"/>
         <source>use of &apos;datetime.datetime()&apos; without &apos;tzinfo&apos; argument should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="563"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="561"/>
         <source>use of &apos;datetime.datetime.today()&apos; should be avoided.
 Use &apos;datetime.datetime.now(tz=)&apos; instead.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="567"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="565"/>
         <source>use of &apos;datetime.datetime.utcnow()&apos; should be avoided.
 Use &apos;datetime.datetime.now(tz=)&apos; instead.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="571"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="569"/>
         <source>use of &apos;datetime.datetime.utcfromtimestamp()&apos; should be avoided.
 Use &apos;datetime.datetime.fromtimestamp(, tz=)&apos; instead.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="575"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="573"/>
         <source>use of &apos;datetime.datetime.now()&apos; without &apos;tz&apos; argument should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="579"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="577"/>
         <source>use of &apos;datetime.datetime.fromtimestamp()&apos; without &apos;tz&apos; argument should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="583"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="581"/>
         <source>use of &apos;datetime.datetime.strptime()&apos; should be followed by &apos;.replace(tzinfo=)&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="590"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="588"/>
         <source>use of &apos;datetime.date()&apos; should be avoided.
 Use &apos;datetime.datetime(, tzinfo=).date()&apos; instead.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="594"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="592"/>
         <source>use of &apos;datetime.date.today()&apos; should be avoided.
 Use &apos;datetime.datetime.now(tz=).date()&apos; instead.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="598"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="596"/>
         <source>use of &apos;datetime.date.fromtimestamp()&apos; should be avoided.
 Use &apos;datetime.datetime.fromtimestamp(tz=).date()&apos; instead.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="608"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="606"/>
         <source>use of &apos;datetime.time()&apos; without &apos;tzinfo&apos; argument should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="587"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="585"/>
         <source>use of &apos;datetime.datetime.fromordinal()&apos; should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="602"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="600"/>
         <source>use of &apos;datetime.date.fromordinal()&apos; should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="605"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="603"/>
         <source>use of &apos;datetime.date.fromisoformat()&apos; should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="527"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="525"/>
         <source>unnecessary {0} call - rewrite as a literal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="533"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="531"/>
         <source>unnecessary {0} literal - rewrite as a {1} literal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="536"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="534"/>
         <source>unnecessary {0} passed to tuple() - rewrite as a {1} literal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="539"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="537"/>
         <source>unnecessary {0} passed to list() - rewrite as a {1} literal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="542"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="540"/>
         <source>unnecessary list call - remove the outer call to list()</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="545"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="543"/>
         <source>unnecessary list comprehension - &quot;in&quot; can take a generator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="548"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="546"/>
         <source>unnecessary {0} passed to tuple() - remove the outer call to {1}()</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="551"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="549"/>
         <source>unnecessary {0} passed to list() - remove the outer call to {1}()</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="613"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="611"/>
         <source>&apos;sys.version[:3]&apos; referenced (Python 3.10), use &apos;sys.version_info&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="616"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="614"/>
         <source>&apos;sys.version[2]&apos; referenced (Python 3.10), use &apos;sys.version_info&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="619"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="617"/>
         <source>&apos;sys.version&apos; compared to string (Python 3.10), use &apos;sys.version_info&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="623"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="621"/>
         <source>&apos;sys.version_info[0] == 3&apos; referenced (Python 4), use &apos;&gt;=&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="626"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="624"/>
         <source>&apos;six.PY3&apos; referenced (Python 4), use &apos;not six.PY2&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="629"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="627"/>
         <source>&apos;sys.version_info[1]&apos; compared to integer (Python 4), compare &apos;sys.version_info&apos; to tuple</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="633"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="631"/>
         <source>&apos;sys.version_info.minor&apos; compared to integer (Python 4), compare &apos;sys.version_info&apos; to tuple</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="637"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="635"/>
         <source>&apos;sys.version[0]&apos; referenced (Python 10), use &apos;sys.version_info&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="640"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="638"/>
         <source>&apos;sys.version&apos; compared to string (Python 10), use &apos;sys.version_info&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="644"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="642"/>
         <source>&apos;sys.version[:1]&apos; referenced (Python 10), use &apos;sys.version_info&apos;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -45861,84 +45866,84 @@
     <name>MyMemoryEngine</name>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MyMemoryEngine.py" line="72"/>
-        <source>Only texts up to {0} characters are allowed.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MyMemoryEngine.py" line="95"/>
-        <source>Invalid response received</source>
+        <source>MyMemory: Only texts up to {0} characters are allowed.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MyMemoryEngine.py" line="99"/>
+        <source>MyMemory: Invalid response received</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
 <context>
     <name>NamingStyleChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="432"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="430"/>
         <source>class names should use CapWords convention</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="435"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="433"/>
         <source>function name should be lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="438"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="436"/>
         <source>argument name should be lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="441"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="439"/>
         <source>first argument of a class method should be named &apos;cls&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="444"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="442"/>
         <source>first argument of a method should be named &apos;self&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="447"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="445"/>
         <source>first argument of a static method should not be named &apos;self&apos; or &apos;cls</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="451"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="449"/>
         <source>module names should be lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="454"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="452"/>
         <source>package names should be lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="457"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="455"/>
         <source>constant imported as non constant</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="460"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="458"/>
         <source>lowercase imported as non lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="463"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="461"/>
         <source>camelcase imported as lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="466"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="464"/>
         <source>camelcase imported as constant</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="469"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="467"/>
         <source>variable in function should be lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="472"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="470"/>
         <source>names &apos;l&apos;, &apos;O&apos; and &apos;I&apos; should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
@@ -52967,12 +52972,12 @@
     <name>PromtEngine</name>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/PromtEngine.py" line="97"/>
-        <source>Invalid response received</source>
+        <source>Promt: Invalid response received</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/PromtEngine.py" line="106"/>
-        <source>This direction of translation is not available.</source>
+        <source>Promt: This direction of translation is not available.</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -55152,7 +55157,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="694"/>
+        <location filename="../UI/PythonDisViewer.py" line="696"/>
         <source>Code Object &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -55162,22 +55167,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="450"/>
+        <location filename="../UI/PythonDisViewer.py" line="452"/>
         <source>No editor has been opened.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="462"/>
+        <location filename="../UI/PythonDisViewer.py" line="464"/>
         <source>The current editor does not contain any source code.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="468"/>
+        <location filename="../UI/PythonDisViewer.py" line="470"/>
         <source>The current editor does not contain Python source code.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="517"/>
+        <location filename="../UI/PythonDisViewer.py" line="519"/>
         <source>Disassembly of last traceback</source>
         <translation type="unfinished"></translation>
     </message>
@@ -55207,72 +55212,72 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="809"/>
+        <location filename="../UI/PythonDisViewer.py" line="811"/>
         <source>Name</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="811"/>
-        <source>Filename</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/PythonDisViewer.py" line="813"/>
-        <source>First Line</source>
+        <source>Filename</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/PythonDisViewer.py" line="815"/>
-        <source>Argument Count</source>
+        <source>First Line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/PythonDisViewer.py" line="817"/>
+        <source>Argument Count</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="819"/>
         <source>Positional-only Arguments</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="823"/>
-        <source>Number of Locals</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/PythonDisViewer.py" line="825"/>
-        <source>Stack Size</source>
+        <source>Number of Locals</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/PythonDisViewer.py" line="827"/>
+        <source>Stack Size</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="829"/>
         <source>Flags</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="830"/>
+        <location filename="../UI/PythonDisViewer.py" line="832"/>
         <source>Constants</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="833"/>
+        <location filename="../UI/PythonDisViewer.py" line="835"/>
         <source>Names</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="836"/>
+        <location filename="../UI/PythonDisViewer.py" line="838"/>
         <source>Variable Names</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="839"/>
+        <location filename="../UI/PythonDisViewer.py" line="841"/>
         <source>Free Variables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="842"/>
+        <location filename="../UI/PythonDisViewer.py" line="844"/>
         <source>Cell Variables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="820"/>
+        <location filename="../UI/PythonDisViewer.py" line="822"/>
         <source>Keyword-only Arguments</source>
         <translation type="unfinished"></translation>
     </message>
@@ -77714,3162 +77719,3162 @@
 <context>
     <name>ViewManager</name>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="635"/>
+        <location filename="../ViewManager/ViewManager.py" line="634"/>
         <source>New</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="635"/>
+        <location filename="../ViewManager/ViewManager.py" line="634"/>
         <source>&amp;New</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="635"/>
+        <location filename="../ViewManager/ViewManager.py" line="634"/>
         <source>Ctrl+N</source>
         <comment>File|New</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="643"/>
+        <location filename="../ViewManager/ViewManager.py" line="642"/>
         <source>Open an empty editor window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="646"/>
+        <location filename="../ViewManager/ViewManager.py" line="645"/>
         <source>&lt;b&gt;New&lt;/b&gt;&lt;p&gt;An empty editor window will be created.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="654"/>
+        <location filename="../ViewManager/ViewManager.py" line="653"/>
         <source>Open</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="654"/>
+        <location filename="../ViewManager/ViewManager.py" line="653"/>
         <source>&amp;Open...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="654"/>
+        <location filename="../ViewManager/ViewManager.py" line="653"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="662"/>
+        <location filename="../ViewManager/ViewManager.py" line="661"/>
         <source>Open a file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="664"/>
+        <location filename="../ViewManager/ViewManager.py" line="663"/>
         <source>&lt;b&gt;Open a file&lt;/b&gt;&lt;p&gt;You will be asked for the name of a file to be opened in an editor window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="675"/>
+        <location filename="../ViewManager/ViewManager.py" line="674"/>
         <source>Close</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="675"/>
+        <location filename="../ViewManager/ViewManager.py" line="674"/>
         <source>&amp;Close</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="675"/>
+        <location filename="../ViewManager/ViewManager.py" line="674"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="683"/>
+        <location filename="../ViewManager/ViewManager.py" line="682"/>
         <source>Close the current window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="686"/>
+        <location filename="../ViewManager/ViewManager.py" line="685"/>
         <source>&lt;b&gt;Close Window&lt;/b&gt;&lt;p&gt;Close the current window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="694"/>
+        <location filename="../ViewManager/ViewManager.py" line="693"/>
         <source>Close All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="694"/>
+        <location filename="../ViewManager/ViewManager.py" line="693"/>
         <source>Clos&amp;e All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="698"/>
+        <location filename="../ViewManager/ViewManager.py" line="697"/>
         <source>Close all editor windows</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="701"/>
+        <location filename="../ViewManager/ViewManager.py" line="700"/>
         <source>&lt;b&gt;Close All Windows&lt;/b&gt;&lt;p&gt;Close all editor windows.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="712"/>
         <source>Save</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="712"/>
         <source>&amp;Save</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="712"/>
         <source>Ctrl+S</source>
         <comment>File|Save</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="720"/>
+        <location filename="../ViewManager/ViewManager.py" line="719"/>
         <source>Save the current file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="722"/>
+        <location filename="../ViewManager/ViewManager.py" line="721"/>
         <source>&lt;b&gt;Save File&lt;/b&gt;&lt;p&gt;Save the contents of current editor window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="729"/>
         <source>Save as</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="729"/>
         <source>Save &amp;as...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="729"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="737"/>
+        <location filename="../ViewManager/ViewManager.py" line="736"/>
         <source>Save the current file to a new one</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="739"/>
+        <location filename="../ViewManager/ViewManager.py" line="738"/>
         <source>&lt;b&gt;Save File as&lt;/b&gt;&lt;p&gt;Save the contents of current editor window to a new file. The file can be entered in a file selection dialog.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="764"/>
+        <location filename="../ViewManager/ViewManager.py" line="763"/>
         <source>Save all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="769"/>
+        <location filename="../ViewManager/ViewManager.py" line="768"/>
         <source>Save all files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="771"/>
+        <location filename="../ViewManager/ViewManager.py" line="770"/>
         <source>&lt;b&gt;Save All Files&lt;/b&gt;&lt;p&gt;Save the contents of all editor windows.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="781"/>
+        <location filename="../ViewManager/ViewManager.py" line="780"/>
         <source>Print</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="781"/>
+        <location filename="../ViewManager/ViewManager.py" line="780"/>
         <source>&amp;Print</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="781"/>
+        <location filename="../ViewManager/ViewManager.py" line="780"/>
         <source>Ctrl+P</source>
         <comment>File|Print</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="788"/>
+        <location filename="../ViewManager/ViewManager.py" line="787"/>
         <source>Print the current file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="790"/>
+        <location filename="../ViewManager/ViewManager.py" line="789"/>
         <source>&lt;b&gt;Print File&lt;/b&gt;&lt;p&gt;Print the contents of current editor window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="799"/>
+        <location filename="../ViewManager/ViewManager.py" line="798"/>
         <source>Print Preview</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="804"/>
+        <location filename="../ViewManager/ViewManager.py" line="803"/>
         <source>Print preview of the current file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="806"/>
+        <location filename="../ViewManager/ViewManager.py" line="805"/>
         <source>&lt;b&gt;Print Preview&lt;/b&gt;&lt;p&gt;Print preview of the current editor window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="816"/>
+        <location filename="../ViewManager/ViewManager.py" line="815"/>
         <source>Search File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="816"/>
+        <location filename="../ViewManager/ViewManager.py" line="815"/>
         <source>Search &amp;File...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="816"/>
+        <location filename="../ViewManager/ViewManager.py" line="815"/>
         <source>Alt+Ctrl+F</source>
         <comment>File|Search File</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="822"/>
+        <location filename="../ViewManager/ViewManager.py" line="821"/>
         <source>Search for a file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="824"/>
+        <location filename="../ViewManager/ViewManager.py" line="823"/>
         <source>&lt;b&gt;Search File&lt;/b&gt;&lt;p&gt;Search for a file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="838"/>
+        <location filename="../ViewManager/ViewManager.py" line="837"/>
         <source>&amp;File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="840"/>
+        <location filename="../ViewManager/ViewManager.py" line="839"/>
         <source>Open &amp;Recent Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="843"/>
+        <location filename="../ViewManager/ViewManager.py" line="842"/>
         <source>Open &amp;Bookmarked Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="891"/>
+        <location filename="../ViewManager/ViewManager.py" line="890"/>
         <source>File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="914"/>
+        <location filename="../ViewManager/ViewManager.py" line="913"/>
         <source>Export as</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="938"/>
+        <location filename="../ViewManager/ViewManager.py" line="937"/>
         <source>Undo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="938"/>
+        <location filename="../ViewManager/ViewManager.py" line="937"/>
         <source>&amp;Undo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="938"/>
+        <location filename="../ViewManager/ViewManager.py" line="937"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="938"/>
+        <location filename="../ViewManager/ViewManager.py" line="937"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="947"/>
+        <location filename="../ViewManager/ViewManager.py" line="946"/>
         <source>Undo the last change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="949"/>
+        <location filename="../ViewManager/ViewManager.py" line="948"/>
         <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last change done in the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="957"/>
+        <location filename="../ViewManager/ViewManager.py" line="956"/>
         <source>Redo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="957"/>
+        <location filename="../ViewManager/ViewManager.py" line="956"/>
         <source>&amp;Redo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="957"/>
+        <location filename="../ViewManager/ViewManager.py" line="956"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="965"/>
+        <location filename="../ViewManager/ViewManager.py" line="964"/>
         <source>Redo the last change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="967"/>
+        <location filename="../ViewManager/ViewManager.py" line="966"/>
         <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last change done in the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="984"/>
+        <location filename="../ViewManager/ViewManager.py" line="983"/>
         <source>Revert to last saved state</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="975"/>
+        <location filename="../ViewManager/ViewManager.py" line="974"/>
         <source>Re&amp;vert to last saved state</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="975"/>
+        <location filename="../ViewManager/ViewManager.py" line="974"/>
         <source>Ctrl+Y</source>
         <comment>Edit|Revert</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="985"/>
         <source>&lt;b&gt;Revert to last saved state&lt;/b&gt;&lt;p&gt;Undo all changes up to the last saved state of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <source>Cut</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <source>Cu&amp;t</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1006"/>
+        <location filename="../ViewManager/ViewManager.py" line="1005"/>
         <source>Cut the selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1008"/>
+        <location filename="../ViewManager/ViewManager.py" line="1007"/>
         <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected text of the current editor to the clipboard.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1017"/>
+        <location filename="../ViewManager/ViewManager.py" line="1016"/>
         <source>Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1017"/>
+        <location filename="../ViewManager/ViewManager.py" line="1016"/>
         <source>&amp;Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1017"/>
+        <location filename="../ViewManager/ViewManager.py" line="1016"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1017"/>
+        <location filename="../ViewManager/ViewManager.py" line="1016"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1026"/>
+        <location filename="../ViewManager/ViewManager.py" line="1025"/>
         <source>Copy the selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1028"/>
+        <location filename="../ViewManager/ViewManager.py" line="1027"/>
         <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected text of the current editor to the clipboard.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1037"/>
+        <location filename="../ViewManager/ViewManager.py" line="1036"/>
         <source>Paste</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1037"/>
+        <location filename="../ViewManager/ViewManager.py" line="1036"/>
         <source>&amp;Paste</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1037"/>
+        <location filename="../ViewManager/ViewManager.py" line="1036"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1037"/>
+        <location filename="../ViewManager/ViewManager.py" line="1036"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1046"/>
+        <location filename="../ViewManager/ViewManager.py" line="1045"/>
         <source>Paste the last cut/copied text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1048"/>
+        <location filename="../ViewManager/ViewManager.py" line="1047"/>
         <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the last cut/copied text from the clipboard to the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1057"/>
+        <location filename="../ViewManager/ViewManager.py" line="1056"/>
         <source>Clear</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1057"/>
+        <location filename="../ViewManager/ViewManager.py" line="1056"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1065"/>
+        <location filename="../ViewManager/ViewManager.py" line="1064"/>
         <source>Clear all text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1067"/>
+        <location filename="../ViewManager/ViewManager.py" line="1066"/>
         <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Delete all text of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1082"/>
+        <location filename="../ViewManager/ViewManager.py" line="1081"/>
         <source>Join Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1075"/>
+        <location filename="../ViewManager/ViewManager.py" line="1074"/>
         <source>Ctrl+J</source>
         <comment>Edit|Join Lines</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1084"/>
+        <location filename="../ViewManager/ViewManager.py" line="1083"/>
         <source>&lt;b&gt;Join Lines&lt;/b&gt;&lt;p&gt;Join the current and the next lines.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1092"/>
+        <location filename="../ViewManager/ViewManager.py" line="1091"/>
         <source>Indent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1092"/>
+        <location filename="../ViewManager/ViewManager.py" line="1091"/>
         <source>&amp;Indent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1092"/>
+        <location filename="../ViewManager/ViewManager.py" line="1091"/>
         <source>Ctrl+I</source>
         <comment>Edit|Indent</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1100"/>
+        <location filename="../ViewManager/ViewManager.py" line="1099"/>
         <source>Indent line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1102"/>
+        <location filename="../ViewManager/ViewManager.py" line="1101"/>
         <source>&lt;b&gt;Indent&lt;/b&gt;&lt;p&gt;Indents the current line or the lines of the selection by one level.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1111"/>
+        <location filename="../ViewManager/ViewManager.py" line="1110"/>
         <source>Unindent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1111"/>
+        <location filename="../ViewManager/ViewManager.py" line="1110"/>
         <source>U&amp;nindent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1111"/>
+        <location filename="../ViewManager/ViewManager.py" line="1110"/>
         <source>Ctrl+Shift+I</source>
         <comment>Edit|Unindent</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1119"/>
+        <location filename="../ViewManager/ViewManager.py" line="1118"/>
         <source>Unindent line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1121"/>
+        <location filename="../ViewManager/ViewManager.py" line="1120"/>
         <source>&lt;b&gt;Unindent&lt;/b&gt;&lt;p&gt;Unindents the current line or the lines of the selection by one level.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1130"/>
+        <location filename="../ViewManager/ViewManager.py" line="1129"/>
         <source>Smart indent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1136"/>
+        <location filename="../ViewManager/ViewManager.py" line="1135"/>
         <source>Smart indent Line or Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1138"/>
+        <location filename="../ViewManager/ViewManager.py" line="1137"/>
         <source>&lt;b&gt;Smart indent&lt;/b&gt;&lt;p&gt;Indents the current line or the lines of the current selection smartly.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1147"/>
+        <location filename="../ViewManager/ViewManager.py" line="1146"/>
         <source>Comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1147"/>
+        <location filename="../ViewManager/ViewManager.py" line="1146"/>
         <source>C&amp;omment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1147"/>
+        <location filename="../ViewManager/ViewManager.py" line="1146"/>
         <source>Ctrl+M</source>
         <comment>Edit|Comment</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1155"/>
+        <location filename="../ViewManager/ViewManager.py" line="1154"/>
         <source>Comment Line or Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1157"/>
+        <location filename="../ViewManager/ViewManager.py" line="1156"/>
         <source>&lt;b&gt;Comment&lt;/b&gt;&lt;p&gt;Comments the current line or the lines of the current selection.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1166"/>
+        <location filename="../ViewManager/ViewManager.py" line="1165"/>
         <source>Uncomment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1166"/>
+        <location filename="../ViewManager/ViewManager.py" line="1165"/>
         <source>Unco&amp;mment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1166"/>
+        <location filename="../ViewManager/ViewManager.py" line="1165"/>
         <source>Alt+Ctrl+M</source>
         <comment>Edit|Uncomment</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1174"/>
+        <location filename="../ViewManager/ViewManager.py" line="1173"/>
         <source>Uncomment Line or Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1176"/>
+        <location filename="../ViewManager/ViewManager.py" line="1175"/>
         <source>&lt;b&gt;Uncomment&lt;/b&gt;&lt;p&gt;Uncomments the current line or the lines of the current selection.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1207"/>
+        <location filename="../ViewManager/ViewManager.py" line="1206"/>
         <source>Stream Comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1212"/>
+        <location filename="../ViewManager/ViewManager.py" line="1211"/>
         <source>Stream Comment Line or Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1215"/>
+        <location filename="../ViewManager/ViewManager.py" line="1214"/>
         <source>&lt;b&gt;Stream Comment&lt;/b&gt;&lt;p&gt;Stream comments the current line or the current selection.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1224"/>
+        <location filename="../ViewManager/ViewManager.py" line="1223"/>
         <source>Box Comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1229"/>
+        <location filename="../ViewManager/ViewManager.py" line="1228"/>
         <source>Box Comment Line or Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1231"/>
+        <location filename="../ViewManager/ViewManager.py" line="1230"/>
         <source>&lt;b&gt;Box Comment&lt;/b&gt;&lt;p&gt;Box comments the current line or the lines of the current selection.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1240"/>
+        <location filename="../ViewManager/ViewManager.py" line="1239"/>
         <source>Select to brace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1240"/>
+        <location filename="../ViewManager/ViewManager.py" line="1239"/>
         <source>Select to &amp;brace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1240"/>
+        <location filename="../ViewManager/ViewManager.py" line="1239"/>
         <source>Ctrl+E</source>
         <comment>Edit|Select to brace</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1247"/>
+        <location filename="../ViewManager/ViewManager.py" line="1246"/>
         <source>Select text to the matching brace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1249"/>
+        <location filename="../ViewManager/ViewManager.py" line="1248"/>
         <source>&lt;b&gt;Select to brace&lt;/b&gt;&lt;p&gt;Select text of the current editor to the matching brace.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1258"/>
+        <location filename="../ViewManager/ViewManager.py" line="1257"/>
         <source>Select all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1258"/>
+        <location filename="../ViewManager/ViewManager.py" line="1257"/>
         <source>&amp;Select all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1258"/>
+        <location filename="../ViewManager/ViewManager.py" line="1257"/>
         <source>Ctrl+A</source>
         <comment>Edit|Select all</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1266"/>
+        <location filename="../ViewManager/ViewManager.py" line="1265"/>
         <source>Select all text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1268"/>
+        <location filename="../ViewManager/ViewManager.py" line="1267"/>
         <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Select all text of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1275"/>
         <source>Deselect all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1275"/>
         <source>&amp;Deselect all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1275"/>
         <source>Alt+Ctrl+A</source>
         <comment>Edit|Deselect all</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1283"/>
+        <location filename="../ViewManager/ViewManager.py" line="1282"/>
         <source>Deselect all text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1285"/>
+        <location filename="../ViewManager/ViewManager.py" line="1284"/>
         <source>&lt;b&gt;Deselect All&lt;/b&gt;&lt;p&gt;Deselect all text of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1300"/>
+        <location filename="../ViewManager/ViewManager.py" line="1299"/>
         <source>Convert Line End Characters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1293"/>
+        <location filename="../ViewManager/ViewManager.py" line="1292"/>
         <source>Convert &amp;Line End Characters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1302"/>
+        <location filename="../ViewManager/ViewManager.py" line="1301"/>
         <source>&lt;b&gt;Convert Line End Characters&lt;/b&gt;&lt;p&gt;Convert the line end characters to the currently set type.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1316"/>
+        <location filename="../ViewManager/ViewManager.py" line="1315"/>
         <source>Shorten empty lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1318"/>
+        <location filename="../ViewManager/ViewManager.py" line="1317"/>
         <source>&lt;b&gt;Shorten empty lines&lt;/b&gt;&lt;p&gt;Shorten lines consisting solely of whitespace characters.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1414"/>
+        <location filename="../ViewManager/ViewManager.py" line="1413"/>
         <source>Calltip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1414"/>
+        <location filename="../ViewManager/ViewManager.py" line="1413"/>
         <source>&amp;Calltip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1421"/>
+        <location filename="../ViewManager/ViewManager.py" line="1420"/>
         <source>Show Calltips</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1423"/>
+        <location filename="../ViewManager/ViewManager.py" line="1422"/>
         <source>&lt;b&gt;Calltip&lt;/b&gt;&lt;p&gt;Show calltips based on the characters immediately to the left of the cursor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1481"/>
+        <location filename="../ViewManager/ViewManager.py" line="1480"/>
         <source>Move left one character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1481"/>
+        <location filename="../ViewManager/ViewManager.py" line="1480"/>
         <source>Left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1495"/>
+        <location filename="../ViewManager/ViewManager.py" line="1494"/>
         <source>Move right one character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1495"/>
+        <location filename="../ViewManager/ViewManager.py" line="1494"/>
         <source>Right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1509"/>
+        <location filename="../ViewManager/ViewManager.py" line="1508"/>
         <source>Move up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1509"/>
+        <location filename="../ViewManager/ViewManager.py" line="1508"/>
         <source>Up</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1521"/>
+        <location filename="../ViewManager/ViewManager.py" line="1520"/>
         <source>Move down one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1521"/>
+        <location filename="../ViewManager/ViewManager.py" line="1520"/>
         <source>Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1533"/>
+        <location filename="../ViewManager/ViewManager.py" line="1532"/>
         <source>Move left one word part</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1567"/>
+        <location filename="../ViewManager/ViewManager.py" line="1566"/>
         <source>Alt+Left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1547"/>
+        <location filename="../ViewManager/ViewManager.py" line="1546"/>
         <source>Move right one word part</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2448"/>
+        <location filename="../ViewManager/ViewManager.py" line="2446"/>
         <source>Alt+Right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1561"/>
+        <location filename="../ViewManager/ViewManager.py" line="1560"/>
         <source>Move left one word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1612"/>
+        <location filename="../ViewManager/ViewManager.py" line="1611"/>
         <source>Ctrl+Left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1576"/>
+        <location filename="../ViewManager/ViewManager.py" line="1575"/>
         <source>Move right one word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2202"/>
+        <location filename="../ViewManager/ViewManager.py" line="2200"/>
         <source>Ctrl+Right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2403"/>
+        <location filename="../ViewManager/ViewManager.py" line="2401"/>
         <source>Home</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1615"/>
+        <location filename="../ViewManager/ViewManager.py" line="1614"/>
         <source>Alt+Home</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2418"/>
+        <location filename="../ViewManager/ViewManager.py" line="2416"/>
         <source>End</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1638"/>
+        <location filename="../ViewManager/ViewManager.py" line="1637"/>
         <source>Scroll view down one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1728"/>
+        <location filename="../ViewManager/ViewManager.py" line="1727"/>
         <source>Ctrl+Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1650"/>
+        <location filename="../ViewManager/ViewManager.py" line="1649"/>
         <source>Scroll view up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1711"/>
+        <location filename="../ViewManager/ViewManager.py" line="1710"/>
         <source>Ctrl+Up</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1661"/>
+        <location filename="../ViewManager/ViewManager.py" line="1660"/>
         <source>Move up one paragraph</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1661"/>
+        <location filename="../ViewManager/ViewManager.py" line="1660"/>
         <source>Alt+Up</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1670"/>
+        <location filename="../ViewManager/ViewManager.py" line="1669"/>
         <source>Move down one paragraph</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1670"/>
+        <location filename="../ViewManager/ViewManager.py" line="1669"/>
         <source>Alt+Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1682"/>
+        <location filename="../ViewManager/ViewManager.py" line="1681"/>
         <source>Move up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1682"/>
+        <location filename="../ViewManager/ViewManager.py" line="1681"/>
         <source>PgUp</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1691"/>
+        <location filename="../ViewManager/ViewManager.py" line="1690"/>
         <source>Move down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1691"/>
+        <location filename="../ViewManager/ViewManager.py" line="1690"/>
         <source>PgDown</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1714"/>
+        <location filename="../ViewManager/ViewManager.py" line="1713"/>
         <source>Ctrl+Home</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1731"/>
+        <location filename="../ViewManager/ViewManager.py" line="1730"/>
         <source>Ctrl+End</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1737"/>
+        <location filename="../ViewManager/ViewManager.py" line="1736"/>
         <source>Indent one level</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1737"/>
+        <location filename="../ViewManager/ViewManager.py" line="1736"/>
         <source>Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1746"/>
+        <location filename="../ViewManager/ViewManager.py" line="1745"/>
         <source>Unindent one level</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1746"/>
+        <location filename="../ViewManager/ViewManager.py" line="1745"/>
         <source>Shift+Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1756"/>
+        <location filename="../ViewManager/ViewManager.py" line="1755"/>
         <source>Extend selection left one character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1756"/>
+        <location filename="../ViewManager/ViewManager.py" line="1755"/>
         <source>Shift+Left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1771"/>
+        <location filename="../ViewManager/ViewManager.py" line="1770"/>
         <source>Extend selection right one character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1771"/>
+        <location filename="../ViewManager/ViewManager.py" line="1770"/>
         <source>Shift+Right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1786"/>
+        <location filename="../ViewManager/ViewManager.py" line="1785"/>
         <source>Extend selection up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1786"/>
+        <location filename="../ViewManager/ViewManager.py" line="1785"/>
         <source>Shift+Up</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1801"/>
+        <location filename="../ViewManager/ViewManager.py" line="1800"/>
         <source>Extend selection down one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1801"/>
+        <location filename="../ViewManager/ViewManager.py" line="1800"/>
         <source>Shift+Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1816"/>
+        <location filename="../ViewManager/ViewManager.py" line="1815"/>
         <source>Extend selection left one word part</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1852"/>
+        <location filename="../ViewManager/ViewManager.py" line="1851"/>
         <source>Alt+Shift+Left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1830"/>
+        <location filename="../ViewManager/ViewManager.py" line="1829"/>
         <source>Extend selection right one word part</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2463"/>
+        <location filename="../ViewManager/ViewManager.py" line="2461"/>
         <source>Alt+Shift+Right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1844"/>
+        <location filename="../ViewManager/ViewManager.py" line="1843"/>
         <source>Extend selection left one word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2557"/>
+        <location filename="../ViewManager/ViewManager.py" line="2555"/>
         <source>Ctrl+Shift+Left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1861"/>
+        <location filename="../ViewManager/ViewManager.py" line="1860"/>
         <source>Extend selection right one word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2219"/>
+        <location filename="../ViewManager/ViewManager.py" line="2217"/>
         <source>Ctrl+Shift+Right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1890"/>
+        <location filename="../ViewManager/ViewManager.py" line="1889"/>
         <source>Shift+Home</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2323"/>
+        <location filename="../ViewManager/ViewManager.py" line="2321"/>
         <source>Alt+Shift+Home</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1907"/>
+        <location filename="../ViewManager/ViewManager.py" line="1906"/>
         <source>Shift+End</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1913"/>
+        <location filename="../ViewManager/ViewManager.py" line="1912"/>
         <source>Extend selection up one paragraph</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1913"/>
+        <location filename="../ViewManager/ViewManager.py" line="1912"/>
         <source>Alt+Shift+Up</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1926"/>
+        <location filename="../ViewManager/ViewManager.py" line="1925"/>
         <source>Extend selection down one paragraph</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1926"/>
+        <location filename="../ViewManager/ViewManager.py" line="1925"/>
         <source>Alt+Shift+Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1939"/>
+        <location filename="../ViewManager/ViewManager.py" line="1938"/>
         <source>Extend selection up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1939"/>
+        <location filename="../ViewManager/ViewManager.py" line="1938"/>
         <source>Shift+PgUp</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1951"/>
+        <location filename="../ViewManager/ViewManager.py" line="1950"/>
         <source>Extend selection down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1951"/>
+        <location filename="../ViewManager/ViewManager.py" line="1950"/>
         <source>Shift+PgDown</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1978"/>
+        <location filename="../ViewManager/ViewManager.py" line="1977"/>
         <source>Ctrl+Shift+Home</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1995"/>
+        <location filename="../ViewManager/ViewManager.py" line="1994"/>
         <source>Ctrl+Shift+End</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2001"/>
+        <location filename="../ViewManager/ViewManager.py" line="2000"/>
         <source>Delete previous character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2001"/>
+        <location filename="../ViewManager/ViewManager.py" line="2000"/>
         <source>Backspace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2013"/>
+        <location filename="../ViewManager/ViewManager.py" line="2012"/>
         <source>Shift+Backspace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2032"/>
+        <location filename="../ViewManager/ViewManager.py" line="2031"/>
         <source>Delete current character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2032"/>
+        <location filename="../ViewManager/ViewManager.py" line="2031"/>
         <source>Del</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2046"/>
+        <location filename="../ViewManager/ViewManager.py" line="2045"/>
         <source>Delete word to left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2046"/>
+        <location filename="../ViewManager/ViewManager.py" line="2045"/>
         <source>Ctrl+Backspace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2057"/>
+        <location filename="../ViewManager/ViewManager.py" line="2056"/>
         <source>Delete word to right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2057"/>
+        <location filename="../ViewManager/ViewManager.py" line="2056"/>
         <source>Ctrl+Del</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2067"/>
+        <location filename="../ViewManager/ViewManager.py" line="2066"/>
         <source>Delete line to left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2067"/>
+        <location filename="../ViewManager/ViewManager.py" line="2066"/>
         <source>Ctrl+Shift+Backspace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2078"/>
+        <location filename="../ViewManager/ViewManager.py" line="2077"/>
         <source>Delete line to right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2087"/>
+        <location filename="../ViewManager/ViewManager.py" line="2086"/>
         <source>Ctrl+Shift+Del</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2093"/>
+        <location filename="../ViewManager/ViewManager.py" line="2092"/>
         <source>Insert new line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2093"/>
+        <location filename="../ViewManager/ViewManager.py" line="2092"/>
         <source>Return</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2093"/>
+        <location filename="../ViewManager/ViewManager.py" line="2092"/>
         <source>Enter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2103"/>
+        <location filename="../ViewManager/ViewManager.py" line="2102"/>
         <source>Insert new line below current line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2103"/>
+        <location filename="../ViewManager/ViewManager.py" line="2102"/>
         <source>Shift+Return</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2103"/>
+        <location filename="../ViewManager/ViewManager.py" line="2102"/>
         <source>Shift+Enter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2116"/>
+        <location filename="../ViewManager/ViewManager.py" line="2115"/>
         <source>Delete current line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2116"/>
+        <location filename="../ViewManager/ViewManager.py" line="2115"/>
         <source>Ctrl+Shift+L</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2127"/>
+        <location filename="../ViewManager/ViewManager.py" line="2126"/>
         <source>Duplicate current line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2127"/>
+        <location filename="../ViewManager/ViewManager.py" line="2126"/>
         <source>Ctrl+D</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2138"/>
+        <location filename="../ViewManager/ViewManager.py" line="2137"/>
         <source>Swap current and previous lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2138"/>
+        <location filename="../ViewManager/ViewManager.py" line="2137"/>
         <source>Ctrl+T</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2162"/>
+        <location filename="../ViewManager/ViewManager.py" line="2160"/>
         <source>Cut current line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2162"/>
+        <location filename="../ViewManager/ViewManager.py" line="2160"/>
         <source>Alt+Shift+L</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2172"/>
+        <location filename="../ViewManager/ViewManager.py" line="2170"/>
         <source>Copy current line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2172"/>
+        <location filename="../ViewManager/ViewManager.py" line="2170"/>
         <source>Ctrl+Shift+T</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2183"/>
+        <location filename="../ViewManager/ViewManager.py" line="2181"/>
         <source>Toggle insert/overtype</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2183"/>
+        <location filename="../ViewManager/ViewManager.py" line="2181"/>
         <source>Ins</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2747"/>
+        <location filename="../ViewManager/ViewManager.py" line="2745"/>
         <source>Convert selection to lower case</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2747"/>
+        <location filename="../ViewManager/ViewManager.py" line="2745"/>
         <source>Alt+Shift+U</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2759"/>
+        <location filename="../ViewManager/ViewManager.py" line="2757"/>
         <source>Convert selection to upper case</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2759"/>
+        <location filename="../ViewManager/ViewManager.py" line="2757"/>
         <source>Ctrl+Shift+U</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2205"/>
+        <location filename="../ViewManager/ViewManager.py" line="2203"/>
         <source>Alt+End</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2225"/>
+        <location filename="../ViewManager/ViewManager.py" line="2223"/>
         <source>Formfeed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2234"/>
+        <location filename="../ViewManager/ViewManager.py" line="2232"/>
         <source>Escape</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2234"/>
+        <location filename="../ViewManager/ViewManager.py" line="2232"/>
         <source>Esc</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2243"/>
+        <location filename="../ViewManager/ViewManager.py" line="2241"/>
         <source>Extend rectangular selection down one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2243"/>
+        <location filename="../ViewManager/ViewManager.py" line="2241"/>
         <source>Alt+Ctrl+Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2259"/>
+        <location filename="../ViewManager/ViewManager.py" line="2257"/>
         <source>Extend rectangular selection up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2259"/>
+        <location filename="../ViewManager/ViewManager.py" line="2257"/>
         <source>Alt+Ctrl+Up</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2274"/>
+        <location filename="../ViewManager/ViewManager.py" line="2272"/>
         <source>Extend rectangular selection left one character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2274"/>
+        <location filename="../ViewManager/ViewManager.py" line="2272"/>
         <source>Alt+Ctrl+Left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2292"/>
+        <location filename="../ViewManager/ViewManager.py" line="2290"/>
         <source>Extend rectangular selection right one character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2292"/>
+        <location filename="../ViewManager/ViewManager.py" line="2290"/>
         <source>Alt+Ctrl+Right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2348"/>
+        <location filename="../ViewManager/ViewManager.py" line="2346"/>
         <source>Extend rectangular selection up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2363"/>
+        <location filename="../ViewManager/ViewManager.py" line="2361"/>
         <source>Extend rectangular selection down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2381"/>
+        <location filename="../ViewManager/ViewManager.py" line="2379"/>
         <source>Duplicate current selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2381"/>
+        <location filename="../ViewManager/ViewManager.py" line="2379"/>
         <source>Ctrl+Shift+D</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3354"/>
+        <location filename="../ViewManager/ViewManager.py" line="3352"/>
         <source>&amp;Search</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2788"/>
+        <location filename="../ViewManager/ViewManager.py" line="2786"/>
         <source>&amp;Edit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2845"/>
+        <location filename="../ViewManager/ViewManager.py" line="2843"/>
         <source>Edit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3449"/>
+        <location filename="../ViewManager/ViewManager.py" line="3447"/>
         <source>Search</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2877"/>
+        <location filename="../ViewManager/ViewManager.py" line="2875"/>
         <source>&amp;Search...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2877"/>
+        <location filename="../ViewManager/ViewManager.py" line="2875"/>
         <source>Ctrl+F</source>
         <comment>Search|Search</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="2883"/>
+        <source>Search for a text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="2885"/>
-        <source>Search for a text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2887"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2897"/>
+        <location filename="../ViewManager/ViewManager.py" line="2895"/>
         <source>Search next</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2897"/>
+        <location filename="../ViewManager/ViewManager.py" line="2895"/>
         <source>Search &amp;next</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2897"/>
+        <location filename="../ViewManager/ViewManager.py" line="2895"/>
         <source>F3</source>
         <comment>Search|Search next</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="2904"/>
+        <source>Search next occurrence of text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="2906"/>
-        <source>Search next occurrence of text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2908"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2918"/>
+        <location filename="../ViewManager/ViewManager.py" line="2916"/>
         <source>Search previous</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2918"/>
+        <location filename="../ViewManager/ViewManager.py" line="2916"/>
         <source>Search &amp;previous</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2918"/>
+        <location filename="../ViewManager/ViewManager.py" line="2916"/>
         <source>Shift+F3</source>
         <comment>Search|Search previous</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="2924"/>
+        <source>Search previous occurrence of text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="2926"/>
-        <source>Search previous occurrence of text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2928"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2938"/>
+        <location filename="../ViewManager/ViewManager.py" line="2936"/>
         <source>Clear search markers</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2938"/>
+        <location filename="../ViewManager/ViewManager.py" line="2936"/>
         <source>Ctrl+3</source>
         <comment>Search|Clear search markers</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="2944"/>
+        <source>Clear all displayed search markers</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="2946"/>
-        <source>Clear all displayed search markers</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2948"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3003"/>
+        <location filename="../ViewManager/ViewManager.py" line="3001"/>
         <source>Replace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3003"/>
+        <location filename="../ViewManager/ViewManager.py" line="3001"/>
         <source>&amp;Replace...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3003"/>
+        <location filename="../ViewManager/ViewManager.py" line="3001"/>
         <source>Ctrl+R</source>
         <comment>Search|Replace</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3008"/>
+        <source>Replace some text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3010"/>
-        <source>Replace some text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3012"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3389"/>
+        <location filename="../ViewManager/ViewManager.py" line="3387"/>
         <source>Quicksearch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3090"/>
+        <location filename="../ViewManager/ViewManager.py" line="3088"/>
         <source>&amp;Quicksearch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3090"/>
+        <location filename="../ViewManager/ViewManager.py" line="3088"/>
         <source>Ctrl+Shift+K</source>
         <comment>Search|Quicksearch</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3096"/>
+        <source>Perform a quicksearch</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3098"/>
-        <source>Perform a quicksearch</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3100"/>
         <source>&lt;b&gt;Quicksearch&lt;/b&gt;&lt;p&gt;This activates the quicksearch function of the IDE by giving focus to the quicksearch entry field. If this field is already active and contains text, it searches for the next occurrence of this text.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3111"/>
+        <location filename="../ViewManager/ViewManager.py" line="3109"/>
         <source>Quicksearch backwards</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3111"/>
+        <location filename="../ViewManager/ViewManager.py" line="3109"/>
         <source>Quicksearch &amp;backwards</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3111"/>
+        <location filename="../ViewManager/ViewManager.py" line="3109"/>
         <source>Ctrl+Shift+J</source>
         <comment>Search|Quicksearch backwards</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3121"/>
+        <location filename="../ViewManager/ViewManager.py" line="3119"/>
         <source>Perform a quicksearch backwards</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3124"/>
+        <location filename="../ViewManager/ViewManager.py" line="3122"/>
         <source>&lt;b&gt;Quicksearch backwards&lt;/b&gt;&lt;p&gt;This searches the previous occurrence of the quicksearch text.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3133"/>
+        <location filename="../ViewManager/ViewManager.py" line="3131"/>
         <source>Quicksearch extend</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3133"/>
+        <location filename="../ViewManager/ViewManager.py" line="3131"/>
         <source>Quicksearch e&amp;xtend</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3133"/>
+        <location filename="../ViewManager/ViewManager.py" line="3131"/>
         <source>Ctrl+Shift+H</source>
         <comment>Search|Quicksearch extend</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3141"/>
+        <location filename="../ViewManager/ViewManager.py" line="3139"/>
         <source>Extend the quicksearch to the end of the current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3144"/>
+        <location filename="../ViewManager/ViewManager.py" line="3142"/>
         <source>&lt;b&gt;Quicksearch extend&lt;/b&gt;&lt;p&gt;This extends the quicksearch text to the end of the word currently found.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3160"/>
+        <source>Goto Line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3152"/>
+        <source>&amp;Goto Line...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3152"/>
+        <source>Ctrl+G</source>
+        <comment>Search|Goto Line</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3162"/>
-        <source>Goto Line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3154"/>
-        <source>&amp;Goto Line...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3154"/>
-        <source>Ctrl+G</source>
-        <comment>Search|Goto Line</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3164"/>
         <source>&lt;b&gt;Goto Line&lt;/b&gt;&lt;p&gt;Go to a specific line of text in the current editor. A dialog is shown to enter the linenumber.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3179"/>
+        <source>Goto Brace</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3171"/>
+        <source>Goto &amp;Brace</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3171"/>
+        <source>Ctrl+L</source>
+        <comment>Search|Goto Brace</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3181"/>
-        <source>Goto Brace</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3173"/>
-        <source>Goto &amp;Brace</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3173"/>
-        <source>Ctrl+L</source>
-        <comment>Search|Goto Brace</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3183"/>
         <source>&lt;b&gt;Goto Brace&lt;/b&gt;&lt;p&gt;Go to the matching brace in the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3261"/>
+        <location filename="../ViewManager/ViewManager.py" line="3259"/>
         <source>Search in Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3261"/>
+        <location filename="../ViewManager/ViewManager.py" line="3259"/>
         <source>Search in &amp;Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3261"/>
+        <location filename="../ViewManager/ViewManager.py" line="3259"/>
         <source>Shift+Ctrl+F</source>
         <comment>Search|Search Files</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3267"/>
+        <source>Search for a text in files</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3269"/>
-        <source>Search for a text in files</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3271"/>
         <source>&lt;b&gt;Search in Files&lt;/b&gt;&lt;p&gt;Search for some text in the files of a directory tree or the project. A dialog is shown to enter the searchtext and options for the search and to display the result.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3281"/>
+        <location filename="../ViewManager/ViewManager.py" line="3279"/>
         <source>Replace in Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3281"/>
+        <location filename="../ViewManager/ViewManager.py" line="3279"/>
         <source>Replace in F&amp;iles...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3281"/>
+        <location filename="../ViewManager/ViewManager.py" line="3279"/>
         <source>Shift+Ctrl+R</source>
         <comment>Search|Replace in Files</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3286"/>
+        <source>Search for a text in files and replace it</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3288"/>
-        <source>Search for a text in files and replace it</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3290"/>
         <source>&lt;b&gt;Replace in Files&lt;/b&gt;&lt;p&gt;Search for some text in the files of a directory tree or the project and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and to display the result.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3408"/>
+        <location filename="../ViewManager/ViewManager.py" line="3406"/>
         <source>&lt;p&gt;Enter the searchtext directly into this field. The search will be performed case insensitive. The quicksearch function is activated upon activation of the quicksearch next action (default key Ctrl+Shift+K), if this entry field does not have the input focus. Otherwise it searches for the next occurrence of the text entered. The quicksearch backwards action (default key Ctrl+Shift+J) searches backward. Activating the &apos;quicksearch extend&apos; action (default key Ctrl+Shift+H) extends the current searchtext to the end of the currently found word. The quicksearch can be ended by pressing the Return key while the quicksearch entry has the the input focus.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3435"/>
+        <location filename="../ViewManager/ViewManager.py" line="3433"/>
         <source>Quicksearch Textedit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3487"/>
         <source>Zoom in</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3487"/>
         <source>Zoom &amp;in</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3487"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3496"/>
+        <source>Zoom in on the text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3498"/>
-        <source>Zoom in on the text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3500"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3508"/>
+        <location filename="../ViewManager/ViewManager.py" line="3506"/>
         <source>Zoom out</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3508"/>
+        <location filename="../ViewManager/ViewManager.py" line="3506"/>
         <source>Zoom &amp;out</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3508"/>
+        <location filename="../ViewManager/ViewManager.py" line="3506"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3515"/>
+        <source>Zoom out on the text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3517"/>
-        <source>Zoom out on the text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3519"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3546"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>Zoom</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3546"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>&amp;Zoom</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3546"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>Ctrl+#</source>
         <comment>View|Zoom</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3552"/>
+        <source>Zoom the text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3554"/>
-        <source>Zoom the text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3556"/>
         <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"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3567"/>
+        <source>Toggle all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3563"/>
+        <source>&amp;Toggle all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3569"/>
-        <source>Toggle all folds</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3565"/>
-        <source>&amp;Toggle all folds</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3571"/>
         <source>&lt;b&gt;Toggle all folds&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3583"/>
+        <source>Toggle all folds (including children)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3577"/>
+        <source>Toggle all &amp;folds (including children)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3585"/>
-        <source>Toggle all folds (including children)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3579"/>
-        <source>Toggle all &amp;folds (including children)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3587"/>
         <source>&lt;b&gt;Toggle all folds (including children)&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor including all children.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3599"/>
+        <source>Toggle current fold</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3595"/>
+        <source>Toggle &amp;current fold</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3601"/>
-        <source>Toggle current fold</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3597"/>
-        <source>Toggle &amp;current fold</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3603"/>
         <source>&lt;b&gt;Toggle current fold&lt;/b&gt;&lt;p&gt;Toggle the folds of the current line of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3631"/>
+        <source>Remove all highlights</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3633"/>
-        <source>Remove all highlights</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3635"/>
         <source>&lt;b&gt;Remove all highlights&lt;/b&gt;&lt;p&gt;Remove the highlights of all editors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3681"/>
+        <location filename="../ViewManager/ViewManager.py" line="3679"/>
         <source>Split view</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3681"/>
+        <location filename="../ViewManager/ViewManager.py" line="3679"/>
         <source>&amp;Split view</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3684"/>
+        <source>Add a split to the view</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3686"/>
-        <source>Add a split to the view</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3688"/>
         <source>&lt;b&gt;Split view&lt;/b&gt;&lt;p&gt;Add a split to the view.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3696"/>
+        <location filename="../ViewManager/ViewManager.py" line="3694"/>
         <source>Arrange horizontally</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3696"/>
+        <location filename="../ViewManager/ViewManager.py" line="3694"/>
         <source>Arrange &amp;horizontally</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3698"/>
+        <source>Arrange the splitted views horizontally</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3700"/>
-        <source>Arrange the splitted views horizontally</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3702"/>
         <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3711"/>
+        <location filename="../ViewManager/ViewManager.py" line="3709"/>
         <source>Remove split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3711"/>
+        <location filename="../ViewManager/ViewManager.py" line="3709"/>
         <source>&amp;Remove split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3714"/>
+        <source>Remove the current split</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3716"/>
-        <source>Remove the current split</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3718"/>
         <source>&lt;b&gt;Remove split&lt;/b&gt;&lt;p&gt;Remove the current split.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3726"/>
+        <location filename="../ViewManager/ViewManager.py" line="3724"/>
         <source>Next split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3726"/>
+        <location filename="../ViewManager/ViewManager.py" line="3724"/>
         <source>&amp;Next split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3726"/>
+        <location filename="../ViewManager/ViewManager.py" line="3724"/>
         <source>Ctrl+Alt+N</source>
         <comment>View|Next split</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3731"/>
+        <source>Move to the next split</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3733"/>
-        <source>Move to the next split</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3735"/>
         <source>&lt;b&gt;Next split&lt;/b&gt;&lt;p&gt;Move to the next split.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3743"/>
+        <location filename="../ViewManager/ViewManager.py" line="3741"/>
         <source>Previous split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3743"/>
+        <location filename="../ViewManager/ViewManager.py" line="3741"/>
         <source>&amp;Previous split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3743"/>
+        <location filename="../ViewManager/ViewManager.py" line="3741"/>
         <source>Ctrl+Alt+P</source>
         <comment>View|Previous split</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3747"/>
+        <source>Move to the previous split</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3749"/>
-        <source>Move to the previous split</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3751"/>
         <source>&lt;b&gt;Previous split&lt;/b&gt;&lt;p&gt;Move to the previous split.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3835"/>
+        <location filename="../ViewManager/ViewManager.py" line="3833"/>
         <source>&amp;View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3872"/>
+        <location filename="../ViewManager/ViewManager.py" line="3870"/>
         <source>View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3906"/>
+        <source>Start Macro Recording</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3900"/>
+        <source>S&amp;tart Macro Recording</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3908"/>
-        <source>Start Macro Recording</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3902"/>
-        <source>S&amp;tart Macro Recording</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3910"/>
         <source>&lt;b&gt;Start Macro Recording&lt;/b&gt;&lt;p&gt;Start recording editor commands into a new macro.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3920"/>
+        <source>Stop Macro Recording</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3916"/>
+        <source>Sto&amp;p Macro Recording</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3922"/>
-        <source>Stop Macro Recording</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3918"/>
-        <source>Sto&amp;p Macro Recording</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3924"/>
         <source>&lt;b&gt;Stop Macro Recording&lt;/b&gt;&lt;p&gt;Stop recording editor commands into a new macro.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3934"/>
+        <source>Run Macro</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3930"/>
+        <source>&amp;Run Macro</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3936"/>
-        <source>Run Macro</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3932"/>
-        <source>&amp;Run Macro</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3938"/>
         <source>&lt;b&gt;Run Macro&lt;/b&gt;&lt;p&gt;Run a previously recorded editor macro.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3948"/>
+        <source>Delete Macro</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3944"/>
+        <source>&amp;Delete Macro</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3950"/>
-        <source>Delete Macro</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3946"/>
-        <source>&amp;Delete Macro</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3952"/>
         <source>&lt;b&gt;Delete Macro&lt;/b&gt;&lt;p&gt;Delete a previously recorded editor macro.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3962"/>
+        <source>Load Macro</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3958"/>
+        <source>&amp;Load Macro</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3964"/>
-        <source>Load Macro</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3960"/>
-        <source>&amp;Load Macro</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3966"/>
         <source>&lt;b&gt;Load Macro&lt;/b&gt;&lt;p&gt;Load an editor macro from a file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3976"/>
+        <source>Save Macro</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3972"/>
+        <source>&amp;Save Macro</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3978"/>
-        <source>Save Macro</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3974"/>
-        <source>&amp;Save Macro</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3980"/>
         <source>&lt;b&gt;Save Macro&lt;/b&gt;&lt;p&gt;Save a previously recorded editor macro to a file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3996"/>
+        <location filename="../ViewManager/ViewManager.py" line="3994"/>
         <source>&amp;Macros</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4020"/>
+        <source>Toggle Bookmark</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <source>&amp;Toggle Bookmark</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <source>Alt+Ctrl+T</source>
+        <comment>Bookmark|Toggle</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4022"/>
-        <source>Toggle Bookmark</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4014"/>
-        <source>&amp;Toggle Bookmark</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4014"/>
-        <source>Alt+Ctrl+T</source>
-        <comment>Bookmark|Toggle</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4024"/>
         <source>&lt;b&gt;Toggle Bookmark&lt;/b&gt;&lt;p&gt;Toggle a bookmark at the current line of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4039"/>
+        <source>Next Bookmark</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4031"/>
+        <source>&amp;Next Bookmark</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4031"/>
+        <source>Ctrl+PgDown</source>
+        <comment>Bookmark|Next</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4041"/>
-        <source>Next Bookmark</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4033"/>
-        <source>&amp;Next Bookmark</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4033"/>
-        <source>Ctrl+PgDown</source>
-        <comment>Bookmark|Next</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4043"/>
         <source>&lt;b&gt;Next Bookmark&lt;/b&gt;&lt;p&gt;Go to next bookmark of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4057"/>
+        <source>Previous Bookmark</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4049"/>
+        <source>&amp;Previous Bookmark</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4049"/>
+        <source>Ctrl+PgUp</source>
+        <comment>Bookmark|Previous</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4059"/>
-        <source>Previous Bookmark</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4051"/>
-        <source>&amp;Previous Bookmark</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4051"/>
-        <source>Ctrl+PgUp</source>
-        <comment>Bookmark|Previous</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4061"/>
         <source>&lt;b&gt;Previous Bookmark&lt;/b&gt;&lt;p&gt;Go to previous bookmark of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4074"/>
+        <source>Clear Bookmarks</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <source>&amp;Clear Bookmarks</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <source>Alt+Ctrl+C</source>
+        <comment>Bookmark|Clear</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4076"/>
-        <source>Clear Bookmarks</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4069"/>
-        <source>&amp;Clear Bookmarks</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4069"/>
-        <source>Alt+Ctrl+C</source>
-        <comment>Bookmark|Clear</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4078"/>
         <source>&lt;b&gt;Clear Bookmarks&lt;/b&gt;&lt;p&gt;Clear bookmarks of all editors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4090"/>
+        <source>Goto Syntax Error</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4084"/>
+        <source>&amp;Goto Syntax Error</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4092"/>
-        <source>Goto Syntax Error</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4086"/>
-        <source>&amp;Goto Syntax Error</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4094"/>
         <source>&lt;b&gt;Goto Syntax Error&lt;/b&gt;&lt;p&gt;Go to next syntax error of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4105"/>
+        <source>Clear Syntax Errors</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4100"/>
+        <source>Clear &amp;Syntax Errors</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4107"/>
-        <source>Clear Syntax Errors</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4102"/>
-        <source>Clear &amp;Syntax Errors</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4109"/>
         <source>&lt;b&gt;Clear Syntax Errors&lt;/b&gt;&lt;p&gt;Clear syntax errors of all editors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4124"/>
+        <location filename="../ViewManager/ViewManager.py" line="4122"/>
         <source>Next warning message</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4118"/>
+        <location filename="../ViewManager/ViewManager.py" line="4116"/>
         <source>&amp;Next warning message</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4143"/>
+        <location filename="../ViewManager/ViewManager.py" line="4141"/>
         <source>Previous warning message</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4135"/>
+        <location filename="../ViewManager/ViewManager.py" line="4133"/>
         <source>&amp;Previous warning message</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4161"/>
+        <location filename="../ViewManager/ViewManager.py" line="4159"/>
         <source>Clear Warning Messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4154"/>
+        <location filename="../ViewManager/ViewManager.py" line="4152"/>
         <source>Clear &amp;Warning Messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4175"/>
+        <source>Next uncovered line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4169"/>
+        <source>&amp;Next uncovered line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4177"/>
-        <source>Next uncovered line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4171"/>
-        <source>&amp;Next uncovered line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4179"/>
         <source>&lt;b&gt;Next uncovered line&lt;/b&gt;&lt;p&gt;Go to next line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4194"/>
+        <source>Previous uncovered line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4186"/>
+        <source>&amp;Previous uncovered line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4196"/>
-        <source>Previous uncovered line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4188"/>
-        <source>&amp;Previous uncovered line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4198"/>
         <source>&lt;b&gt;Previous uncovered line&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4212"/>
+        <source>Next Task</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4206"/>
+        <source>&amp;Next Task</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4214"/>
-        <source>Next Task</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4208"/>
-        <source>&amp;Next Task</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4216"/>
         <source>&lt;b&gt;Next Task&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a task.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4229"/>
+        <source>Previous Task</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4222"/>
+        <source>&amp;Previous Task</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4231"/>
-        <source>Previous Task</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4224"/>
-        <source>&amp;Previous Task</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4233"/>
         <source>&lt;b&gt;Previous Task&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a task.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4287"/>
+        <location filename="../ViewManager/ViewManager.py" line="4285"/>
         <source>&amp;Bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4333"/>
+        <location filename="../ViewManager/ViewManager.py" line="4331"/>
         <source>Bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4366"/>
+        <location filename="../ViewManager/ViewManager.py" line="4364"/>
         <source>Shift+F7</source>
         <comment>Spelling|Spell Check</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4375"/>
+        <location filename="../ViewManager/ViewManager.py" line="4373"/>
         <source>Perform spell check of current editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4385"/>
+        <location filename="../ViewManager/ViewManager.py" line="4383"/>
         <source>Automatic spell checking</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4385"/>
+        <location filename="../ViewManager/ViewManager.py" line="4383"/>
         <source>&amp;Automatic spell checking</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4391"/>
+        <source>(De-)Activate automatic spell checking</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4393"/>
-        <source>(De-)Activate automatic spell checking</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4395"/>
         <source>&lt;b&gt;Automatic spell checking&lt;/b&gt;&lt;p&gt;Activate or deactivate the automatic spell checking function of all editors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4462"/>
+        <location filename="../ViewManager/ViewManager.py" line="4460"/>
         <source>Spelling</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4485"/>
+        <location filename="../ViewManager/ViewManager.py" line="4483"/>
         <source>Open files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4529"/>
+        <location filename="../ViewManager/ViewManager.py" line="4527"/>
         <source>File Modified</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4529"/>
+        <location filename="../ViewManager/ViewManager.py" line="4527"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has unsaved changes.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4928"/>
+        <location filename="../ViewManager/ViewManager.py" line="4926"/>
         <source>Line: {0:5}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4934"/>
+        <location filename="../ViewManager/ViewManager.py" line="4932"/>
         <source>Pos: {0:5}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5373"/>
+        <location filename="../ViewManager/ViewManager.py" line="5371"/>
         <source>&amp;Clear</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5367"/>
+        <location filename="../ViewManager/ViewManager.py" line="5365"/>
         <source>&amp;Add</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5370"/>
+        <location filename="../ViewManager/ViewManager.py" line="5368"/>
         <source>&amp;Edit...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3202"/>
+        <location filename="../ViewManager/ViewManager.py" line="3200"/>
         <source>Goto Last Edit Location</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3191"/>
+        <location filename="../ViewManager/ViewManager.py" line="3189"/>
         <source>Goto Last &amp;Edit Location</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3191"/>
+        <location filename="../ViewManager/ViewManager.py" line="3189"/>
         <source>Ctrl+Shift+G</source>
         <comment>Search|Goto Last Edit Location</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3205"/>
+        <location filename="../ViewManager/ViewManager.py" line="3203"/>
         <source>&lt;b&gt;Goto Last Edit Location&lt;/b&gt;&lt;p&gt;Go to the location of the last edit in the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3214"/>
+        <location filename="../ViewManager/ViewManager.py" line="3212"/>
         <source>Goto Previous Method or Class</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3214"/>
+        <location filename="../ViewManager/ViewManager.py" line="3212"/>
         <source>Ctrl+Shift+Up</source>
         <comment>Search|Goto Previous Method or Class</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3224"/>
+        <location filename="../ViewManager/ViewManager.py" line="3222"/>
         <source>Go to the previous method or class definition</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3228"/>
+        <location filename="../ViewManager/ViewManager.py" line="3226"/>
         <source>&lt;b&gt;Goto Previous Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the previous method or class definition and highlights the name.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3238"/>
+        <location filename="../ViewManager/ViewManager.py" line="3236"/>
         <source>Goto Next Method or Class</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3238"/>
+        <location filename="../ViewManager/ViewManager.py" line="3236"/>
         <source>Ctrl+Shift+Down</source>
         <comment>Search|Goto Next Method or Class</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3246"/>
+        <source>Go to the next method or class definition</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3248"/>
-        <source>Go to the next method or class definition</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3250"/>
         <source>&lt;b&gt;Goto Next Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the next method or class definition and highlights the name.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3759"/>
+        <location filename="../ViewManager/ViewManager.py" line="3757"/>
         <source>Preview</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3762"/>
+        <source>Preview the current file in the web browser</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3764"/>
-        <source>Preview the current file in the web browser</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3766"/>
         <source>&lt;b&gt;Preview&lt;/b&gt;&lt;p&gt;This opens the web browser with a preview of the current file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1490"/>
+        <location filename="../ViewManager/ViewManager.py" line="1489"/>
         <source>Meta+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1503"/>
+        <location filename="../ViewManager/ViewManager.py" line="1502"/>
         <source>Meta+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1515"/>
+        <location filename="../ViewManager/ViewManager.py" line="1514"/>
         <source>Meta+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1527"/>
+        <location filename="../ViewManager/ViewManager.py" line="1526"/>
         <source>Meta+N</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1588"/>
+        <location filename="../ViewManager/ViewManager.py" line="1587"/>
         <source>Move to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1604"/>
+        <location filename="../ViewManager/ViewManager.py" line="1603"/>
         <source>Move to start of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1621"/>
+        <location filename="../ViewManager/ViewManager.py" line="1620"/>
         <source>Move to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1629"/>
+        <location filename="../ViewManager/ViewManager.py" line="1628"/>
         <source>Meta+E</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1697"/>
+        <location filename="../ViewManager/ViewManager.py" line="1696"/>
         <source>Meta+V</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1703"/>
+        <location filename="../ViewManager/ViewManager.py" line="1702"/>
         <source>Move to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1720"/>
+        <location filename="../ViewManager/ViewManager.py" line="1719"/>
         <source>Move to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1765"/>
+        <location filename="../ViewManager/ViewManager.py" line="1764"/>
         <source>Meta+Shift+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1780"/>
+        <location filename="../ViewManager/ViewManager.py" line="1779"/>
         <source>Meta+Shift+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1795"/>
+        <location filename="../ViewManager/ViewManager.py" line="1794"/>
         <source>Meta+Shift+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1810"/>
+        <location filename="../ViewManager/ViewManager.py" line="1809"/>
         <source>Meta+Shift+N</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1878"/>
+        <location filename="../ViewManager/ViewManager.py" line="1877"/>
         <source>Extend selection to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1896"/>
+        <location filename="../ViewManager/ViewManager.py" line="1895"/>
         <source>Extend selection to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1904"/>
+        <location filename="../ViewManager/ViewManager.py" line="1903"/>
         <source>Meta+Shift+E</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1961"/>
+        <location filename="../ViewManager/ViewManager.py" line="1960"/>
         <source>Meta+Shift+V</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1967"/>
+        <location filename="../ViewManager/ViewManager.py" line="1966"/>
         <source>Extend selection to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1975"/>
+        <location filename="../ViewManager/ViewManager.py" line="1974"/>
         <source>Ctrl+Shift+Up</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1984"/>
+        <location filename="../ViewManager/ViewManager.py" line="1983"/>
         <source>Extend selection to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1992"/>
+        <location filename="../ViewManager/ViewManager.py" line="1991"/>
         <source>Ctrl+Shift+Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2010"/>
+        <location filename="../ViewManager/ViewManager.py" line="2009"/>
         <source>Meta+H</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2019"/>
+        <location filename="../ViewManager/ViewManager.py" line="2018"/>
         <source>Delete previous character if not at start of line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2040"/>
+        <location filename="../ViewManager/ViewManager.py" line="2039"/>
         <source>Meta+D</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2084"/>
+        <location filename="../ViewManager/ViewManager.py" line="2083"/>
         <source>Meta+K</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2194"/>
+        <location filename="../ViewManager/ViewManager.py" line="2192"/>
         <source>Move to end of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2211"/>
+        <location filename="../ViewManager/ViewManager.py" line="2209"/>
         <source>Extend selection to end of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2253"/>
+        <location filename="../ViewManager/ViewManager.py" line="2251"/>
         <source>Meta+Alt+Shift+N</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2268"/>
+        <location filename="../ViewManager/ViewManager.py" line="2266"/>
         <source>Meta+Alt+Shift+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2286"/>
+        <location filename="../ViewManager/ViewManager.py" line="2284"/>
         <source>Meta+Alt+Shift+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2304"/>
+        <location filename="../ViewManager/ViewManager.py" line="2302"/>
         <source>Meta+Alt+Shift+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2310"/>
+        <location filename="../ViewManager/ViewManager.py" line="2308"/>
         <source>Extend rectangular selection to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2329"/>
+        <location filename="../ViewManager/ViewManager.py" line="2327"/>
         <source>Extend rectangular selection to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2339"/>
+        <location filename="../ViewManager/ViewManager.py" line="2337"/>
         <source>Meta+Alt+Shift+E</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2342"/>
+        <location filename="../ViewManager/ViewManager.py" line="2340"/>
         <source>Alt+Shift+End</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2363"/>
+        <location filename="../ViewManager/ViewManager.py" line="2361"/>
         <source>Alt+Shift+PgDown</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2375"/>
+        <location filename="../ViewManager/ViewManager.py" line="2373"/>
         <source>Meta+Alt+Shift+V</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2395"/>
+        <location filename="../ViewManager/ViewManager.py" line="2393"/>
         <source>Scroll to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2410"/>
+        <location filename="../ViewManager/ViewManager.py" line="2408"/>
         <source>Scroll to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2425"/>
+        <location filename="../ViewManager/ViewManager.py" line="2423"/>
         <source>Scroll vertically to center current line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2433"/>
+        <location filename="../ViewManager/ViewManager.py" line="2431"/>
         <source>Meta+L</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2440"/>
+        <location filename="../ViewManager/ViewManager.py" line="2438"/>
         <source>Move to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2455"/>
+        <location filename="../ViewManager/ViewManager.py" line="2453"/>
         <source>Extend selection to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2471"/>
+        <location filename="../ViewManager/ViewManager.py" line="2469"/>
         <source>Move to end of previous word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2483"/>
+        <location filename="../ViewManager/ViewManager.py" line="2481"/>
         <source>Extend selection to end of previous word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2495"/>
+        <location filename="../ViewManager/ViewManager.py" line="2493"/>
         <source>Move to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2503"/>
+        <location filename="../ViewManager/ViewManager.py" line="2501"/>
         <source>Meta+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2510"/>
+        <location filename="../ViewManager/ViewManager.py" line="2508"/>
         <source>Extend selection to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2521"/>
+        <location filename="../ViewManager/ViewManager.py" line="2519"/>
         <source>Meta+Shift+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2528"/>
+        <location filename="../ViewManager/ViewManager.py" line="2526"/>
         <source>Extend rectangular selection to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2538"/>
+        <location filename="../ViewManager/ViewManager.py" line="2536"/>
         <source>Meta+Alt+Shift+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2546"/>
+        <location filename="../ViewManager/ViewManager.py" line="2544"/>
         <source>Extend selection to start of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2565"/>
+        <location filename="../ViewManager/ViewManager.py" line="2563"/>
         <source>Move to start of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2579"/>
+        <location filename="../ViewManager/ViewManager.py" line="2577"/>
         <source>Extend selection to start of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2594"/>
+        <location filename="../ViewManager/ViewManager.py" line="2592"/>
         <source>Move to first visible character in display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2611"/>
+        <location filename="../ViewManager/ViewManager.py" line="2609"/>
         <source>Extend selection to first visible character in display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2628"/>
+        <location filename="../ViewManager/ViewManager.py" line="2626"/>
         <source>Move to end of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2642"/>
+        <location filename="../ViewManager/ViewManager.py" line="2640"/>
         <source>Extend selection to end of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2657"/>
+        <location filename="../ViewManager/ViewManager.py" line="2655"/>
         <source>Stuttered move up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2669"/>
+        <location filename="../ViewManager/ViewManager.py" line="2667"/>
         <source>Stuttered extend selection up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2682"/>
+        <location filename="../ViewManager/ViewManager.py" line="2680"/>
         <source>Stuttered move down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2694"/>
+        <location filename="../ViewManager/ViewManager.py" line="2692"/>
         <source>Stuttered extend selection down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2707"/>
+        <location filename="../ViewManager/ViewManager.py" line="2705"/>
         <source>Delete right to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2715"/>
+        <location filename="../ViewManager/ViewManager.py" line="2713"/>
         <source>Alt+Del</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2722"/>
+        <location filename="../ViewManager/ViewManager.py" line="2720"/>
         <source>Move selected lines up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2734"/>
+        <location filename="../ViewManager/ViewManager.py" line="2732"/>
         <source>Move selected lines down one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2348"/>
+        <location filename="../ViewManager/ViewManager.py" line="2346"/>
         <source>Alt+Shift+PgUp</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1185"/>
+        <location filename="../ViewManager/ViewManager.py" line="1184"/>
         <source>Toggle Comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1185"/>
+        <location filename="../ViewManager/ViewManager.py" line="1184"/>
         <source>Ctrl+Shift+M</source>
         <comment>Edit|Toggle Comment</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1193"/>
+        <location filename="../ViewManager/ViewManager.py" line="1192"/>
         <source>Toggle the comment of the current line, selection or comment block</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1197"/>
+        <location filename="../ViewManager/ViewManager.py" line="1196"/>
         <source>&lt;b&gt;Toggle Comment&lt;/b&gt;&lt;p&gt;If the current line does not start with a block comment, the current line or selection is commented. If it is already commented, this comment block is uncommented. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3525"/>
         <source>Zoom reset</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3525"/>
         <source>Zoom &amp;reset</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3525"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3533"/>
+        <source>Reset the zoom of the text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3535"/>
-        <source>Reset the zoom of the text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3537"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3487"/>
         <source>Zoom In</source>
         <comment>View|Zoom in</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3508"/>
+        <location filename="../ViewManager/ViewManager.py" line="3506"/>
         <source>Zoom Out</source>
         <comment>View|Zoom out</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="764"/>
+        <location filename="../ViewManager/ViewManager.py" line="763"/>
         <source>Save a&amp;ll</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4246"/>
+        <source>Next Change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4240"/>
+        <source>&amp;Next Change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4248"/>
-        <source>Next Change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4242"/>
-        <source>&amp;Next Change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4250"/>
         <source>&lt;b&gt;Next Change&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4264"/>
+        <source>Previous Change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4257"/>
+        <source>&amp;Previous Change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4266"/>
-        <source>Previous Change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4259"/>
-        <source>&amp;Previous Change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4268"/>
         <source>&lt;b&gt;Previous Change&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4366"/>
+        <location filename="../ViewManager/ViewManager.py" line="4364"/>
         <source>Check spelling</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4366"/>
+        <location filename="../ViewManager/ViewManager.py" line="4364"/>
         <source>Check &amp;spelling...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4377"/>
+        <location filename="../ViewManager/ViewManager.py" line="4375"/>
         <source>&lt;b&gt;Check spelling&lt;/b&gt;&lt;p&gt;Perform a spell check of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4424"/>
+        <source>Edit Dictionary</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4426"/>
-        <source>Edit Dictionary</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4428"/>
         <source>Project Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4431"/>
+        <location filename="../ViewManager/ViewManager.py" line="4429"/>
         <source>Project Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4436"/>
+        <location filename="../ViewManager/ViewManager.py" line="4434"/>
         <source>User Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4439"/>
+        <location filename="../ViewManager/ViewManager.py" line="4437"/>
         <source>User Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6639"/>
+        <location filename="../ViewManager/ViewManager.py" line="6637"/>
         <source>Edit Spelling Dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6614"/>
+        <location filename="../ViewManager/ViewManager.py" line="6612"/>
         <source>Editing {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6596"/>
+        <location filename="../ViewManager/ViewManager.py" line="6594"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6626"/>
+        <location filename="../ViewManager/ViewManager.py" line="6624"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6639"/>
+        <location filename="../ViewManager/ViewManager.py" line="6637"/>
         <source>The spelling dictionary was saved successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2957"/>
+        <location filename="../ViewManager/ViewManager.py" line="2955"/>
         <source>Search current word forward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2957"/>
+        <location filename="../ViewManager/ViewManager.py" line="2955"/>
         <source>Ctrl+.</source>
         <comment>Search|Search current word forward</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2968"/>
+        <location filename="../ViewManager/ViewManager.py" line="2966"/>
         <source>Search next occurrence of the current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2971"/>
+        <location filename="../ViewManager/ViewManager.py" line="2969"/>
         <source>&lt;b&gt;Search current word forward&lt;/b&gt;&lt;p&gt;Search the next occurrence of the current word of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2980"/>
+        <location filename="../ViewManager/ViewManager.py" line="2978"/>
         <source>Search current word backward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2980"/>
+        <location filename="../ViewManager/ViewManager.py" line="2978"/>
         <source>Ctrl+,</source>
         <comment>Search|Search current word backward</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2991"/>
+        <location filename="../ViewManager/ViewManager.py" line="2989"/>
         <source>Search previous occurrence of the current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2994"/>
+        <location filename="../ViewManager/ViewManager.py" line="2992"/>
         <source>&lt;b&gt;Search current word backward&lt;/b&gt;&lt;p&gt;Search the previous occurrence of the current word of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3301"/>
+        <location filename="../ViewManager/ViewManager.py" line="3299"/>
         <source>Search in Open Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3301"/>
+        <location filename="../ViewManager/ViewManager.py" line="3299"/>
         <source>Search in Open Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3301"/>
+        <location filename="../ViewManager/ViewManager.py" line="3299"/>
         <source>Meta+Ctrl+Alt+F</source>
         <comment>Search|Search Open Files</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3310"/>
+        <source>Search for a text in open files</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3312"/>
-        <source>Search for a text in open files</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3314"/>
         <source>&lt;b&gt;Search in Open Files&lt;/b&gt;&lt;p&gt;Search for some text in the currently opened files. A dialog is shown to enter the searchtext and options for the search and to display the result.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3324"/>
+        <location filename="../ViewManager/ViewManager.py" line="3322"/>
         <source>Replace in Open Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3324"/>
+        <location filename="../ViewManager/ViewManager.py" line="3322"/>
         <source>Meta+Ctrl+Alt+R</source>
         <comment>Search|Replace in Open Files</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3332"/>
+        <source>Search for a text in open files and replace it</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3334"/>
-        <source>Search for a text in open files and replace it</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3336"/>
         <source>&lt;b&gt;Replace in Open Files&lt;/b&gt;&lt;p&gt;Search for some text in the currently opened files and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and to display the result.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3324"/>
+        <location filename="../ViewManager/ViewManager.py" line="3322"/>
         <source>Replace in Open Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1450"/>
+        <location filename="../ViewManager/ViewManager.py" line="1449"/>
         <source>Sort</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1450"/>
+        <location filename="../ViewManager/ViewManager.py" line="1449"/>
         <source>Ctrl+Alt+S</source>
         <comment>Edit|Sort</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1457"/>
+        <location filename="../ViewManager/ViewManager.py" line="1456"/>
         <source>Sort the lines containing the rectangular selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1460"/>
+        <location filename="../ViewManager/ViewManager.py" line="1459"/>
         <source>&lt;b&gt;Sort&lt;/b&gt;&lt;p&gt;Sort the lines spanned by a rectangular selection based on the selection ignoring leading and trailing whitespace.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4955"/>
+        <location filename="../ViewManager/ViewManager.py" line="4953"/>
         <source>Language: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4962"/>
+        <location filename="../ViewManager/ViewManager.py" line="4960"/>
         <source>EOL Mode: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3643"/>
+        <location filename="../ViewManager/ViewManager.py" line="3641"/>
         <source>New Document View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3643"/>
+        <location filename="../ViewManager/ViewManager.py" line="3641"/>
         <source>New &amp;Document View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3646"/>
+        <source>Open a new view of the current document</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3648"/>
-        <source>Open a new view of the current document</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3650"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3660"/>
+        <location filename="../ViewManager/ViewManager.py" line="3658"/>
         <source>New Document View (with new split)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3667"/>
+        <location filename="../ViewManager/ViewManager.py" line="3665"/>
         <source>Open a new view of the current document in a new split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3670"/>
+        <location filename="../ViewManager/ViewManager.py" line="3668"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document in a new split. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4126"/>
+        <location filename="../ViewManager/ViewManager.py" line="4124"/>
         <source>&lt;b&gt;Next warning message&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4145"/>
+        <location filename="../ViewManager/ViewManager.py" line="4143"/>
         <source>&lt;b&gt;Previous warning message&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4163"/>
+        <location filename="../ViewManager/ViewManager.py" line="4161"/>
         <source>&lt;b&gt;Clear Warning Messages&lt;/b&gt;&lt;p&gt;Clear pyflakes warning messages of all editors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2778"/>
+        <location filename="../ViewManager/ViewManager.py" line="2776"/>
         <source>Complete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1327"/>
+        <location filename="../ViewManager/ViewManager.py" line="1326"/>
         <source>&amp;Complete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1327"/>
+        <location filename="../ViewManager/ViewManager.py" line="1326"/>
         <source>Ctrl+Space</source>
         <comment>Edit|Complete</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1334"/>
+        <location filename="../ViewManager/ViewManager.py" line="1333"/>
         <source>Complete current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1336"/>
+        <location filename="../ViewManager/ViewManager.py" line="1335"/>
         <source>&lt;b&gt;Complete&lt;/b&gt;&lt;p&gt;Performs a completion of the word containing the cursor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1345"/>
+        <location filename="../ViewManager/ViewManager.py" line="1344"/>
         <source>Complete from Document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1345"/>
+        <location filename="../ViewManager/ViewManager.py" line="1344"/>
         <source>Ctrl+Shift+Space</source>
         <comment>Edit|Complete from Document</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1355"/>
+        <location filename="../ViewManager/ViewManager.py" line="1354"/>
         <source>Complete current word from Document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1358"/>
+        <location filename="../ViewManager/ViewManager.py" line="1357"/>
         <source>&lt;b&gt;Complete from Document&lt;/b&gt;&lt;p&gt;Performs a completion from document of the word containing the cursor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1368"/>
+        <location filename="../ViewManager/ViewManager.py" line="1367"/>
         <source>Complete from APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1368"/>
+        <location filename="../ViewManager/ViewManager.py" line="1367"/>
         <source>Ctrl+Alt+Space</source>
         <comment>Edit|Complete from APIs</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1378"/>
+        <location filename="../ViewManager/ViewManager.py" line="1377"/>
         <source>Complete current word from APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1381"/>
+        <location filename="../ViewManager/ViewManager.py" line="1380"/>
         <source>&lt;b&gt;Complete from APIs&lt;/b&gt;&lt;p&gt;Performs a completion from APIs of the word containing the cursor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1391"/>
+        <location filename="../ViewManager/ViewManager.py" line="1390"/>
         <source>Complete from Document and APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1391"/>
+        <location filename="../ViewManager/ViewManager.py" line="1390"/>
         <source>Alt+Shift+Space</source>
         <comment>Edit|Complete from Document and APIs</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1401"/>
+        <location filename="../ViewManager/ViewManager.py" line="1400"/>
         <source>Complete current word from Document and APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1404"/>
+        <location filename="../ViewManager/ViewManager.py" line="1403"/>
         <source>&lt;b&gt;Complete from Document and APIs&lt;/b&gt;&lt;p&gt;Performs a completion from document and APIs of the word containing the cursor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1414"/>
+        <location filename="../ViewManager/ViewManager.py" line="1413"/>
         <source>Meta+Alt+Space</source>
         <comment>Edit|Calltip</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="748"/>
+        <location filename="../ViewManager/ViewManager.py" line="747"/>
         <source>Save Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="748"/>
+        <location filename="../ViewManager/ViewManager.py" line="747"/>
         <source>Save &amp;Copy...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="753"/>
+        <location filename="../ViewManager/ViewManager.py" line="752"/>
         <source>Save a copy of the current file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="755"/>
+        <location filename="../ViewManager/ViewManager.py" line="754"/>
         <source>&lt;b&gt;Save Copy&lt;/b&gt;&lt;p&gt;Save a copy of the contents of current editor window. The file can be entered in a file selection dialog.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -80880,141 +80885,141 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3022"/>
+        <location filename="../ViewManager/ViewManager.py" line="3020"/>
         <source>Replace and Search</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3022"/>
+        <location filename="../ViewManager/ViewManager.py" line="3020"/>
         <source>Meta+R</source>
         <comment>Search|Replace and Search</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3032"/>
+        <location filename="../ViewManager/ViewManager.py" line="3030"/>
         <source>Replace the found text and search the next occurrence</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3035"/>
+        <location filename="../ViewManager/ViewManager.py" line="3033"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3046"/>
+        <location filename="../ViewManager/ViewManager.py" line="3044"/>
         <source>Replace Occurrence</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3046"/>
+        <location filename="../ViewManager/ViewManager.py" line="3044"/>
         <source>Ctrl+Meta+R</source>
         <comment>Search|Replace Occurrence</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3054"/>
+        <source>Replace the found text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3056"/>
-        <source>Replace the found text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3058"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3068"/>
+        <location filename="../ViewManager/ViewManager.py" line="3066"/>
         <source>Replace All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3068"/>
+        <location filename="../ViewManager/ViewManager.py" line="3066"/>
         <source>Shift+Meta+R</source>
         <comment>Search|Replace All</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3076"/>
+        <source>Replace search text occurrences</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3078"/>
-        <source>Replace search text occurrences</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3080"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1432"/>
+        <location filename="../ViewManager/ViewManager.py" line="1431"/>
         <source>Code Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1432"/>
+        <location filename="../ViewManager/ViewManager.py" line="1431"/>
         <source>Ctrl+Alt+I</source>
         <comment>Edit|Code Info</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1440"/>
+        <location filename="../ViewManager/ViewManager.py" line="1439"/>
         <source>Show Code Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1442"/>
+        <location filename="../ViewManager/ViewManager.py" line="1441"/>
         <source>&lt;b&gt;Code Info&lt;/b&gt;&lt;p&gt;Show code information based on the cursor position.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3614"/>
+        <source>Clear all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3610"/>
+        <source>Clear &amp;all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3616"/>
-        <source>Clear all folds</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3612"/>
-        <source>Clear &amp;all folds</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3618"/>
         <source>&lt;b&gt;Clear all folds&lt;/b&gt;&lt;p&gt;Clear all folds of the current editor, i.e. ensure that all lines are displayed unfolded.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2150"/>
+        <location filename="../ViewManager/ViewManager.py" line="2148"/>
         <source>Reverse selected lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2150"/>
+        <location filename="../ViewManager/ViewManager.py" line="2148"/>
         <source>Meta+Alt+R</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3776"/>
+        <location filename="../ViewManager/ViewManager.py" line="3774"/>
         <source>Python AST Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3779"/>
+        <source>Show the AST for the current Python file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3781"/>
-        <source>Show the AST for the current Python file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3783"/>
         <source>&lt;b&gt;Python AST Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the AST of the current Python source file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3793"/>
+        <location filename="../ViewManager/ViewManager.py" line="3791"/>
         <source>Python Disassembly Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3798"/>
+        <source>Show the Disassembly for the current Python file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3800"/>
-        <source>Show the Disassembly for the current Python file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3802"/>
         <source>&lt;b&gt;Python Disassembly Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the Disassembly of the current Python source file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -83868,7 +83873,7 @@
 <context>
     <name>WebBrowserTools</name>
     <message>
-        <location filename="../WebBrowser/Tools/WebBrowserTools.py" line="249"/>
+        <location filename="../WebBrowser/Tools/WebBrowserTools.py" line="251"/>
         <source>&lt;unknown&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -86534,57 +86539,57 @@
     <name>YandexEngine</name>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="38"/>
-        <source>Invalid API key.</source>
+        <source>Yandex: Invalid API key.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="39"/>
-        <source>API key has been blocked.</source>
+        <source>Yandex: API key has been blocked.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="40"/>
-        <source>Daily limit for requests has been reached.</source>
+        <source>Yandex: Daily limit for requests has been reached.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="41"/>
-        <source>Daily limit for the volume of translated text reached.</source>
+        <source>Yandex: Daily limit for the volume of translated text reached.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="43"/>
-        <source>Text size exceeds the maximum.</source>
+        <source>Yandex: Text size exceeds the maximum.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="44"/>
-        <source>Text could not be translated.</source>
+        <source>Yandex: Text could not be translated.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="45"/>
-        <source>The specified translation direction is not supported.</source>
+        <source>Yandex: The specified translation direction is not supported.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="86"/>
-        <source>Only texts up to {0} characters are allowed.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="91"/>
-        <source>A valid Yandex key is required.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="106"/>
-        <source>Invalid response received</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="112"/>
-        <source>Unknown error code ({0}) received.</source>
+        <source>Yandex: Only texts up to {0} characters are allowed.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="109"/>
+        <source>Yandex: Invalid response received</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="115"/>
+        <source>Yandex: Unknown error code ({0}) received.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="94"/>
+        <source>Yandex: A valid key is required.</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -87012,417 +87017,417 @@
 <context>
     <name>pycodestyle</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="24"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="22"/>
         <source>indentation contains mixed spaces and tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="27"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="25"/>
         <source>indentation is not a multiple of four</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="30"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="28"/>
         <source>expected an indented block</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="33"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="31"/>
         <source>unexpected indentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="36"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="34"/>
         <source>indentation is not a multiple of four (comment)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="39"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="37"/>
         <source>expected an indented block (comment)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="42"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="40"/>
         <source>unexpected indentation (comment)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="48"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="46"/>
         <source>continuation line indentation is not a multiple of four</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="51"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="49"/>
         <source>continuation line missing indentation or outdented</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="54"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="52"/>
         <source>closing bracket does not match indentation of opening bracket&apos;s line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="58"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="56"/>
         <source>closing bracket does not match visual indentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="61"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="59"/>
         <source>continuation line with same indent as next logical line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="64"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="62"/>
         <source>continuation line over-indented for hanging indent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="67"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="65"/>
         <source>continuation line over-indented for visual indent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="70"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="68"/>
         <source>continuation line under-indented for visual indent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="73"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="71"/>
         <source>visually indented line with same indent as next logical line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="76"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="74"/>
         <source>continuation line unaligned for hanging indent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="79"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="77"/>
         <source>closing bracket is missing indentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="82"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="80"/>
         <source>indentation contains tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="85"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="83"/>
         <source>whitespace after &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="94"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="92"/>
         <source>whitespace before &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="97"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="95"/>
         <source>multiple spaces before operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="100"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="98"/>
         <source>multiple spaces after operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="103"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="101"/>
         <source>tab before operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="106"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="104"/>
         <source>tab after operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="109"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="107"/>
         <source>missing whitespace around operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="112"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="110"/>
         <source>missing whitespace around arithmetic operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="115"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="113"/>
         <source>missing whitespace around bitwise or shift operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="118"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="116"/>
         <source>missing whitespace around modulo operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="121"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="119"/>
         <source>missing whitespace after &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="124"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="122"/>
         <source>multiple spaces after &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="127"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="125"/>
         <source>tab after &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="130"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="128"/>
         <source>unexpected spaces around keyword / parameter equals</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="136"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="134"/>
         <source>at least two spaces before inline comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="139"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="137"/>
         <source>inline comment should start with &apos;# &apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="142"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="140"/>
         <source>block comment should start with &apos;# &apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="145"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="143"/>
         <source>too many leading &apos;#&apos; for block comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="148"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="146"/>
         <source>multiple spaces after keyword</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="151"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="149"/>
         <source>multiple spaces before keyword</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="154"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="152"/>
         <source>tab after keyword</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="157"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="155"/>
         <source>tab before keyword</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="160"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="158"/>
         <source>missing whitespace after keyword</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="163"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="161"/>
         <source>trailing whitespace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="166"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="164"/>
         <source>no newline at end of file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="169"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="167"/>
         <source>blank line contains whitespace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="194"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="192"/>
         <source>too many blank lines ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="181"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="179"/>
         <source>blank lines found after function decorator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="197"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="195"/>
         <source>blank line at end of file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="200"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="198"/>
         <source>multiple imports on one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="203"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="201"/>
         <source>module level import not at top of file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="206"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="204"/>
         <source>line too long ({0} &gt; {1} characters)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="209"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="207"/>
         <source>the backslash is redundant between brackets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="212"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="210"/>
         <source>line break before binary operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="221"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="219"/>
         <source>.has_key() is deprecated, use &apos;in&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="224"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="222"/>
         <source>deprecated form of raising exception</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="227"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="225"/>
         <source>&apos;&lt;&gt;&apos; is deprecated, use &apos;!=&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="230"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="228"/>
         <source>backticks are deprecated, use &apos;repr()&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="239"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="237"/>
         <source>multiple statements on one line (colon)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="242"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="240"/>
         <source>multiple statements on one line (semicolon)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="245"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="243"/>
         <source>statement ends with a semicolon</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="248"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="246"/>
         <source>multiple statements on one line (def)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="254"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="252"/>
         <source>comparison to {0} should be {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="257"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="255"/>
         <source>test for membership should be &apos;not in&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="260"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="258"/>
         <source>test for object identity should be &apos;is not&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="263"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="261"/>
         <source>do not compare types, use &apos;isinstance()&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="269"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="267"/>
         <source>do not assign a lambda expression, use a def</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="272"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="270"/>
         <source>ambiguous variable name &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="275"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="273"/>
         <source>ambiguous class definition &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="278"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="276"/>
         <source>ambiguous function definition &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="281"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="279"/>
         <source>{0}: {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="284"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="282"/>
         <source>{0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="266"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="264"/>
         <source>do not use bare except</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="184"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="182"/>
         <source>expected {0} blank lines after class or function definition, found {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="236"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="234"/>
         <source>&apos;async&apos; and &apos;await&apos; are reserved keywords starting with Python 3.7</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="133"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="131"/>
         <source>missing whitespace around parameter equals</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="175"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="173"/>
         <source>expected {0} blank lines, found {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="188"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="186"/>
         <source>expected {0} blank lines before a nested definition, found {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="215"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="213"/>
         <source>line break after binary operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="233"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="231"/>
         <source>invalid escape sequence &apos;\{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="191"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="189"/>
         <source>too many blank lines ({0}) before a nested definition, expected {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="178"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="176"/>
         <source>too many blank lines ({0}), expected {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="45"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="43"/>
         <source>over-indented</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="218"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="216"/>
         <source>doc line too long ({0} &gt; {1} characters)</source>
         <translation type="unfinished"></translation>
     </message>
--- a/eric6/i18n/eric6_es.ts	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/i18n/eric6_es.ts	Sun Oct 04 16:28:51 2020 +0200
@@ -1,6 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE TS>
-<TS version="2.1" language="es">
+<!DOCTYPE TS><TS version="2.0" language="es" sourcelanguage="">
 <context>
     <name>AboutDialog</name>
     <message>
@@ -1102,72 +1101,72 @@
 <context>
     <name>AnnotationsChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="808"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="806"/>
         <source>missing type annotation for function argument &apos;{0}&apos;</source>
         <translation>falta anotación de tipo para el argumento &apos;{0}&apos; de la función</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="811"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="809"/>
         <source>missing type annotation for &apos;*{0}&apos;</source>
         <translation>falta anotación de tipo para &apos;*{0}&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="814"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="812"/>
         <source>missing type annotation for &apos;**{0}&apos;</source>
         <translation>falta anotación de tipo para &apos;**{0}&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="823"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="821"/>
         <source>missing return type annotation for public function</source>
         <translation>falta anotación de tipo para valor de retorno de función pública</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="826"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="824"/>
         <source>missing return type annotation for protected function</source>
         <translation>falta anotación de tipo para valor de retorno de función protegida</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="829"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="827"/>
         <source>missing return type annotation for private function</source>
         <translation>falta anotación de tipo para valor de retorno de función privada</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="832"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="830"/>
         <source>missing return type annotation for special method</source>
         <translation>falta anotación de tipo para valor de retorno de método especial</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="835"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="833"/>
         <source>missing return type annotation for staticmethod</source>
         <translation>falta anotación de tipo para valor de retorno de método estático</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="838"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="836"/>
         <source>missing return type annotation for classmethod</source>
         <translation>falta anotación de tipo para valor de retorno de método de clase</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="850"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="848"/>
         <source>{0}: {1}</source>
         <translation>{0}: {1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="817"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="815"/>
         <source>missing type annotation for &apos;self&apos; in method</source>
         <translation>falta anotación de tipo para &apos;self&apos; en método</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="820"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="818"/>
         <source>missing type annotation for &apos;cls&apos; in classmethod</source>
         <translation>falta anotación de tipo para &apos;cls&apos; en método de clase</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="842"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="840"/>
         <source>type annotation coverage of {0}% is too low</source>
         <translation>cobertura de anotaciones de tipo de {0} demasiado baja</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="846"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="844"/>
         <source>type annotation is too complex ({0} &gt; {1})</source>
         <translation>anotaciones de tipo demasiado complejas ({0} &gt; {1})</translation>
     </message>
@@ -2070,7 +2069,7 @@
     </message>
     <message>
         <location filename="../WebBrowser/Bookmarks/BookmarksMenu.py" line="171"/>
-        <source>Open in New Tab	Ctrl+LMB</source>
+        <source>Open in New Tab<byte value="x9"/>Ctrl+LMB</source>
         <translation>Abrir en Nueva Pestaña\tCtrl+LMB (botón izquierdo del ratón)</translation>
     </message>
 </context>
@@ -2149,7 +2148,7 @@
     </message>
     <message>
         <location filename="../WebBrowser/Bookmarks/BookmarksToolBar.py" line="91"/>
-        <source>Open in New Tab	Ctrl+LMB</source>
+        <source>Open in New Tab<byte value="x9"/>Ctrl+LMB</source>
         <translation>Abrir en Nueva Pestaña\tCtrl+LMB (botón izquierdo del ratón)</translation>
     </message>
 </context>
@@ -3272,16 +3271,6 @@
         <translation>líneas no comentadas</translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="53"/>
-        <source>Collapse all</source>
-        <translation type="obsolete">Contraer todo</translation>
-    </message>
-    <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="55"/>
-        <source>Expand all</source>
-        <translation type="obsolete">Expandir todo</translation>
-    </message>
-    <message>
         <location filename="../DataViews/CodeMetricsDialog.ui" line="39"/>
         <source>Exclude Files:</source>
         <translation>Excluir Archivos:</translation>
@@ -3309,12 +3298,12 @@
     <message>
         <location filename="../DataViews/CodeMetricsDialog.py" line="53"/>
         <source>Collapse All</source>
-        <translation>Contraer Todo</translation>
+        <translation type="unfinished">Contraer Todo</translation>
     </message>
     <message>
         <location filename="../DataViews/CodeMetricsDialog.py" line="55"/>
         <source>Expand All</source>
-        <translation>Expandir Todo</translation>
+        <translation type="unfinished"></translation>
     </message>
 </context>
 <context>
@@ -3353,7 +3342,7 @@
 <context>
     <name>CodeStyleChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="1130"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="1128"/>
         <source>No message defined for code &apos;{0}&apos;.</source>
         <translation>No hay mensaje definido para el código &apos;{0}&apos;.</translation>
     </message>
@@ -4069,142 +4058,142 @@
 <context>
     <name>CodeStyleFixer</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="858"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="856"/>
         <source>Triple single quotes converted to triple double quotes.</source>
         <translation>Triple comilla simple convertida a triple comilla doble.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="861"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="859"/>
         <source>Introductory quotes corrected to be {0}&quot;&quot;&quot;</source>
         <translation>Comillas introductorias corregidas para ser {0}&quot;&quot;&quot;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="864"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="862"/>
         <source>Single line docstring put on one line.</source>
         <translation>Docstrings de una sola línea puestos en una sola línea.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="867"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="865"/>
         <source>Period added to summary line.</source>
         <translation>Coma añadida a la línea de resumen.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="894"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="892"/>
         <source>Blank line before function/method docstring removed.</source>
         <translation>Línea en blanco antes de docstring de función/método eliminada.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="873"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="871"/>
         <source>Blank line inserted before class docstring.</source>
         <translation>Linea en blanco insertada delante de docstring de clase.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="876"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="874"/>
         <source>Blank line inserted after class docstring.</source>
         <translation>Linea en blanco insertada detrás de docstring.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="879"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="877"/>
         <source>Blank line inserted after docstring summary.</source>
         <translation>Linea en blanco insertada detrás de docstring de resumen.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="882"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="880"/>
         <source>Blank line inserted after last paragraph of docstring.</source>
         <translation>Linea en blanco insertada detrás de último párrafo de docstring.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="885"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="883"/>
         <source>Leading quotes put on separate line.</source>
         <translation>Comillas iniciales puestas en línea separada.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="888"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="886"/>
         <source>Trailing quotes put on separate line.</source>
         <translation>Comillas finales puestas en línea separada.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="891"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="889"/>
         <source>Blank line before class docstring removed.</source>
         <translation>Línea en blanco antes de docstring de clase eliminada.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="897"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="895"/>
         <source>Blank line after class docstring removed.</source>
         <translation>Línea en blanco detrás de docstring eliminada.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="900"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="898"/>
         <source>Blank line after function/method docstring removed.</source>
         <translation>Línea en blanco detrás de docstring de función/método eliminada.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="903"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="901"/>
         <source>Blank line after last paragraph removed.</source>
         <translation>Linea en blanco detrás de último párrafo eliminada.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="906"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="904"/>
         <source>Tab converted to 4 spaces.</source>
         <translation>Tabulador convertido a 4 espacios.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="909"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="907"/>
         <source>Indentation adjusted to be a multiple of four.</source>
         <translation>Indentación ajustada para ser un múltiplo de cuatro.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="912"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="910"/>
         <source>Indentation of continuation line corrected.</source>
         <translation>Indentación de línea de continuación corregida.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="915"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="913"/>
         <source>Indentation of closing bracket corrected.</source>
         <translation>Indentación de llave de cierre corregida.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="918"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="916"/>
         <source>Missing indentation of continuation line corrected.</source>
         <translation>Indentación inexistente en línea de continuación corregida.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="921"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="919"/>
         <source>Closing bracket aligned to opening bracket.</source>
         <translation>Llave de cierre alineada a llave de apertura.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="924"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="922"/>
         <source>Indentation level changed.</source>
         <translation>Nivel de indentación corregida.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="927"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="925"/>
         <source>Indentation level of hanging indentation changed.</source>
         <translation>Nivel de indentación de indentación colgante corregida.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="930"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="928"/>
         <source>Visual indentation corrected.</source>
         <translation>Indentación visual corregida.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="945"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="943"/>
         <source>Extraneous whitespace removed.</source>
         <translation>Eliminado espacio en blanco extraño.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="942"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="940"/>
         <source>Missing whitespace added.</source>
         <translation>Añadido espacio en blanco que faltaba.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="948"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="946"/>
         <source>Whitespace around comment sign corrected.</source>
         <translation>Espacio en blanco alrededor de signo de comentario corregido.</translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="952"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="950"/>
         <source>%n blank line(s) inserted.</source>
         <translation>
             <numerusform>Insertada %n línea en blanco.</numerusform>
@@ -4212,7 +4201,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="955"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="953"/>
         <source>%n superfluous lines removed</source>
         <translation>
             <numerusform>Eliminada %n línea en blanco sobrante</numerusform>
@@ -4220,72 +4209,72 @@
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="959"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="957"/>
         <source>Superfluous blank lines removed.</source>
         <translation>Eliminadas líneas en blanco sobrantes.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="962"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="960"/>
         <source>Superfluous blank lines after function decorator removed.</source>
         <translation>Eliminadas líneas en blanco sobrantes después de decorador de función.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="965"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="963"/>
         <source>Imports were put on separate lines.</source>
         <translation>Imports estaban puestos en líneas separadas.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="968"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="966"/>
         <source>Long lines have been shortened.</source>
         <translation>Líneas largas se han acortado.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="971"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="969"/>
         <source>Redundant backslash in brackets removed.</source>
         <translation>Backslash redundante en llaves eliminado.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="977"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="975"/>
         <source>Compound statement corrected.</source>
         <translation>Sentencia compuesta corregida.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="980"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="978"/>
         <source>Comparison to None/True/False corrected.</source>
         <translation>Comparación a None/True/False corregida.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="983"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="981"/>
         <source>&apos;{0}&apos; argument added.</source>
         <translation>Añadido el argumento &apos;{0}&apos;.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="986"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="984"/>
         <source>&apos;{0}&apos; argument removed.</source>
         <translation>Eliminado el argumento &apos;{0}&apos;.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="989"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="987"/>
         <source>Whitespace stripped from end of line.</source>
         <translation>Espacio eliminado del final de la línea.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="992"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="990"/>
         <source>newline added to end of file.</source>
         <translation>Carácter de nueva línea añadido al final del archivo.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="995"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="993"/>
         <source>Superfluous trailing blank lines removed from end of file.</source>
         <translation>Eliminadas líneas en blanco sobrantes de final de archivo.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="998"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="996"/>
         <source>&apos;&lt;&gt;&apos; replaced by &apos;!=&apos;.</source>
         <translation>&apos;&lt;&gt;&apos; reemplazado por &apos;!=&apos;.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="1002"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="1000"/>
         <source>Could not save the file! Skipping it. Reason: {0}</source>
         <translation>¡No se ha podido guardar el archivo! Va a ser omitido. Razón: {0}</translation>
     </message>
@@ -4771,22 +4760,22 @@
 <context>
     <name>ComplexityChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="479"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="477"/>
         <source>&apos;{0}&apos; is too complex ({1})</source>
         <translation>&apos;{0}&apos; es demasiado complejo ({1})</translation>
     </message>
     <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="479"/>
+        <source>source code line is too complex ({0})</source>
+        <translation>la línea de código fuente es demasiado compleja ({0})</translation>
+    </message>
+    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="481"/>
-        <source>source code line is too complex ({0})</source>
-        <translation>la línea de código fuente es demasiado compleja ({0})</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="483"/>
         <source>overall source code line complexity is too high ({0})</source>
         <translation>la complejidad global de línea de código fuente es demasiado elevada({0})</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="486"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="484"/>
         <source>{0}: {1}</source>
         <translation>{0}: {1}</translation>
     </message>
@@ -5731,7 +5720,7 @@
         <translation>Gestor de vistas</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="660"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="661"/>
         <source>Configuration Page Error</source>
         <translation>Error de Configuración de Página</translation>
     </message>
@@ -5766,12 +5755,12 @@
         <translation>Propiedades</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="578"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="579"/>
         <source>Preferences</source>
         <translation>Preferencias</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="583"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="584"/>
         <source>Please select an entry of the list 
 to display the configuration page.</source>
         <translation>Por favor, seleccione una entrada de la lista
@@ -5793,7 +5782,7 @@
         <translation>Python3</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="660"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="661"/>
         <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>
@@ -7371,214 +7360,214 @@
         <translation>Interfaz de Red</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="83"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="96"/>
         <source>Select the network interface to listen on</source>
         <translation>Seleccionar la interfaz de red en la que escuchar</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="158"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="171"/>
         <source>&lt;font color=&quot;#FF0000&quot;&gt;&lt;b&gt;Note:&lt;/b&gt; These settings are activated at the next startup of the application.&lt;/font&gt;</source>
         <translation>&lt;font color=&quot;#FF0000&quot;&gt;&lt;b&gt;Nota:&lt;/b&gt; Estas opciones de configuración serán activadas la siguiente vez que se inicie la aplicación.&lt;/font&gt;</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="70"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="83"/>
         <source>Select to listen on the configured interface</source>
         <translation>Seleccionar para escuchar en la interfaz configurada</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="73"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="86"/>
         <source>Only selected interface</source>
         <translation>Solamente interfaz seleccionada</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="93"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="106"/>
         <source>Allowed hosts</source>
         <translation>Hosts permitidos</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="115"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="128"/>
         <source>Delete</source>
         <translation>Borrar</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="125"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="138"/>
         <source>Edit...</source>
         <translation>Editar...</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="132"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="145"/>
         <source>Add...</source>
         <translation>Añadir...</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="152"/>
-        <source>Passive Debugger</source>
-        <translation>Depuración pasiva</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="165"/>
+        <source>Passive Debugger</source>
+        <translation>Depuración pasiva</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="178"/>
         <source>Enables the passive debug mode</source>
         <translation>Habilita el modo pasivo de depuración</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="168"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="181"/>
         <source>&lt;b&gt;Passive Debugger Enabled&lt;/b&gt;
 &lt;p&gt;This enables the passive debugging mode. In this mode the debug client (the script) connects to the debug server (the IDE). The script is started outside the IDE. This way mod_python or Zope scripts can be debugged.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Depuración Pasiva Habilitada&lt;/b&gt;
 &lt;p&gt;Habilita el modo pasivo de depuración. En este modo, el cliente de depuración (el script) se conecta al servidor de depuración (la IDE). El script es ejecutado fuera de la IDE. De este modo se pueden depurar scripts mod_python o Zope.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="172"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="185"/>
         <source>Passive Debugger Enabled</source>
         <translation>Depuración Pasiva Habilitada</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="182"/>
-        <source>Debug Server Port:</source>
-        <translation>Puerto del Servidor de Depuración:</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="192"/>
-        <source>Enter the port the debugger should listen on</source>
-        <translation>Introducir el puerto en que el depurador debe escuchar</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="195"/>
+        <source>Debug Server Port:</source>
+        <translation>Puerto del Servidor de Depuración:</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="205"/>
+        <source>Enter the port the debugger should listen on</source>
+        <translation>Introducir el puerto en que el depurador debe escuchar</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="208"/>
         <source>&lt;b&gt;Debug Server Port&lt;/b&gt;
 &lt;p&gt;Enter the port the debugger should listen on.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Puerto del Servidor de Depuración&lt;/b&gt;
 &lt;p&gt;Introduzca el puerto en que el depurador debe escuchar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="228"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="241"/>
         <source>Debugger Type:</source>
         <translation>Tipo de depurador:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="238"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="251"/>
         <source>Select the debugger type of the backend</source>
         <translation>Seleccione el tipo de depurador en el extremo</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="264"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="277"/>
         <source>Remote Debugger</source>
         <translation>Depurador Remoto</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="294"/>
-        <source>Remote Execution:</source>
-        <translation>Ejecución Remota:</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="304"/>
-        <source>Enter the remote execution command.</source>
-        <translation>Introduzca el comando de ejecución remota.</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="307"/>
+        <source>Remote Execution:</source>
+        <translation>Ejecución Remota:</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="317"/>
+        <source>Enter the remote execution command.</source>
+        <translation>Introduzca el comando de ejecución remota.</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="320"/>
         <source>&lt;b&gt;Remote Execution&lt;/b&gt;
 &lt;p&gt;Enter the remote execution command (e.g. ssh). This command is used to log into the remote host and execute the remote debugger.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ejecución Remota&lt;/b&gt;
 &lt;p&gt;Introduzca el comando de ejecución remota (por ejemplo ssh). Este comando se usa para conectarse al host remoto y ejecutar la depuración remota.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="273"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="286"/>
         <source>Enter the hostname of the remote machine.</source>
         <translation>Introduzca el nombre de host de la máquina remota.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="276"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="289"/>
         <source>&lt;b&gt;Remote Host&lt;/b&gt;
 &lt;p&gt;Enter the hostname of the remote machine.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Host Remoto&lt;/b&gt;
 &lt;p&gt;Introduzca el nombre de host de la máquina remota.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="284"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="297"/>
         <source>Remote Host:</source>
         <translation>Host Remoto:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="318"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="331"/>
         <source>Perform Path Translation</source>
         <translation>Llevar a cabo Traducción de Rutas</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="327"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="340"/>
         <source>Local Path:</source>
         <translation>Ruta Local:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="334"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="347"/>
         <source>Enter the local path</source>
         <translation>Introduzca la ruta local</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="341"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="354"/>
         <source>Enter the remote path</source>
         <translation>Introduzca la ruta remota</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="348"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="361"/>
         <source>Remote Path:</source>
         <translation>Ruta Remota:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="364"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="377"/>
         <source>Console Debugger</source>
         <translation>Depurador de Consola</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="373"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="386"/>
         <source>Enter the console command (e.g. xterm -e)</source>
         <translation>Introduzca el comando para la consola (por ejemplo xterm -e)</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="376"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="389"/>
         <source>&lt;b&gt;Console Command&lt;/b&gt;
 &lt;p&gt;Enter the console command (e.g. xterm -e). This command is used to open a command window for the debugger.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Comando para la Consola&lt;/b&gt;
 &lt;p&gt;Introduzca el comando para la consola (por ejemplo xterm -e). Este comando se utiliza para abrir una ventana de comandos para el depurador.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="384"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="397"/>
         <source>Console Command:</source>
         <translation>Comando para la Consola:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="400"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="413"/>
         <source>Select, if the environment should be replaced.</source>
         <translation>Seleccionar si el entorno debe ser reemplazado.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="403"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="416"/>
         <source>&lt;b&gt;Replace Environment&lt;/b&gt;
 &lt;p&gt;If this entry is checked, the environment of the debugger will be replaced by the entries of the environment variables field. If it is unchecked, the environment will be ammended by these settings.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Reemplazar Entorno&lt;/b&gt;
 &lt;p&gt;Si se marca esta entrada, el entorno del depurador será reemplazado por las entradas del campo de variables de entorno. Si se deja sin marcar, el entorno será modificado con estas opciones de configuración.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="421"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="434"/>
         <source>Enter the environment variables to be set.</source>
         <translation>Introduzca las variables de entorno a establecer.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="461"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="474"/>
         <source>Select, whether a reset of the debug client should be performed after a client exit</source>
         <translation>Seleccionar si se debe reiniciar el cliente de depuración después de salir</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="464"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="477"/>
         <source>Automatic Reset after Client Exit</source>
         <translation>Reinicio Automático despues de Salida del Cliente</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="442"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="455"/>
         <source>Select, whether changed scripts should be saved upon a debug, run, ... action.</source>
         <translation>Seleccionar si los scripts con cambios deben ser guardados cuando se solicita una depuración, ejecución... .</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="445"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="458"/>
         <source>Autosave changed scripts</source>
         <translation>Autoguardar scripts con cambios</translation>
     </message>
@@ -7618,52 +7607,52 @@
         <translation>Todas las interfaces de red (IPv6)</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="490"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="503"/>
         <source>Select to change the breakpoint toggle order from Off-&gt;On-&gt;Off to Off-&gt;On (permanent)-&gt;On (temporary)-&gt;Off</source>
         <translation>Seleccionar para cambiar el orden de comnutación de puntos de ruptura de Off-&gt;On-&gt;Off a Off-&gt;On (permanente)-&gt;On (temporal)-&gt;Off</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="493"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="506"/>
         <source>Three state breakpoint</source>
         <translation>Puntos de ruptura de tres estados</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="436"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="449"/>
         <source>Start Debugging</source>
         <translation>Comenzar Depuración</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="455"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="468"/>
         <source>Debug Client Exit</source>
         <translation>Salida del Cliente de Depuración</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="471"/>
-        <source>Select to suppress the client exit dialog for a clean exit</source>
-        <translation>Seleccionar para suprimir el diálogo de salida del cliente para una salida limpia</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="474"/>
-        <source>Don&apos;t show client exit dialog for a clean exit</source>
-        <translation>No mostrar el diálogo de salida del cliente para una salida limpia</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="484"/>
+        <source>Select to suppress the client exit dialog for a clean exit</source>
+        <translation>Seleccionar para suprimir el diálogo de salida del cliente para una salida limpia</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="487"/>
+        <source>Don&apos;t show client exit dialog for a clean exit</source>
+        <translation>No mostrar el diálogo de salida del cliente para una salida limpia</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="497"/>
         <source>Breakpoints</source>
         <translation>Puntos de interrupción (Breakpoints)</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="543"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="556"/>
         <source>Exceptions</source>
         <translation>Excepciones</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="549"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="562"/>
         <source>Select to always break at exceptions</source>
         <translation>Seleccionar para detenerse siempre en las excepciones</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="552"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="565"/>
         <source>Always break at exceptions</source>
         <translation>Detenerse siempre en las excepciones</translation>
     </message>
@@ -7673,92 +7662,92 @@
         <translation>&lt;p&gt;La dirección introducida &lt;b&gt;{0}&lt;/b&gt; no es una dirección IP v4 o IP v6 válida. Abortando...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="748"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="761"/>
         <source>Local Variables Viewer</source>
         <translation>Visor de Variables Locales</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="754"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="767"/>
         <source>Automatically view source code when user changes the callstack frame in the callstack viewer.</source>
         <translation>Automaticamente ver código fuente cuando el usuario cambia el marco de pila de llamadas en el visor de pila de llamadas.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="757"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="770"/>
         <source>Automatically view source code</source>
         <translation>Automaticamente ver código fuente</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="559"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="572"/>
         <source>Select to show exception information in the shell window</source>
         <translation>Seleccionar para mostrar información de excepciones en la ventana de shell</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="562"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="575"/>
         <source>Show exceptions in Shell</source>
         <translation>Mostrar excepciones en Shell</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="583"/>
-        <source>Max. Variable Size:</source>
-        <translation>Tamaño Máx. de Variable:</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="590"/>
-        <source>Enter the maximum size of a variable to be shown (0 = no limit)</source>
-        <translation>Introducir el tamaño máximo de variable a mostrar (0 = sin límite)</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="596"/>
+        <source>Max. Variable Size:</source>
+        <translation>Tamaño Máx. de Variable:</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="603"/>
+        <source>Enter the maximum size of a variable to be shown (0 = no limit)</source>
+        <translation>Introducir el tamaño máximo de variable a mostrar (0 = sin límite)</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="609"/>
         <source>no limit</source>
         <translation>sin límite</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="602"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="615"/>
         <source> Bytes</source>
         <translation> Bytes</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="572"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="585"/>
         <source>Variables Viewer</source>
         <translation>Visor de Variables</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="502"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="515"/>
         <source>Number of recent files and conditions:</source>
         <translation>Número de archivos recientes y condiciones:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="509"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="522"/>
         <source>Enter the number of recent files and breakpoint conditions to remember</source>
         <translation>Introducir el número de archivos recientes y condiciones de puntos de ruptura a recordar</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="315"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="328"/>
         <source>Select, if path translation for remote debugging should be done</source>
         <translation>Seleccionar si se debe llevar a cabo la traducción de rutas para el depurador remoto</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="361"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="374"/>
         <source>Select, if the debugger should be executed in a console window</source>
         <translation>Seleccionar si el depurador debe ejecutarse en una ventana de consola</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="394"/>
-        <source>Environment Variables for Debug Client</source>
-        <translation>Variables de entorno para el Cliente de Depuración</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="407"/>
+        <source>Environment Variables for Debug Client</source>
+        <translation>Variables de entorno para el Cliente de Depuración</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="420"/>
         <source>Replace Environment Variables</source>
         <translation>Reemplazar Variables de Entorno</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="414"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="427"/>
         <source>Environment Variables:</source>
         <translation>Variables de Entorno:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="424"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="437"/>
         <source>&lt;b&gt;Environment Variables&lt;/b&gt;
 &lt;p&gt;Enter the environment variables to be set for the debugger. The individual settings must be separated by whitespace and be given in the form &apos;var=value&apos;.&lt;/p&gt;
 &lt;p&gt;Example: var1=1 var2=&quot;hello world&quot;&lt;/p&gt;</source>
@@ -7767,32 +7756,32 @@
 &lt;p&gt;Ejemplo: var1=1 var2=&quot;hello world&quot;&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="261"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="274"/>
         <source>Select, if the debugger should be run remotely</source>
         <translation>Seleccionar si el depurador debe ser ejecutado remotamente</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="669"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="682"/>
         <source>Changed elements:</source>
         <translation>Elementos cambiados:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="676"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="689"/>
         <source>First time opened elements:</source>
         <translation>Elementos abiertos por primera vez:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="630"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="643"/>
         <source>Background Colors</source>
         <translation>Colores de Fondo</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="659"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="672"/>
         <source>Select the background color for changed items.</source>
         <translation>Seleccionar el color de fondo para elementos que han cambiado.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="695"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.ui" line="708"/>
         <source>Select the background color for elements which are loaded for the first time.</source>
         <translation>Seleccionar el color de fondo para elementos que se cargan por primera vez.</translation>
     </message>
@@ -8144,30 +8133,30 @@
 <context>
     <name>DeepLEngine</name>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="73"/>
-        <source>Text to be translated exceeds the translation limit of {0} characters.</source>
-        <translation>El texto a traducir excede el límite de traducción de {0} caracteres.</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="95"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="98"/>
         <source>Invalid response received from DeepL</source>
         <translation>Respuesta no válida recibida de DeepL</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="98"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="101"/>
         <source>DeepL call returned an unknown result</source>
         <translation>La llamada a DeepL ha retornado un resultado desconocido</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="102"/>
-        <source>&lt;p&gt;No translation found&lt;/p&gt;</source>
-        <translation>&lt;p&gt;No se ha encontrado una traducción&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="79"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="82"/>
         <source>A valid DeepL Pro key is required.</source>
         <translation>Se necesita una clave válida de DeepL Pro.</translation>
     </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="73"/>
+        <source>DeepL: Text to be translated exceeds the translation limit of {0} characters.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="105"/>
+        <source>&lt;p&gt;DeepL: No translation found&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>DeleteFilesConfirmationDialog</name>
@@ -8435,237 +8424,237 @@
 <context>
     <name>DocStyleChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="291"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="289"/>
         <source>module is missing a docstring</source>
         <translation>al módulo le falta un docstring</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="293"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="291"/>
         <source>public function/method is missing a docstring</source>
         <translation>a la función/método le falta un docstring</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="296"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="294"/>
         <source>private function/method may be missing a docstring</source>
         <translation>a la función/método privado le podría estar faltando un docstring</translation>
     </message>
     <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="297"/>
+        <source>public class is missing a docstring</source>
+        <translation>a la clase pública le falta un docstring</translation>
+    </message>
+    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="299"/>
-        <source>public class is missing a docstring</source>
-        <translation>a la clase pública le falta un docstring</translation>
+        <source>private class may be missing a docstring</source>
+        <translation>a la clase privada le podría estar faltando un docstring</translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="301"/>
-        <source>private class may be missing a docstring</source>
-        <translation>a la clase privada le podría estar faltando un docstring</translation>
+        <source>docstring not surrounded by &quot;&quot;&quot;</source>
+        <translation>docstring no rodeado de &quot;&quot;&quot;</translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="303"/>
-        <source>docstring not surrounded by &quot;&quot;&quot;</source>
-        <translation>docstring no rodeado de &quot;&quot;&quot;</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="305"/>
         <source>docstring containing \ not surrounded by r&quot;&quot;&quot;</source>
         <translation>docstring contiene \ no rodeado de r&quot;&quot;&quot;</translation>
     </message>
     <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="306"/>
+        <source>one-liner docstring on multiple lines</source>
+        <translation>docstring de una línea en múltiples líneas</translation>
+    </message>
+    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="308"/>
-        <source>one-liner docstring on multiple lines</source>
-        <translation>docstring de una línea en múltiples líneas</translation>
+        <source>docstring has wrong indentation</source>
+        <translation>docstring tiene indentación errónea</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="357"/>
+        <source>docstring summary does not end with a period</source>
+        <translation>docstring de resumen no termina en punto</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="314"/>
+        <source>docstring summary is not in imperative mood (Does instead of Do)</source>
+        <translation>docstring de resumen no expresado en forma imperativa (Hace en lugar de Hacer)</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="318"/>
+        <source>docstring summary looks like a function&apos;s/method&apos;s signature</source>
+        <translation>docstring de resumen parece una firma de función/método</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="321"/>
+        <source>docstring does not mention the return value type</source>
+        <translation>docstring no menciona el tipo de valor de retorno</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="324"/>
+        <source>function/method docstring is separated by a blank line</source>
+        <translation>docstring de función/método separado por línea en blanco</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="327"/>
+        <source>class docstring is not preceded by a blank line</source>
+        <translation>docstring de clase no precedido de línea en blanco</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="330"/>
+        <source>class docstring is not followed by a blank line</source>
+        <translation>docstring de clase no seguido de línea en blanco</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="391"/>
+        <source>docstring summary is not followed by a blank line</source>
+        <translation>docstring de resumen no seguido de línea en blanco</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="336"/>
+        <source>last paragraph of docstring is not followed by a blank line</source>
+        <translation>último párrafo de docstring no seguido de línea en blanco</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="344"/>
+        <source>private function/method is missing a docstring</source>
+        <translation>función/método privado al que le falta docstring</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="347"/>
+        <source>private class is missing a docstring</source>
+        <translation>clase privada a la que falta un docstring</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="351"/>
+        <source>leading quotes of docstring not on separate line</source>
+        <translation>comillas iniciales de docstring no están en línea separada</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="354"/>
+        <source>trailing quotes of docstring not on separate line</source>
+        <translation>comillas finales de docstring no están en línea separada</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="361"/>
+        <source>docstring does not contain a @return line but function/method returns something</source>
+        <translation>docstring no contiene una línea @return pero la función/método retorna algo</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="365"/>
+        <source>docstring contains a @return line but function/method doesn&apos;t return anything</source>
+        <translation>docstring contiene una línea @return pero la función/método no retorna nada</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="369"/>
+        <source>docstring does not contain enough @param/@keyparam lines</source>
+        <translation>docstring no contiene suficientes líneas @param/@keyparam</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="372"/>
+        <source>docstring contains too many @param/@keyparam lines</source>
+        <translation>docstring contiene demasiadas líneas @param/@keyparam</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="375"/>
+        <source>keyword only arguments must be documented with @keyparam lines</source>
+        <translation>los argumentos de solo palabra clave deben estar documentados con líneas @keyparam</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="378"/>
+        <source>order of @param/@keyparam lines does not match the function/method signature</source>
+        <translation>orden de líneas @param/@keyparam no coincide con la firma de la función/método</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="381"/>
+        <source>class docstring is preceded by a blank line</source>
+        <translation>docstring de clase precedida de línea en blanco</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="383"/>
+        <source>class docstring is followed by a blank line</source>
+        <translation>docstring de clase seguida de línea en blanco</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="385"/>
+        <source>function/method docstring is preceded by a blank line</source>
+        <translation>docstring de función/método precedido de línea en blanco</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="388"/>
+        <source>function/method docstring is followed by a blank line</source>
+        <translation>docstring de función/método seguido de línea en blanco</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="394"/>
+        <source>last paragraph of docstring is followed by a blank line</source>
+        <translation>último párrafo de docstring seguido de línea en blanco</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="397"/>
+        <source>docstring does not contain a @exception line but function/method raises an exception</source>
+        <translation>docstring no contiene una línea @exception pero la función/método lanza una excepción</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="401"/>
+        <source>docstring contains a @exception line but function/method doesn&apos;t raise an exception</source>
+        <translation>docstring contiene una línea @exception pero la función/método no lanza una excepción</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="424"/>
+        <source>{0}: {1}</source>
+        <translation>{0}: {1}</translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="310"/>
-        <source>docstring has wrong indentation</source>
-        <translation>docstring tiene indentación errónea</translation>
+        <source>docstring does not contain a summary</source>
+        <translation>docstring no contiene un resumen</translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="359"/>
-        <source>docstring summary does not end with a period</source>
-        <translation>docstring de resumen no termina en punto</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="316"/>
-        <source>docstring summary is not in imperative mood (Does instead of Do)</source>
-        <translation>docstring de resumen no expresado en forma imperativa (Hace en lugar de Hacer)</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="320"/>
-        <source>docstring summary looks like a function&apos;s/method&apos;s signature</source>
-        <translation>docstring de resumen parece una firma de función/método</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="323"/>
-        <source>docstring does not mention the return value type</source>
-        <translation>docstring no menciona el tipo de valor de retorno</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="326"/>
-        <source>function/method docstring is separated by a blank line</source>
-        <translation>docstring de función/método separado por línea en blanco</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="329"/>
-        <source>class docstring is not preceded by a blank line</source>
-        <translation>docstring de clase no precedido de línea en blanco</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="332"/>
-        <source>class docstring is not followed by a blank line</source>
-        <translation>docstring de clase no seguido de línea en blanco</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="393"/>
-        <source>docstring summary is not followed by a blank line</source>
-        <translation>docstring de resumen no seguido de línea en blanco</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="338"/>
-        <source>last paragraph of docstring is not followed by a blank line</source>
-        <translation>último párrafo de docstring no seguido de línea en blanco</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="346"/>
-        <source>private function/method is missing a docstring</source>
-        <translation>función/método privado al que le falta docstring</translation>
+        <source>docstring summary does not start with &apos;{0}&apos;</source>
+        <translation>docstring de resumen no empieza con &apos;{0}&apos;</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="405"/>
+        <source>raised exception &apos;{0}&apos; is not documented in docstring</source>
+        <translation>la excepción &apos;{0}&apos; no está documentada en una docstring</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="408"/>
+        <source>documented exception &apos;{0}&apos; is not raised</source>
+        <translation>la excepción documentada &apos;{0}&apos; no se utiliza</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="411"/>
+        <source>docstring does not contain a @signal line but class defines signals</source>
+        <translation>docstring no contiene una línea @signal pero la clase define signals</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="414"/>
+        <source>docstring contains a @signal line but class doesn&apos;t define signals</source>
+        <translation>docstring contiene una línea @signal pero la clase no define signals</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="417"/>
+        <source>defined signal &apos;{0}&apos; is not documented in docstring</source>
+        <translation>la signal definida &apos;{0}&apos; no está documentada en una docstring</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="420"/>
+        <source>documented signal &apos;{0}&apos; is not defined</source>
+        <translation>la signal documentada &apos;{0}&apos; no está definida</translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="349"/>
-        <source>private class is missing a docstring</source>
-        <translation>clase privada a la que falta un docstring</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="353"/>
-        <source>leading quotes of docstring not on separate line</source>
-        <translation>comillas iniciales de docstring no están en línea separada</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="356"/>
-        <source>trailing quotes of docstring not on separate line</source>
-        <translation>comillas finales de docstring no están en línea separada</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="363"/>
-        <source>docstring does not contain a @return line but function/method returns something</source>
-        <translation>docstring no contiene una línea @return pero la función/método retorna algo</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="367"/>
-        <source>docstring contains a @return line but function/method doesn&apos;t return anything</source>
-        <translation>docstring contiene una línea @return pero la función/método no retorna nada</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="371"/>
-        <source>docstring does not contain enough @param/@keyparam lines</source>
-        <translation>docstring no contiene suficientes líneas @param/@keyparam</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="374"/>
-        <source>docstring contains too many @param/@keyparam lines</source>
-        <translation>docstring contiene demasiadas líneas @param/@keyparam</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="377"/>
-        <source>keyword only arguments must be documented with @keyparam lines</source>
-        <translation>los argumentos de solo palabra clave deben estar documentados con líneas @keyparam</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="380"/>
-        <source>order of @param/@keyparam lines does not match the function/method signature</source>
-        <translation>orden de líneas @param/@keyparam no coincide con la firma de la función/método</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="383"/>
-        <source>class docstring is preceded by a blank line</source>
-        <translation>docstring de clase precedida de línea en blanco</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="385"/>
-        <source>class docstring is followed by a blank line</source>
-        <translation>docstring de clase seguida de línea en blanco</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="387"/>
-        <source>function/method docstring is preceded by a blank line</source>
-        <translation>docstring de función/método precedido de línea en blanco</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="390"/>
-        <source>function/method docstring is followed by a blank line</source>
-        <translation>docstring de función/método seguido de línea en blanco</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="396"/>
-        <source>last paragraph of docstring is followed by a blank line</source>
-        <translation>último párrafo de docstring seguido de línea en blanco</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="399"/>
-        <source>docstring does not contain a @exception line but function/method raises an exception</source>
-        <translation>docstring no contiene una línea @exception pero la función/método lanza una excepción</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="403"/>
-        <source>docstring contains a @exception line but function/method doesn&apos;t raise an exception</source>
-        <translation>docstring contiene una línea @exception pero la función/método no lanza una excepción</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="426"/>
-        <source>{0}: {1}</source>
-        <translation>{0}: {1}</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="312"/>
-        <source>docstring does not contain a summary</source>
-        <translation>docstring no contiene un resumen</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="361"/>
-        <source>docstring summary does not start with &apos;{0}&apos;</source>
-        <translation>docstring de resumen no empieza con &apos;{0}&apos;</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="407"/>
-        <source>raised exception &apos;{0}&apos; is not documented in docstring</source>
-        <translation>la excepción &apos;{0}&apos; no está documentada en una docstring</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="410"/>
-        <source>documented exception &apos;{0}&apos; is not raised</source>
-        <translation>la excepción documentada &apos;{0}&apos; no se utiliza</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="413"/>
-        <source>docstring does not contain a @signal line but class defines signals</source>
-        <translation>docstring no contiene una línea @signal pero la clase define signals</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="416"/>
-        <source>docstring contains a @signal line but class doesn&apos;t define signals</source>
-        <translation>docstring contiene una línea @signal pero la clase no define signals</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="419"/>
-        <source>defined signal &apos;{0}&apos; is not documented in docstring</source>
-        <translation>la signal definida &apos;{0}&apos; no está documentada en una docstring</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="422"/>
-        <source>documented signal &apos;{0}&apos; is not defined</source>
-        <translation>la signal documentada &apos;{0}&apos; no está definida</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="351"/>
         <source>class docstring is still a default string</source>
         <translation>docstring de clase es todavía una cadena por defecto</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="344"/>
-        <source>function docstring is still a default string</source>
-        <translation>docstring de función es todavía una cadena por defecto</translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="342"/>
+        <source>function docstring is still a default string</source>
+        <translation>docstring de función es todavía una cadena por defecto</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="340"/>
         <source>module docstring is still a default string</source>
         <translation>docstring de módulo es todavía una cadena por defecto</translation>
     </message>
@@ -10889,7 +10878,7 @@
 <context>
     <name>Editor</name>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3097"/>
+        <location filename="../QScintilla/Editor.py" line="3098"/>
         <source>Open File</source>
         <translation>Abrir archivo</translation>
     </message>
@@ -11194,42 +11183,42 @@
         <translation>No se ha proporcionado un formato de exportación. Abortando...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1950"/>
+        <location filename="../QScintilla/Editor.py" line="1951"/>
         <source>Modification of Read Only file</source>
         <translation>Modificación de un archivo de solo lectura</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1950"/>
+        <location filename="../QScintilla/Editor.py" line="1951"/>
         <source>You are attempting to change a read only file. Please save to a different file first.</source>
         <translation>Usted está intentando modificar un archivo solo lectura. Por favor guarde en otro archivo primero.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2660"/>
+        <location filename="../QScintilla/Editor.py" line="2661"/>
         <source>Printing...</source>
         <translation>Imprimiendo...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2677"/>
+        <location filename="../QScintilla/Editor.py" line="2678"/>
         <source>Printing completed</source>
         <translation>Impresión completa</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2679"/>
+        <location filename="../QScintilla/Editor.py" line="2680"/>
         <source>Error while printing</source>
         <translation>Error al imprimir</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2682"/>
+        <location filename="../QScintilla/Editor.py" line="2683"/>
         <source>Printing aborted</source>
         <translation>Impresión cancelada</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3037"/>
+        <location filename="../QScintilla/Editor.py" line="3038"/>
         <source>File Modified</source>
         <translation>Archivo modificado</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3286"/>
+        <location filename="../QScintilla/Editor.py" line="3287"/>
         <source>Save File</source>
         <translation>Guardar archivo</translation>
     </message>
@@ -11544,17 +11533,17 @@
         <translation>Alternativas ({0})</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3037"/>
+        <location filename="../QScintilla/Editor.py" line="3038"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has unsaved changes.&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; tiene cambios sin guardar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3097"/>
+        <location filename="../QScintilla/Editor.py" line="3098"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be opened.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo&lt;b&gt;{0}&lt;/b&gt; no puede ser abierto.&lt;br /&gt;Causa: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3223"/>
+        <location filename="../QScintilla/Editor.py" line="3224"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; no puede ser guardado.&lt;br&gt;Causa: {1}&lt;/p&gt;</translation>
     </message>
@@ -11609,7 +11598,7 @@
         <translation>Limpiar advertencias</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3286"/>
+        <location filename="../QScintilla/Editor.py" line="3287"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; ya existe. ¿Desea sobreescribirlo?&lt;/p&gt;</translation>
     </message>
@@ -12392,47 +12381,47 @@
 <context>
     <name>EditorCalltipsQScintillaPage</name>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorCalltipsQScintillaPage.ui" line="16"/>
+        <location filename="../Preferences/ConfigurationPages/EditorCalltipsQScintillaPage.ui" line="17"/>
         <source>&lt;b&gt;Configure QScintilla Calltips&lt;/b&gt;</source>
         <translation>&lt;b&gt;Configurar Consejos de llamada (Calltips) de QScintilla&lt;/b&gt;</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorCalltipsQScintillaPage.ui" line="36"/>
+        <location filename="../Preferences/ConfigurationPages/EditorCalltipsQScintillaPage.ui" line="37"/>
         <source>Context display options</source>
         <translation>Opciones de visualización de contexto</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorCalltipsQScintillaPage.ui" line="42"/>
+        <location filename="../Preferences/ConfigurationPages/EditorCalltipsQScintillaPage.ui" line="43"/>
         <source>Select to display calltips without a context</source>
         <translation>Seleccionar para mostrar consejos de llamada sin contexto</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorCalltipsQScintillaPage.ui" line="45"/>
+        <location filename="../Preferences/ConfigurationPages/EditorCalltipsQScintillaPage.ui" line="46"/>
         <source>Don&apos;t show context information</source>
         <translation>No mostrar información de contexto</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorCalltipsQScintillaPage.ui" line="52"/>
+        <location filename="../Preferences/ConfigurationPages/EditorCalltipsQScintillaPage.ui" line="53"/>
         <source>Select to display calltips with a context only if the user hasn&apos;t already implicitly identified the context using autocompletion</source>
         <translation>Seleccionar para mostrar consejos de llamada sin un contexto solo si el usuario todavía no ha identificado implicitamente el contexto a través de autocompletado</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorCalltipsQScintillaPage.ui" line="55"/>
+        <location filename="../Preferences/ConfigurationPages/EditorCalltipsQScintillaPage.ui" line="56"/>
         <source>Show context information, if no prior autocompletion</source>
         <translation>Mostrar información de contexto si no ha habido previamente autocompletado</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorCalltipsQScintillaPage.ui" line="62"/>
+        <location filename="../Preferences/ConfigurationPages/EditorCalltipsQScintillaPage.ui" line="63"/>
         <source>Select to display calltips with a context</source>
         <translation>Seleccionar para mostrar consejos de llamada con un contexto</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorCalltipsQScintillaPage.ui" line="65"/>
+        <location filename="../Preferences/ConfigurationPages/EditorCalltipsQScintillaPage.ui" line="66"/>
         <source>Show context information</source>
         <translation>Mostrar información de contexto</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorCalltipsQScintillaPage.ui" line="79"/>
+        <location filename="../Preferences/ConfigurationPages/EditorCalltipsQScintillaPage.ui" line="80"/>
         <source>A context is any scope (e.g. a C++ namespace or a Python module) prior to the function/method name.</source>
         <translation>Un contexto es cualquier ámbito (por ejemplo, un espacio de nombres C++ o un módulo Python) previo al nombre de la función/método.</translation>
     </message>
@@ -13138,52 +13127,52 @@
         <translation>Tabulación &amp;&amp; Indentación</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="335"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="361"/>
         <source>Comments</source>
         <translation>Comentarios</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="341"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="367"/>
         <source>Select to insert the comment sign at column 0</source>
         <translation>Seleccionar para insertar el signo de comentario en la columna 0</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="347"/>
-        <source>Insert comment at column 0</source>
-        <translation>Insertar comentario en la columna 0</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="344"/>
-        <source>&lt;b&gt;Insert comment at column 0&lt;/b&gt;&lt;p&gt;Select to insert the comment sign at column 0. Otherwise, the comment sign is inserted at the first non-whitespace position.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Insertar comentario en la columna 0&lt;/b&gt;&lt;p&gt;Seleccionar para insertar el signo de comentario en la columna 0. De otro modo, el signo de comentario se inserta en la primera posición de no espacio en blanco.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="357"/>
-        <source>Virtual Space</source>
-        <translation>Espacio Virtual</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="363"/>
-        <source>Virtual space is the space after the last character of a line. It is not allocated unless some text is entered or copied into it. Usage of virtual space can be configured with these selections.</source>
-        <translation>Espacio virtual es el espacio detrás del último carácter en una línea. No es reservado a menos que se introduzca o se copie algún texto en él. El uso del espacio virtual puede ser configurado con estas selecciones.</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="373"/>
-        <source>Select to enable a rectangular selection to extend into virtual space</source>
-        <translation>Seleccionar para habilitar una selección rectangular para extender en el espacio virtual</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="376"/>
-        <source>Selection may access virtual space</source>
-        <translation>La selección puede acceder el espacio virtual</translation>
+        <source>Insert comment at column 0</source>
+        <translation>Insertar comentario en la columna 0</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="370"/>
+        <source>&lt;b&gt;Insert comment at column 0&lt;/b&gt;&lt;p&gt;Select to insert the comment sign at column 0. Otherwise, the comment sign is inserted at the first non-whitespace position.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Insertar comentario en la columna 0&lt;/b&gt;&lt;p&gt;Seleccionar para insertar el signo de comentario en la columna 0. De otro modo, el signo de comentario se inserta en la primera posición de no espacio en blanco.&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="383"/>
+        <source>Virtual Space</source>
+        <translation>Espacio Virtual</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="389"/>
+        <source>Virtual space is the space after the last character of a line. It is not allocated unless some text is entered or copied into it. Usage of virtual space can be configured with these selections.</source>
+        <translation>Espacio virtual es el espacio detrás del último carácter en una línea. No es reservado a menos que se introduzca o se copie algún texto en él. El uso del espacio virtual puede ser configurado con estas selecciones.</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="399"/>
+        <source>Select to enable a rectangular selection to extend into virtual space</source>
+        <translation>Seleccionar para habilitar una selección rectangular para extender en el espacio virtual</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="402"/>
+        <source>Selection may access virtual space</source>
+        <translation>La selección puede acceder el espacio virtual</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="409"/>
         <source>Select to allow the cursor to be moved into virtual space</source>
         <translation>Seleccionar para permitir al cursor moverse dentro del espacio virtual</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="386"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="412"/>
         <source>Cursor can move into virtual space</source>
         <translation>El cursor se puede mover dentro del espacio virtual</translation>
     </message>
@@ -13218,34 +13207,44 @@
         <translation>Pulsar para editar la sobreescritura específica de lenguaje seleccionada</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="213"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="218"/>
         <source>Tab and Indent Override</source>
         <translation>Sobreescritura de Tabulación e Indentación</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="213"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="218"/>
         <source>Shall the selected entries really be removed?</source>
         <translation>¿Desea eliminar las entradas seleccionadas?</translation>
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="281"/>
         <source>Select to enable the source code outline view</source>
-        <translation>Seleccionar para habilitar la vista de esquema de código fuente</translation>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="284"/>
         <source>Source Code Outline</source>
-        <translation>Esquema de Código Fuente</translation>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="293"/>
         <source>Default Width:</source>
-        <translation>Anchura por Defecto:</translation>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="300"/>
         <source>Enter the default width of the source code outline view</source>
-        <translation>Introducir el ancho por defecto de la vista de esquema de código fuente</translation>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="332"/>
+        <source>Width Step Size:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="339"/>
+        <source>Enter the amount of pixels the width of the outline should be increased or decreased</source>
+        <translation type="unfinished"></translation>
     </message>
 </context>
 <context>
@@ -13544,27 +13543,27 @@
         <translation>Archivo de estilos de resaltado (*.e6h *.e4h)</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="681"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="685"/>
         <source>Delete Sub-Style</source>
         <translation>Borrar Subestilo</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="681"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="685"/>
         <source>&lt;p&gt;Shall the sub-style &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
         <translation>&lt;p&gt;¿Desea realmente borrar el subestilo&lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="721"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="725"/>
         <source>{0} - Copy</source>
         <translation>{0} Copiar</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="749"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="753"/>
         <source>Reset Sub-Styles to Default</source>
         <translation>Restablecer Subestilos por Defecto</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="749"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="753"/>
         <source>&lt;p&gt;Do you really want to reset all defined sub-styles of &lt;b&gt;{0}&lt;/b&gt; to the default values?&lt;/p&gt;</source>
         <translation>&lt;p&gt;¿Desea realmente restablecer todos los subestilos definidos de &lt;b&gt;{0}&lt;/b&gt; a sus valores por defecto?&lt;/p&gt;</translation>
     </message>
@@ -13680,11 +13679,6 @@
         <translation>Sobreescritura de Tabulación e Indentación</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorLanguageTabIndentOverrideDialog.ui" line="23"/>
-        <source>Language:</source>
-        <translation type="obsolete">Lenguaje:</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/EditorLanguageTabIndentOverrideDialog.ui" line="57"/>
         <source>Tab Width:</source>
         <translation>Ancho de Tabulación:</translation>
@@ -13707,27 +13701,27 @@
     <message>
         <location filename="../Preferences/ConfigurationPages/EditorLanguageTabIndentOverrideDialog.ui" line="23"/>
         <source>Lexer Language:</source>
-        <translation>Lenguaje de Analizador Léxico:</translation>
+        <translation type="unfinished">Lenguaje de Analizador Léxico:</translation>
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/EditorLanguageTabIndentOverrideDialog.ui" line="36"/>
         <source>Select the lexer language to override</source>
-        <translation>Seleccionar el lenguaje de análizador léxico a sobreescribir</translation>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/EditorLanguageTabIndentOverrideDialog.ui" line="43"/>
         <source>Alternative Lexer:</source>
-        <translation>Analizador Léxico Alternativo:</translation>
+        <translation type="unfinished">Analizador Léxico Alternativo:</translation>
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/EditorLanguageTabIndentOverrideDialog.ui" line="50"/>
         <source>Select the alternative lexer to override</source>
-        <translation>Selecionar el analizador léxico alternativo a sobreescribir</translation>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/EditorLanguageTabIndentOverrideDialog.py" line="51"/>
         <source>Alternative</source>
-        <translation>Alternativo</translation>
+        <translation type="unfinished">Alternativo</translation>
     </message>
 </context>
 <context>
@@ -13766,65 +13760,70 @@
     <message>
         <location filename="../QScintilla/EditorOutlineModel.py" line="44"/>
         <source>Name</source>
-        <translation>Nombre</translation>
+        <translation type="unfinished">Nombre</translation>
     </message>
     <message>
         <location filename="../QScintilla/EditorOutlineModel.py" line="110"/>
         <source>Coding: {0}</source>
-        <translation>Codificación: {0}</translation>
+        <translation type="unfinished">Codificación: {0}</translation>
     </message>
     <message>
         <location filename="../QScintilla/EditorOutlineModel.py" line="118"/>
         <source>Globals</source>
-        <translation>Globales</translation>
+        <translation type="unfinished">Globales</translation>
     </message>
     <message>
         <location filename="../QScintilla/EditorOutlineModel.py" line="125"/>
         <source>Imports</source>
-        <translation>Imports</translation>
+        <translation type="unfinished">Imports</translation>
     </message>
 </context>
 <context>
     <name>EditorOutlineView</name>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="259"/>
+        <location filename="../QScintilla/EditorOutline.py" line="268"/>
         <source>Goto</source>
-        <translation>Ir a</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/EditorOutline.py" line="297"/>
-        <source>Refresh</source>
-        <translation>Actualizar</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/EditorOutline.py" line="301"/>
-        <source>Copy Path to Clipboard</source>
-        <translation>Copiar Ruta al Portapapeles</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/EditorOutline.py" line="306"/>
-        <source>Expand All</source>
-        <translation>Expandir Todo</translation>
+        <translation type="unfinished">Ir a</translation>
     </message>
     <message>
         <location filename="../QScintilla/EditorOutline.py" line="310"/>
-        <source>Collapse All</source>
-        <translation>Contraer Todo</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/EditorOutline.py" line="315"/>
-        <source>Increment Width</source>
-        <translation>Incrementar Anchura</translation>
+        <source>Refresh</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorOutline.py" line="314"/>
+        <source>Copy Path to Clipboard</source>
+        <translation type="unfinished">Copiar Ruta al Portapapeles</translation>
     </message>
     <message>
         <location filename="../QScintilla/EditorOutline.py" line="319"/>
+        <source>Expand All</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorOutline.py" line="323"/>
+        <source>Collapse All</source>
+        <translation type="unfinished">Contraer Todo</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorOutline.py" line="328"/>
+        <source>Increment Width</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorOutline.py" line="332"/>
         <source>Decrement Width</source>
-        <translation>Decrementar Anchura</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/EditorOutline.py" line="363"/>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorOutline.py" line="390"/>
         <source>Line {0}</source>
-        <translation>Línea {0}</translation>
+        <translation type="unfinished">Línea {0}</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorOutline.py" line="336"/>
+        <source>Set Default Width</source>
+        <translation type="unfinished"></translation>
     </message>
 </context>
 <context>
@@ -14736,102 +14735,102 @@
         <translation>&lt;b&gt;Configurar estilos del editor&lt;/b&gt;</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="163"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="176"/>
         <source>Fonts</source>
         <translation>Fuentes</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="169"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="234"/>
         <source>Select, whether the monospaced font should be used as default</source>
         <translation>Seleccionar si la fuente monoespacio se debe usar por defecto</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="172"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="237"/>
         <source>Use monospaced as default</source>
         <translation>Usar monoespacio por defecto</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="182"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="185"/>
         <source>Default Text</source>
         <translation>Texto por Defecto</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="195"/>
-        <source>Press to select the default font for the editor&apos;s text</source>
-        <translation>Pulse para seleccionar la fuente por defecto del editor de texto</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="198"/>
+        <source>Press to select the default font for the editor&apos;s text</source>
+        <translation>Pulse para seleccionar la fuente por defecto del editor de texto</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="201"/>
         <source>Default Text Font</source>
         <translation>Fuente de texto por defecto</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="205"/>
-        <source>Press to select the font to be used as the monospaced font</source>
-        <translation>Pulse para seleccionar la fuente para utilizar como fuente monoespacio</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="208"/>
+        <source>Press to select the font to be used as the monospaced font</source>
+        <translation>Pulse para seleccionar la fuente para utilizar como fuente monoespacio</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="211"/>
         <source>Monospaced Font</source>
         <translation>Fuente Monoespacio</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="457"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="483"/>
         <source>Press to select the font for the editor line numbers</source>
         <translation>Pulse para seleccionar la fuente para números de línea en el editor</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="460"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="486"/>
         <source>Line Numbers Font</source>
         <translation>Fuente para números de Línea</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="218"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="221"/>
         <source>Monospaced Text</source>
         <translation>Texto Monoespaciado</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="476"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="502"/>
         <source>2345</source>
         <translation>2345</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="234"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="247"/>
         <source>Margins</source>
         <translation>Márgenes</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="242"/>
-        <source>Select whether line numbers margin should be shown.</source>
-        <translation>Seleccionar si el margen para números de línea debe ser mostrado.</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="245"/>
-        <source>Show Line Numbers Margin</source>
-        <translation>Mostrar margen para números de Línea</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="252"/>
-        <source>Select whether the fold margin should be shown.</source>
-        <translation>Seleccionar si el margen de plegado debe ser mostrado.</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="255"/>
+        <source>Select whether line numbers margin should be shown.</source>
+        <translation>Seleccionar si el margen para números de línea debe ser mostrado.</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="258"/>
+        <source>Show Line Numbers Margin</source>
+        <translation>Mostrar margen para números de Línea</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="265"/>
+        <source>Select whether the fold margin should be shown.</source>
+        <translation>Seleccionar si el margen de plegado debe ser mostrado.</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="268"/>
         <source>Show Fold Margin</source>
         <translation>Mostrar margen de plegado</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="266"/>
-        <source>Folding style:</source>
-        <translation>Estilo de plegado:</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="279"/>
+        <source>Folding style:</source>
+        <translation>Estilo de plegado:</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="292"/>
         <source>Select the folding style to be used in the folding margin</source>
         <translation>Seleccionar el estilo de plegado a utilizar en el margen de plegado</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="282"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="295"/>
         <source>&lt;b&gt;Folding style&lt;/b&gt;
 &lt;p&gt;Select the desired folding style to be used in the folding margin.&lt;/p&gt;
 &lt;p&gt;The available styles are:
@@ -14856,147 +14855,147 @@
 &lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="296"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="309"/>
         <source>Plain</source>
         <translation>Plano</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="301"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="314"/>
         <source>Circled</source>
         <translation>Con círculo</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="306"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="319"/>
         <source>Boxed</source>
         <translation>Con Caja</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="311"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="324"/>
         <source>Circled Tree</source>
         <translation>Árbol con Círculo</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="316"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="329"/>
         <source>Boxed Tree</source>
         <translation>Árbol con Caja</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="507"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="533"/>
         <source>Selection</source>
         <translation>Selección</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="538"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="564"/>
         <source>Select to extend selection to end of line</source>
         <translation>Seleccionar para extender la selección hasta el final de la línea</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="541"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="567"/>
         <source>Extend selection to end of line</source>
         <translation>Extender selección hasta el final de la línea</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="552"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="578"/>
         <source>Selection foreground:</source>
         <translation>Primer plano de la selección:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="575"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="614"/>
         <source>Selection background:</source>
         <translation>Color de fondo de la selección:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="609"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="648"/>
         <source>Caret</source>
         <translation>Punto de inserción de texto</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="622"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="661"/>
         <source>Select caret width (1, 2 or 3 pixels)</source>
         <translation>Seleccionar ancho del punto de inserción de texto  (1, 2 o 3 píxeles)</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="688"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="727"/>
         <source>Caret line visible</source>
         <translation>Línea de Cursor visible</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="857"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="909"/>
         <source>Braces</source>
         <translation>Llaves ( &apos;{&apos; y &apos;}&apos; )</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="863"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1020"/>
         <source>Select whether matching and bad braces shall be highlighted.</source>
         <translation>Seleccionar si las llaves coincidentes y las que no se han de resaltar.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="866"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1023"/>
         <source>Highlight braces</source>
         <translation>Resaltar llaves</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="873"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="915"/>
         <source>Matched braces:</source>
         <translation>Llaves coincidentes:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="896"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="990"/>
         <source>Matched braces background:</source>
         <translation>Fondo de llaves coincidentes:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="925"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="973"/>
         <source>Unmatched brace:</source>
         <translation>Llave sin coincidencia:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="948"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1003"/>
         <source>Unmatched brace background:</source>
         <translation>Fondo de llaves sin coincidencia:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="968"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1033"/>
         <source>End of Line</source>
         <translation>Final de Línea</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="974"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1039"/>
         <source>Select whether end of line shall be shown</source>
         <translation>Seleccionar si el final de línea debe ser mostrado</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="977"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1042"/>
         <source>Show End of Line</source>
         <translation>Mostrar final de línea</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="987"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1052"/>
         <source>Wrap long lines</source>
         <translation>Partir líneas largas</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1080"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1145"/>
         <source>Edge Mode</source>
         <translation>Modo del Borde</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1147"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1212"/>
         <source>Move to set the edge column.</source>
         <translation>Mover para establecer la columna del borde.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1175"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1240"/>
         <source>Displays the selected tab width.</source>
         <translation>Muestra el ancho de tabulación seleccionado.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1191"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1256"/>
         <source>Column number:</source>
         <translation>Número de columnas:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1198"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1263"/>
         <source>Mode:</source>
         <translation>Modo:</translation>
     </message>
@@ -15006,87 +15005,87 @@
         <translation>Deshabilitado</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1217"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1282"/>
         <source>Draw Line</source>
         <translation>Dibujar línea</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="2077"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="2177"/>
         <source>Various</source>
         <translation>Varios</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1571"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1649"/>
         <source>Select whether whitspace characters shall be shown</source>
         <translation>Seleccionar si los caracteres de espacio en blanco deben ser mostrados</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1574"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1652"/>
         <source>Show Whitespace</source>
         <translation>Mostrar espacios en blanco</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="2083"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="2183"/>
         <source>Select to show a minimalistic context menu</source>
         <translation>Seleccionar mostrar un menú de contexto minimalista</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="2086"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="2186"/>
         <source>Show minimal context menu</source>
         <translation>Mostrar menú de contexto minimalista</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="338"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="420"/>
         <source>Margins foreground:</source>
         <translation>Color de primer plano para márgenes:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="361"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="397"/>
         <source>Margins background:</source>
         <translation>Color de fondo para los márgenes:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="384"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="374"/>
         <source>Foldmargin background:</source>
         <translation>Color de fondo para los pliegues de los márgenes:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1236"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1301"/>
         <source>Zoom</source>
         <translation>Zoom</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1242"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1307"/>
         <source>Initial zoom factor:</source>
         <translation>Factor de zoom inicial:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1249"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1314"/>
         <source>Move to set the initial zoom factor</source>
         <translation>Mover para establecer el factor de zoom inicial</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1271"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1336"/>
         <source>Displays the selected initial zoom factor</source>
         <translation>Muestra el factor de zoom inicial seleccionado</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="321"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="334"/>
         <source>Arrow</source>
         <translation>Flecha</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="326"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="339"/>
         <source>Arrow Tree</source>
         <translation>Árbol de flechas</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="407"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="351"/>
         <source>Foldmarkers foreground:</source>
         <translation>Color de primer plano para marcadores de plegado:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="430"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="443"/>
         <source>Foldmarkers background:</source>
         <translation>Color de fondo para marcadores de plegado:</translation>
     </message>
@@ -15096,62 +15095,62 @@
         <translation>&lt;b&gt;Nota:&lt;/b&gt; Las fuentes y colores de los resaltadores de sintaxis deben ser configurados en la página de estilos de resaltado de sintaxis.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1290"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1355"/>
         <source>Annotations</source>
         <translation>Anotaciones</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1296"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1361"/>
         <source>Select to enable the display of annotations</source>
         <translation>Seleccionar para habilitar la visualización de anotaciones</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1299"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1364"/>
         <source>Show annotations</source>
         <translation>Mostrar anotaciones</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1306"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1371"/>
         <source>Warnings</source>
         <translation>Advertencias</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1405"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1470"/>
         <source>Foreground</source>
         <translation>Primer plano</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1415"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1480"/>
         <source>Background</source>
         <translation>Fondo</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1351"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1416"/>
         <source>Errors</source>
         <translation>Errores</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1565"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1643"/>
         <source>Whitespace</source>
         <translation>Espacios en blanco</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1583"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1661"/>
         <source>Whitespace size:</source>
         <translation>Tamaño de espacio en blanco:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1590"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1668"/>
         <source>Select the size of the dots used to represent visible whitespace</source>
         <translation>Seleccionar el tamaño de los puntos utilizados para visualizar espacios en blanco</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1623"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1701"/>
         <source>Whitespace foreground:</source>
         <translation>Color de primer plano para espacios en blanco:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1646"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1737"/>
         <source>Whitespace background:</source>
         <translation>Color de fondo para espacios en blanco:</translation>
     </message>
@@ -15161,52 +15160,52 @@
         <translation>Color de primer plano para el área de edición:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="91"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="104"/>
         <source>Edit area background:</source>
         <translation>Color de fondo para el área de edición:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1444"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1509"/>
         <source>Change Tracing</source>
         <translation>Trazado de Cambios</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1450"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1515"/>
         <source>Select to mark changed lines</source>
         <translation>Seleccionar para marcar las líneas cambiadas</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1453"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1518"/>
         <source>Mark changed lines</source>
         <translation>Marcar líneas cambiadas</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1462"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1527"/>
         <source>Timeout for marking changed lines:</source>
         <translation>Tiempo de espera para marcar líneas cambiadas:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1469"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1534"/>
         <source>Enter the time in milliseconds after which changed lines will be marked</source>
         <translation>Introducir el tiempo en milisegundos despues de transcurrido el cual las líneas cambiadas serán marcadas</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1481"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1546"/>
         <source> ms</source>
         <translation> ms</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1003"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1068"/>
         <source>Select the wrap mode for long lines</source>
         <translation>Seleccionar el modo de ajuste de línea para líneas largas</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1023"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1088"/>
         <source>Indication:</source>
         <translation>Indicación:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1030"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1095"/>
         <source>Select, how wrapped lines are indicated</source>
         <translation>Seleccionar como se señalan las líneas con ajuste de línea</translation>
     </message>
@@ -15241,254 +15240,254 @@
         <translation>Indicador en el Margen de Número de Línea</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1335"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1400"/>
         <source>Warning: There might be an issue.</source>
         <translation>Advertencia: podría haber un problema.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1380"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1445"/>
         <source>Error: There is an issue.</source>
         <translation>Error: hay un error.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1396"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1461"/>
         <source>Style</source>
         <translation>Estilo</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1425"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1490"/>
         <source>Style: There is a style issue.</source>
         <translation>Estilo: Hay un problema de estilo.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1743"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1843"/>
         <source>Marker Map</source>
         <translation>Mapa de marcas de color</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1769"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1869"/>
         <source>Errors:</source>
         <translation>Errores:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1792"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1892"/>
         <source>Warnings:</source>
         <translation>Advertencias:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1815"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1915"/>
         <source>Bookmarks:</source>
         <translation>Marcadores:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1838"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1938"/>
         <source>Breakpoints:</source>
         <translation>Puntos de interrupción (Breakpoints):</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1861"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1961"/>
         <source>Tasks:</source>
         <translation>Tareas:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1884"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1984"/>
         <source>Changes:</source>
         <translation>Cambios:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1907"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="2007"/>
         <source>Coverage:</source>
         <translation>Cobertura:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1930"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="2030"/>
         <source>Current Line:</source>
         <translation>Línea Actual:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1999"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="2099"/>
         <source>Background:</source>
         <translation>Fondo:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1674"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1765"/>
         <source>Indentation Guides</source>
         <translation>Guías de Indentación</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1680"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1771"/>
         <source>Select whether indentation guides should be shown.</source>
         <translation>Seleccionar si las guias de indentación deben ser mostradas.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1683"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1774"/>
         <source>Show Indentation Guides</source>
         <translation>Mostrar Guías de Indentación</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1692"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1781"/>
         <source>Indentation Guides foreground:</source>
         <translation>Primer plano para Guías de Indentación:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1715"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1817"/>
         <source>Indentation Guides background:</source>
         <translation>Fondo para Guías de Indentación:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1953"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="2053"/>
         <source>Search Markers:</source>
         <translation>Marcadores de Búsqueda:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="2093"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="2193"/>
         <source>Select to hide the Format Buttons bar when formatting is not supported</source>
         <translation>Seleccionar para ocultar la barra de Botones de Formato cuando formatear no está soportado</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="2096"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="2196"/>
         <source>Hide Format Buttons bar when not supported</source>
         <translation>Ocultar barra de Botones de Formato cuando no esté soportado</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="792"/>
-        <source>Debugging Line Markers</source>
-        <translation>Marcadores de Línea en Depuración</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="808"/>
-        <source>Current line marker:</source>
-        <translation>Marcador de línea actual:</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="831"/>
+        <source>Debugging Line Markers</source>
+        <translation>Marcadores de Línea en Depuración</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="837"/>
+        <source>Current line marker:</source>
+        <translation>Marcador de línea actual:</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="870"/>
         <source>Error line marker:</source>
         <translation>Marcador de línea de error:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1976"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="2076"/>
         <source>Conflict Marker Line:</source>
         <translation>Marcador de Línea de Conflicto:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1749"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1849"/>
         <source>Select to show the marker map right of the editor</source>
         <translation>Seleccionar para mostrar el mapa de marcadores a la derecha del editor</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1752"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1852"/>
         <source>&lt;b&gt;Show Marker Map Right of the Editor&lt;/b&gt;
 &lt;p&gt;If this entry is selected (default), the marker map is show on the right side of the editor. If it is unselected, it is shown on the left side right before the margins.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Mostrar Mapa de Marcadores a la Derecha del Editor&lt;/b&gt;
 &lt;p&gt;Si se selecciona esta entrada (valor por defecto, el mapa de marcadores se muestra en el lado derecho del editor. Si no está seleccionada, se muestra en el lado derecho antes de los márgenes.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1756"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1856"/>
         <source>Show Marker Map Right of the Editor</source>
         <translation>Mostrar Mapa de Marcadores a la Derecha del Editor</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="2025"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="2125"/>
         <source>Shown Markers</source>
         <translation>Mostrar Marcadores</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="2031"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="2131"/>
         <source>Select to show change markers</source>
         <translation>Seleccionar para mostrar los marcadores de cambios</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="2034"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="2134"/>
         <source>Changes</source>
         <translation>Cambios</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="2041"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="2141"/>
         <source>Select to show coverage markers</source>
         <translation>Seleccionar para mostrar cobertura de marcadores</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="2044"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="2144"/>
         <source>Coverage</source>
         <translation>Cobertura</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="2051"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="2151"/>
         <source>Select to show search markers</source>
         <translation>Seleccionar para mostrar marcadores de búsqueda</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="2054"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="2154"/>
         <source>Search Markers</source>
         <translation>Marcadores de Búsqueda</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="2061"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="2161"/>
         <source>&lt;b&gt;Note&lt;/b&gt;: Marker types not listed are always shown.</source>
         <translation>&lt;b&gt;Nota&lt;/b&gt;: Tipos de marcadores no listados se muestran siempre.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="615"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="654"/>
         <source>Width:</source>
         <translation>Anchura:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="635"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="674"/>
         <source>Foreground:</source>
         <translation>Primer plano:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="677"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="716"/>
         <source>Caret Line</source>
         <translation>Línea de Cursor</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="685"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="724"/>
         <source>Select, whether the caret line should be highlighted</source>
         <translation>Seleccionar si la línea del cursor debe ser resaltada</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="695"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="734"/>
         <source>Select, whether the caret line should be highlighted even if the editor doesn&apos;t have the focus</source>
         <translation>Seleccionar si se debe resaltar la línea del cursor incluso si el editor no tiene el foco</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="698"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="737"/>
         <source>Caret line always visible</source>
         <translation>Línea del cursor siempre visible</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="722"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="761"/>
         <source>Frame Width:</source>
         <translation>Ancho de marco:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="729"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="768"/>
         <source>Select caret line frame width (off, 1, 2 or 3 pixels)</source>
         <translation>Seleccionar el ancho de marco para la línea de cursor (apagado, 1, 2 ó 3 píxeles)</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="732"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="771"/>
         <source>Off</source>
         <translation>Apagado</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1037"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1102"/>
         <source>Indentation:</source>
         <translation>Indentación:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1044"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1109"/>
         <source>Select, how wrapped lines are indented</source>
         <translation>Seleccionar como se indentan las líneas con ajuste de línea</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1051"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1116"/>
         <source>Enter the number of characters to indent (only used for &apos;Fixed&apos;)</source>
         <translation>Introducir el número de caracteres a indentar (solo se usa para &apos;Fijado&apos;)</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1054"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1119"/>
         <source> characters</source>
         <translation> caracteres</translation>
     </message>
@@ -15513,7 +15512,7 @@
         <translation>Alineado más dos</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="119"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="132"/>
         <source>Highlighting:</source>
         <translation>Resaltado:</translation>
     </message>
@@ -15538,242 +15537,242 @@
         <translation>Seleccionar el color de primer plano para el área de edición.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="104"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="117"/>
         <source>Select the background color for the edit area.</source>
         <translation>Seleccionar el color de fondo para el área de edición.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="648"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="687"/>
         <source>Select the color for the caret.</source>
         <translation>Seleccionar el color para el punto de inserción de texto.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="351"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="364"/>
         <source>Select the foreground color for the margins</source>
         <translation>Seleccionar el color de primer plano para los márgenes</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="374"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="433"/>
         <source>Select the background color for the margins</source>
         <translation>Seleccione el color de fondo para los márgenes</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="397"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="387"/>
         <source>Select the background color for the foldmargin</source>
         <translation>Seleccionar el color de fondo para los pliegues de los márgenes</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="420"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="410"/>
         <source>Select the foreground color of the foldmarkers</source>
         <translation>Seleccionar el color de primer plano para los marcadores de plegado</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="443"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="456"/>
         <source>Select the background color of the foldmarkers</source>
         <translation>Seleccionar el color de fondo para los marcadores de plegado</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="515"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="541"/>
         <source>Select to use custom selection colors</source>
         <translation>Seleccione para usar colores personalizados para la selección</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="518"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="544"/>
         <source>&lt;b&gt;Use custom selection colors&lt;/b&gt;&lt;p&gt;Select this entry in order to use custom selection colors in the editor and shell windows. The colors for the selection foreground and background are defined on the colors page.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Usar colores personalizados para la selección&lt;/b&gt;&lt;p&gt;Seleccione esta entrada para utilizar colores personalizados de selección en las ventanas de edición y shell. Los colores para el primer plano y para el fondo se definen en la página de colores&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="521"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="547"/>
         <source>Use custom selection colors</source>
         <translation>Usar colores personalizados para la selección</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="528"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="554"/>
         <source>Select, if selected text should be colorized by the lexer.</source>
         <translation>Seleccione si el texto seleccionado debe ser coloreado por el analizador léxico.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="531"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="557"/>
         <source>Colorize selected text</source>
         <translation>Colorizar texto seleccionado</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="565"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="591"/>
         <source>Select the foreground color for the selection.</source>
         <translation>Seleccionar el color de primer plano para la selección.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="588"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="627"/>
         <source>Select the background color for the selection.</source>
         <translation>Seleccione el color de fondo para la selección.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="761"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="800"/>
         <source>Select the background color for the line containing the caret.</source>
         <translation>Seleccionar el color de fondo para la línea que contiene el punto de inserción de texto.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="798"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="860"/>
         <source>Select to indicate the debug markers using colored line backgrounds, arrow indicators otherwise</source>
         <translation>Seleccionar para indicar los marcadores de depuración utilizando fondos de línea coloreados; si no, indicador de flechas</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="801"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="863"/>
         <source>Use background colors</source>
         <translation>Utilizar colores de fondo</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="821"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="850"/>
         <source>Select the color for the current line marker.</source>
         <translation>Seleccionar el color para la marca de línea actual.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="844"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="896"/>
         <source>Select the color for the error line marker.</source>
         <translation>Seleccionar color para el marcador de línea con error.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="886"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="957"/>
         <source>Select the color for highlighting matching braces.</source>
         <translation>Seleccionar el color de resaltado de llaves coincidentes.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="909"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="941"/>
         <source>Select the background color for highlighting matching braces.</source>
         <translation>Seleccionar el color de fondo para resaltar llaves coincidentes.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="932"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="980"/>
         <source>Select the color for  highlighting nonmatching braces.</source>
         <translation>Seleccione el color de resaltado de llaves sin coincidencia.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="955"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1010"/>
         <source>Select the background color for  highlighting nonmatching braces.</source>
         <translation>Seleccione el color de fondo para resaltar llaves sin coincidencia.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1124"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1189"/>
         <source>Select the color for the edge marker.</source>
         <translation>Seleccionar el color para el marcador del borde.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1134"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1199"/>
         <source>Background color:</source>
         <translation>Color de fondo:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1222"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1287"/>
         <source>Change Background Color</source>
         <translation>Cambiar Color de Fondo</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1402"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1467"/>
         <source>Press to select the foreground color</source>
         <translation>Pulsar para seleccionar el color de primer plano</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1412"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1477"/>
         <source>Press to select the background color</source>
         <translation>Pulsar para seleccionar el color de fondo</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1514"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1579"/>
         <source>Unsaved changes color:</source>
         <translation>Color para cambios no guardados:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1527"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1592"/>
         <source>Select the color for the change marker for unsaved changes.</source>
         <translation>Seleccionar el color para el marcador de cambios para cambios sin guardar.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1537"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1615"/>
         <source>Saved changes color:</source>
         <translation>Color para cambios guardados:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1550"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1628"/>
         <source>Select the color for the change marker for saved changes.</source>
         <translation>Seleccionar el color para el marcador de cambios para cambios guardados.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1636"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1714"/>
         <source>Select the foreground color for visible whitespace</source>
         <translation>Seleccionar el color de primer plano para espacios en blanco visibles</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1659"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1750"/>
         <source>Select the background color for visible whitespace</source>
         <translation>Seleccionar el color de fondo para espacios en blanco visibles</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1705"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1794"/>
         <source>Select the foreground color for indentation guides</source>
         <translation>Seleccionar el color de primer plano para guías de indentación</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1728"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1830"/>
         <source>Select the background color for indentation guides</source>
         <translation>Seleccionar el color de fondo para guías de indentación</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1763"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1863"/>
         <source>Marker Colors</source>
         <translation>Colores de Marcador</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1782"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1882"/>
         <source>Select the color for error markers</source>
         <translation>Seleccionar el color para la marcas de errores</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1805"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1905"/>
         <source>Select the color for warning markers</source>
         <translation>Seleccionar el color para las marcas de advertencias</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1828"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1928"/>
         <source>Select the color for bookmark markers</source>
         <translation>Seleccionar el color para la marca de marcadores</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1851"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1951"/>
         <source>Select the color for breakpoint markers</source>
         <translation>Seleccionar el color para la marca de breakpoints</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1874"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1974"/>
         <source>Select the color for task markers</source>
         <translation>Seleccionar el color para la marcas de tareas</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1897"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1997"/>
         <source>Select the color for change markers</source>
         <translation>Seleccionar el color para la marca de cambios</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1920"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="2020"/>
         <source>Select the color for coverage markers</source>
         <translation>Seleccionar el color para la marca de cobertura</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1943"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="2043"/>
         <source>Select the color for the current line marker</source>
         <translation>Seleccionar el color para la marca de línea actual</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1966"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="2066"/>
         <source>Select the color for the search marker</source>
         <translation>Seleccionar el color para el marcador de búsqueda</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1989"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="2089"/>
         <source>Select the color for the conflict marker line marker</source>
         <translation>Seleccionar el color para el marcador de línea de conflicto</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="2012"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="2112"/>
         <source>Select the background color for the marker map</source>
         <translation>Seleccionar el color de fondo para el mapa de marcas</translation>
     </message>
@@ -17125,7 +17124,7 @@
 <context>
     <name>EricdocPlugin</name>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="102"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="81"/>
         <source>Qt Help Tools</source>
         <translation>Herramientas de Ayuda de Qt</translation>
     </message>
@@ -17135,22 +17134,22 @@
         <translation>Generador de Documentación de Eric6</translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="145"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="124"/>
         <source>Generate documentation (eric6_doc)</source>
         <translation>Generar documentación (eric6_doc)</translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="145"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="124"/>
         <source>Generate &amp;documentation (eric6_doc)</source>
         <translation>Generar &amp;documentación (eric6_doc)</translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="149"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="128"/>
         <source>Generate API documentation using eric6_doc</source>
         <translation>Generar documentación de API utilizando eric6_doc</translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="151"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="130"/>
         <source>&lt;b&gt;Generate documentation&lt;/b&gt;&lt;p&gt;Generate API documentation using eric6_doc.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Generar documentación&lt;/b&gt;&lt;p&gt;Generar documentación de API utilizando eric6_doc.&lt;/p&gt;</translation>
     </message>
@@ -26020,27 +26019,27 @@
 <context>
     <name>Globals</name>
     <message>
-        <location filename="../Globals/__init__.py" line="452"/>
+        <location filename="../Globals/__init__.py" line="421"/>
         <source>{0:4.2f} Bytes</source>
         <translation>{0:4.2f} Bytes</translation>
     </message>
     <message>
-        <location filename="../Globals/__init__.py" line="456"/>
+        <location filename="../Globals/__init__.py" line="425"/>
         <source>{0:4.2f} KiB</source>
         <translation>{0:4.2f} KiB</translation>
     </message>
     <message>
-        <location filename="../Globals/__init__.py" line="460"/>
+        <location filename="../Globals/__init__.py" line="429"/>
         <source>{0:4.2f} MiB</source>
         <translation>{0:4.2f} MiB</translation>
     </message>
     <message>
-        <location filename="../Globals/__init__.py" line="464"/>
+        <location filename="../Globals/__init__.py" line="433"/>
         <source>{0:4.2f} GiB</source>
         <translation>{0:4.2f} GiB</translation>
     </message>
     <message>
-        <location filename="../Globals/__init__.py" line="468"/>
+        <location filename="../Globals/__init__.py" line="437"/>
         <source>{0:4.2f} TiB</source>
         <translation>{0:4.2f} TiB</translation>
     </message>
@@ -26049,49 +26048,49 @@
     <name>GlosbeEngine</name>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GlosbeEngine.py" line="85"/>
-        <source>Invalid response received</source>
-        <translation>Recibida respuesta no válida</translation>
+        <source>Glosbe: Invalid response received</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GlosbeEngine.py" line="99"/>
-        <source>No translation found.</source>
-        <translation>No se ha encontrado una traducción.</translation>
+        <source>Glosbe: No translation found.</source>
+        <translation type="unfinished"></translation>
     </message>
 </context>
 <context>
     <name>GoogleV1Engine</name>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV1Engine.py" line="165"/>
-        <source>Only texts up to {0} characters are allowed.</source>
-        <translation>Solamente se permiten textos hasta {0} carácteres.</translation>
-    </message>
-    <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV1Engine.py" line="98"/>
-        <source>Invalid response received</source>
-        <translation>Recibida respuesta no válida</translation>
+        <source>Google V1: Invalid response received</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV1Engine.py" line="135"/>
-        <source>No translation found.</source>
-        <translation>No se ha encontrado una traducción.</translation>
+        <source>Google V1: No translation found.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV1Engine.py" line="165"/>
+        <source>Google V1: Only texts up to {0} characters are allowed.</source>
+        <translation type="unfinished"></translation>
     </message>
 </context>
 <context>
     <name>GoogleV2Engine</name>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="72"/>
-        <source>A valid Google Translate key is required.</source>
-        <translation>Se necesita una clave válida de Google Translate.</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="83"/>
-        <source>Invalid response received</source>
-        <translation>Recibida respuesta no válida</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="89"/>
-        <source>No translation available.</source>
-        <translation>No hay traducción disponible.</translation>
+        <source>Google V2: A valid Google Translate key is required.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="84"/>
+        <source>Google V2: Invalid response received</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="90"/>
+        <source>Google V2: No translation available.</source>
+        <translation type="unfinished"></translation>
     </message>
 </context>
 <context>
@@ -34721,16 +34720,6 @@
         <translation>Pulsar para actualizar la visualización del sumario</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="112"/>
-        <source>Process Generation Error</source>
-        <translation type="obsolete">Error de Generación de Proceso</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="112"/>
-        <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
-        <translation type="obsolete">El proceso {0} no se ha podido ejecutar. Verifique que está en la ruta de búsqueda (search path).</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="245"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parent&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;Parent&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
@@ -36098,36 +36087,35 @@
 <context>
     <name>IbmWatsonEngine</name>
     <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
+        <source>Error Getting Available Translations</source>
+        <translation>Error al Obtener Traducciones Disponibles</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
+        <source>IBM Watson: No translation available.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="183"/>
-        <source>A valid IBM Watson Language Translator key is required.</source>
-        <translation>Se necesita una clave válida de IBM Watson Language Translator.</translation>
+        <source>IBM Watson: A valid Language Translator key is required.</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="192"/>
-        <source>A valid IBM Watson Language Translator URL is required.</source>
-        <translation>Se necesita una URL válida de IBM Watson Language Translator.</translation>
+        <source>IBM Watson: A valid Language Translator URL is required.</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="244"/>
-        <source>Invalid response received</source>
-        <translation>Recibida respuesta no válida</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
-        <source>No translation available.</source>
-        <translation>No hay traducción disponible.</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
-        <source>Error Getting Available Translations</source>
-        <translation>Error al Obtener Traducciones Disponibles</translation>
+        <source>IBM Watson: Invalid response received</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="232"/>
-        <source>The server sent an error indication.
-Error: {0}</source>
-        <translation>El servidor ha enviado una indicación de error.
-Error: {0}</translation>
+        <source>IBM Watson: The server sent an error indication.
+ Error: {0}</source>
+        <translation type="unfinished"></translation>
     </message>
 </context>
 <context>
@@ -38231,7 +38219,7 @@
         <translation>Explorador de archivos</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="499"/>
+        <location filename="../Preferences/ConfigurationPages/InterfacePage.ui" line="486"/>
         <source>Reset layout to factory defaults</source>
         <translation>Restablecer disposición a valores por defecto</translation>
     </message>
@@ -41854,610 +41842,615 @@
 <context>
     <name>Lexers</name>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="86"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="84"/>
         <source>Bash</source>
         <translation>Bash</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="86"/>
+        <source>Batch</source>
+        <translation>Batch</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="88"/>
-        <source>Batch</source>
-        <translation>Batch</translation>
+        <source>C/C++</source>
+        <translation>C/C++</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="90"/>
-        <source>C/C++</source>
-        <translation>C/C++</translation>
+        <source>C#</source>
+        <translation>C#</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="92"/>
-        <source>C#</source>
-        <translation>C#</translation>
+        <source>CMake</source>
+        <translation>CMake</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="94"/>
-        <source>CMake</source>
-        <translation>CMake</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="96"/>
         <source>CSS</source>
         <translation>CSS</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="98"/>
+        <source>D</source>
+        <translation>D</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="100"/>
-        <source>D</source>
-        <translation>D</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="102"/>
         <source>Diff</source>
         <translation>Diff</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="106"/>
+        <source>HTML/PHP/XML</source>
+        <translation>HTML/PHP/XML</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="108"/>
-        <source>HTML/PHP/XML</source>
-        <translation>HTML/PHP/XML</translation>
+        <source>IDL</source>
+        <translation>IDL</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="110"/>
-        <source>IDL</source>
-        <translation>IDL</translation>
+        <source>Java</source>
+        <translation>Java</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="112"/>
-        <source>Java</source>
-        <translation>Java</translation>
+        <source>JavaScript</source>
+        <translation>JavaScript</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="114"/>
-        <source>JavaScript</source>
-        <translation>JavaScript</translation>
+        <source>Lua</source>
+        <translation>Lua</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="116"/>
-        <source>Lua</source>
-        <translation>Lua</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="118"/>
         <source>Makefile</source>
         <translation>Makefile</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="126"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="124"/>
         <source>Perl</source>
         <translation>Perl</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="128"/>
+        <source>Povray</source>
+        <translation>Povray</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="130"/>
-        <source>Povray</source>
-        <translation>Povray</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="132"/>
         <source>Properties</source>
         <translation>Propiedades</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="141"/>
+        <source>Ruby</source>
+        <translation>Ruby</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="143"/>
-        <source>Ruby</source>
-        <translation>Ruby</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="145"/>
         <source>SQL</source>
         <translation>SQL</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="149"/>
-        <source>TeX</source>
-        <translation>TeX</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="151"/>
-        <source>VHDL</source>
-        <translation>VHDL</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="575"/>
-        <source>Quixote Template Files (*.ptl)</source>
-        <translation>Archivos de Plantilla Quixote (*.ptl)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="578"/>
-        <source>Ruby Files (*.rb)</source>
-        <translation>Archivos Ruby (*.rb)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="581"/>
-        <source>IDL Files (*.idl)</source>
-        <translation>Archivos IDL (*.idl)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="408"/>
-        <source>C Files (*.h *.c)</source>
-        <translation>Archivos C (*.h *.c)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="411"/>
-        <source>C++ Files (*.h *.hpp *.hh *.cxx *.cpp *.cc)</source>
-        <translation>Archivos C++ (*.h *.hpp *.hh *.cxx *.cpp *.cc)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="596"/>
-        <source>C# Files (*.cs)</source>
-        <translation>Archivos C# (*.cs)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="417"/>
-        <source>HTML Files (*.html *.htm *.asp *.shtml)</source>
-        <translation>Archivos HTML (*.html *.htm *.asp *.shtml)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="608"/>
-        <source>CSS Files (*.css)</source>
-        <translation>Archivos CSS (*.css)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="611"/>
-        <source>QSS Files (*.qss)</source>
-        <translation>Archivos QSS (*.qss)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="426"/>
-        <source>PHP Files (*.php *.php3 *.php4 *.php5 *.phtml)</source>
-        <translation>Archivos PHP (*.php *.php3 *.php4 *.php5 *.phtml)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="623"/>
-        <source>Qt Resource Files (*.qrc)</source>
-        <translation>Archivos de Recursos Qt (*.qrc)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="435"/>
-        <source>D Files (*.d *.di)</source>
-        <translation>Archivos D (*.d *.di)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="632"/>
-        <source>Java Files (*.java)</source>
-        <translation>Archivos Java (*.java)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="635"/>
-        <source>JavaScript Files (*.js)</source>
-        <translation>Archivos JavaScript (*.js)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="638"/>
-        <source>SQL Files (*.sql)</source>
-        <translation>Archivos SQL (*.sql)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="641"/>
-        <source>Docbook Files (*.docbook)</source>
-        <translation>Archivos DocBook (*.docbook)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="450"/>
-        <source>Perl Files (*.pl *.pm *.ph)</source>
-        <translation>Archivos Perl (*.pl *.pm *.ph)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="650"/>
-        <source>Lua Files (*.lua)</source>
-        <translation>Archivos Lua (^.lua)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="456"/>
-        <source>Tex Files (*.tex *.sty *.aux *.toc *.idx)</source>
-        <translation>Archivos TeX (*.tex *.sty *.aux *.toc *.idx)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="653"/>
-        <source>Shell Files (*.sh)</source>
-        <translation>Archivos Shell (*.sh)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="462"/>
-        <source>Batch Files (*.bat *.cmd)</source>
-        <translation>Archivos Batch (*.bat *.cmd)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="465"/>
-        <source>Diff Files (*.diff *.patch)</source>
-        <translation>Archivos Diff (*.diff *.patch)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="468"/>
-        <source>Makefiles (*makefile Makefile *.mak)</source>
-        <translation>Makefiles (*.mak)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="471"/>
-        <source>Properties Files (*.properties *.ini *.inf *.reg *.cfg *.cnf *.rc)</source>
-        <translation>Archivos de Propiedades (*.properties *.ini *.inf *.reg *.cfg *.cnf *.rc)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="677"/>
-        <source>Povray Files (*.pov)</source>
-        <translation>Archivos Povray (*.pov)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="478"/>
-        <source>CMake Files (CMakeLists.txt *.cmake *.ctest)</source>
-        <translation>Archivos CMake (CMakeLists.txt *.cmake *.ctest)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="481"/>
-        <source>VHDL Files (*.vhd *.vhdl)</source>
-        <translation>Archivos VHDL (*.vhd *.vhdl)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="746"/>
-        <source>All Files (*)</source>
-        <translation>Todos los archivos (*)</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="147"/>
+        <source>TeX</source>
+        <translation>TeX</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="149"/>
+        <source>VHDL</source>
+        <translation>VHDL</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="562"/>
+        <source>Quixote Template Files (*.ptl)</source>
+        <translation>Archivos de Plantilla Quixote (*.ptl)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="565"/>
+        <source>Ruby Files (*.rb)</source>
+        <translation>Archivos Ruby (*.rb)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="568"/>
+        <source>IDL Files (*.idl)</source>
+        <translation>Archivos IDL (*.idl)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="398"/>
+        <source>C Files (*.h *.c)</source>
+        <translation>Archivos C (*.h *.c)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="401"/>
+        <source>C++ Files (*.h *.hpp *.hh *.cxx *.cpp *.cc)</source>
+        <translation>Archivos C++ (*.h *.hpp *.hh *.cxx *.cpp *.cc)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="583"/>
+        <source>C# Files (*.cs)</source>
+        <translation>Archivos C# (*.cs)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="407"/>
+        <source>HTML Files (*.html *.htm *.asp *.shtml)</source>
+        <translation>Archivos HTML (*.html *.htm *.asp *.shtml)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="595"/>
+        <source>CSS Files (*.css)</source>
+        <translation>Archivos CSS (*.css)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="598"/>
+        <source>QSS Files (*.qss)</source>
+        <translation>Archivos QSS (*.qss)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="416"/>
+        <source>PHP Files (*.php *.php3 *.php4 *.php5 *.phtml)</source>
+        <translation>Archivos PHP (*.php *.php3 *.php4 *.php5 *.phtml)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="610"/>
+        <source>Qt Resource Files (*.qrc)</source>
+        <translation>Archivos de Recursos Qt (*.qrc)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="425"/>
+        <source>D Files (*.d *.di)</source>
+        <translation>Archivos D (*.d *.di)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="619"/>
+        <source>Java Files (*.java)</source>
+        <translation>Archivos Java (*.java)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="622"/>
+        <source>JavaScript Files (*.js)</source>
+        <translation>Archivos JavaScript (*.js)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="625"/>
+        <source>SQL Files (*.sql)</source>
+        <translation>Archivos SQL (*.sql)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="628"/>
+        <source>Docbook Files (*.docbook)</source>
+        <translation>Archivos DocBook (*.docbook)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="440"/>
+        <source>Perl Files (*.pl *.pm *.ph)</source>
+        <translation>Archivos Perl (*.pl *.pm *.ph)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="637"/>
+        <source>Lua Files (*.lua)</source>
+        <translation>Archivos Lua (^.lua)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="446"/>
+        <source>Tex Files (*.tex *.sty *.aux *.toc *.idx)</source>
+        <translation>Archivos TeX (*.tex *.sty *.aux *.toc *.idx)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="640"/>
+        <source>Shell Files (*.sh)</source>
+        <translation>Archivos Shell (*.sh)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="452"/>
+        <source>Batch Files (*.bat *.cmd)</source>
+        <translation>Archivos Batch (*.bat *.cmd)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="455"/>
+        <source>Diff Files (*.diff *.patch)</source>
+        <translation>Archivos Diff (*.diff *.patch)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="458"/>
+        <source>Makefiles (*makefile Makefile *.mak)</source>
+        <translation>Makefiles (*.mak)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="461"/>
+        <source>Properties Files (*.properties *.ini *.inf *.reg *.cfg *.cnf *.rc)</source>
+        <translation>Archivos de Propiedades (*.properties *.ini *.inf *.reg *.cfg *.cnf *.rc)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="664"/>
+        <source>Povray Files (*.pov)</source>
+        <translation>Archivos Povray (*.pov)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="468"/>
+        <source>CMake Files (CMakeLists.txt *.cmake *.ctest)</source>
+        <translation>Archivos CMake (CMakeLists.txt *.cmake *.ctest)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="471"/>
+        <source>VHDL Files (*.vhd *.vhdl)</source>
+        <translation>Archivos VHDL (*.vhd *.vhdl)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="730"/>
+        <source>All Files (*)</source>
+        <translation>Todos los archivos (*)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="145"/>
         <source>TCL</source>
         <translation>TCL</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="484"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="474"/>
         <source>TCL/Tk Files (*.tcl *.tk)</source>
         <translation>Archivos TCL/Tk (*.tcl *.tk)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="587"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="574"/>
         <source>C Files (*.c)</source>
         <translation>Archivos C (*.c)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="590"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="577"/>
         <source>C++ Files (*.cpp)</source>
         <translation>Archivos C++ (*.cpp)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="593"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="580"/>
         <source>C++/C Header Files (*.h)</source>
         <translation>Archivos de cabecera C++ (*.h )</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="599"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="586"/>
         <source>HTML Files (*.html)</source>
         <translation>Archivos HTML (*.html)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="602"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="589"/>
         <source>PHP Files (*.php)</source>
         <translation>Archivos PHP (*.php)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="605"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="592"/>
         <source>ASP Files (*.asp)</source>
         <translation>Archivos ASP (*.asp)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="614"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="601"/>
         <source>XML Files (*.xml)</source>
         <translation>Archivos XML (*.xml)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="617"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="604"/>
         <source>XSL Files (*.xsl)</source>
         <translation>Archivos XSL (*.xsl)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="620"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="607"/>
         <source>DTD Files (*.dtd)</source>
         <translation>Archivos DTD (*.dtd)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="626"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="613"/>
         <source>D Files (*.d)</source>
         <translation>Archivos D (*.d)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="629"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="616"/>
         <source>D Interface Files (*.di)</source>
         <translation>Archivos de interfaces D (*.di)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="644"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="631"/>
         <source>Perl Files (*.pl)</source>
         <translation>Archivos Perl (*.pl)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="647"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="634"/>
         <source>Perl Module Files (*.pm)</source>
         <translation>Archivos de módulo Perl (*.pm)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="656"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="643"/>
         <source>Batch Files (*.bat)</source>
         <translation>Archivos Batch (*.bat)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="659"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="646"/>
         <source>TeX Files (*.tex)</source>
         <translation>Archivos TeX (*.tex)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="662"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="649"/>
         <source>TeX Template Files (*.sty)</source>
         <translation>Archivos de plantilla TeX (*.sty)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="665"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="652"/>
         <source>Diff Files (*.diff)</source>
         <translation>Archivos Diff (*.diff)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="668"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="655"/>
         <source>Make Files (*.mak)</source>
         <translation>Archivos Make (*.mak)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="671"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="658"/>
         <source>Properties Files (*.ini)</source>
         <translation>Archivos de Propiedades (*.ini)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="674"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="661"/>
         <source>Configuration Files (*.cfg)</source>
         <translation>Archivos de Configuración (*.cfg)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="680"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="667"/>
         <source>CMake Files (CMakeLists.txt)</source>
         <translation>Archivos CMake (CMakeLists.txt)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="683"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="670"/>
         <source>CMake Macro Files (*.cmake)</source>
         <translation>Archivos de Macro CMake (*.cmake)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="686"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="673"/>
         <source>VHDL Files (*.vhd)</source>
         <translation>Archivos VHDL (*.vhd)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="689"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="676"/>
         <source>TCL Files (*.tcl)</source>
         <translation>Archivos TCL (*.tcl)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="692"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="679"/>
         <source>Tk Files (*.tk)</source>
         <translation>Archivos Tk (*.tk)</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="102"/>
+        <source>Fortran</source>
+        <translation>Fortran</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="104"/>
-        <source>Fortran</source>
-        <translation>Fortran</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="106"/>
         <source>Fortran77</source>
         <translation>Fortran77</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="124"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="122"/>
         <source>Pascal</source>
         <translation>Pascal</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="128"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="126"/>
         <source>PostScript</source>
         <translation>PostScript</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="151"/>
+        <source>XML</source>
+        <translation>XML</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="153"/>
-        <source>XML</source>
-        <translation>XML</translation>
+        <source>YAML</source>
+        <translation>YAML</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="419"/>
+        <source>XML Files (*.xml *.xsl *.xslt *.dtd *.svg *.xul *.xsd)</source>
+        <translation>Archivos XML (*.xml *.xsl *.xslt *.dtd *.svg *.xul *.xsd)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="477"/>
+        <source>Fortran Files (*.f90 *.f95 *.f2k)</source>
+        <translation>Archivos Fortran (*.f90 *.f95 *.f2k)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="480"/>
+        <source>Fortran77 Files (*.f *.for)</source>
+        <translation>Archivos Fortran77 (*.f *.for)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="483"/>
+        <source>Pascal Files (*.dpr *.dpk *.pas *.dfm *.inc *.pp)</source>
+        <translation>Archivos Pascal (*.dpr *.dpk *.pas *.dfm *.inc *.pp)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="691"/>
+        <source>PostScript Files (*.ps)</source>
+        <translation>Archivos PostScript (*.ps)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="489"/>
+        <source>YAML Files (*.yaml *.yml)</source>
+        <translation>Archivos YAML (*.yaml *.yml)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="682"/>
+        <source>Fortran Files (*.f95)</source>
+        <translation>Archivos Fortran (*.f95)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="685"/>
+        <source>Fortran77 Files (*.f)</source>
+        <translation>Archivos Fortran77 (*.f)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="688"/>
+        <source>Pascal Files (*.pas)</source>
+        <translation>Archivos Pascal (*.pas)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="694"/>
+        <source>YAML Files (*.yml)</source>
+        <translation>Archivos YAML (*.yml)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="173"/>
+        <source>Pygments</source>
+        <translation>Pygments</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="547"/>
+        <source>Python3 Files (*.py)</source>
+        <translation>Archivos Python (*.py3)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="550"/>
+        <source>Python3 GUI Files (*.pyw)</source>
+        <translation>Archivos de GUI Python3 (*.pyw)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="135"/>
+        <source>Python3</source>
+        <translation>Python3</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="118"/>
+        <source>Matlab</source>
+        <translation>Matlab</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="120"/>
+        <source>Octave</source>
+        <translation>Octave</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="495"/>
+        <source>Matlab Files (*.m *.m.matlab)</source>
+        <translation>Archivos Matlab (*.m *.m.matlab)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="700"/>
+        <source>Matlab Files (*.m)</source>
+        <translation>Archivos Matlab (*.m)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="703"/>
+        <source>Octave Files (*.m.octave)</source>
+        <translation>Archivos Octave (*.m.octave)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="498"/>
+        <source>Octave Files (*.m *.m.octave)</source>
+        <translation>Archivos Octave (*.m *.m.octave)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="139"/>
+        <source>QSS</source>
+        <translation>QSS</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="155"/>
-        <source>YAML</source>
-        <translation>YAML</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="429"/>
-        <source>XML Files (*.xml *.xsl *.xslt *.dtd *.svg *.xul *.xsd)</source>
-        <translation>Archivos XML (*.xml *.xsl *.xslt *.dtd *.svg *.xul *.xsd)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="487"/>
-        <source>Fortran Files (*.f90 *.f95 *.f2k)</source>
-        <translation>Archivos Fortran (*.f90 *.f95 *.f2k)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="490"/>
-        <source>Fortran77 Files (*.f *.for)</source>
-        <translation>Archivos Fortran77 (*.f *.for)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="493"/>
-        <source>Pascal Files (*.dpr *.dpk *.pas *.dfm *.inc *.pp)</source>
-        <translation>Archivos Pascal (*.dpr *.dpk *.pas *.dfm *.inc *.pp)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="704"/>
-        <source>PostScript Files (*.ps)</source>
-        <translation>Archivos PostScript (*.ps)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="499"/>
-        <source>YAML Files (*.yaml *.yml)</source>
-        <translation>Archivos YAML (*.yaml *.yml)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="695"/>
-        <source>Fortran Files (*.f95)</source>
-        <translation>Archivos Fortran (*.f95)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="698"/>
-        <source>Fortran77 Files (*.f)</source>
-        <translation>Archivos Fortran77 (*.f)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="701"/>
-        <source>Pascal Files (*.pas)</source>
-        <translation>Archivos Pascal (*.pas)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="707"/>
-        <source>YAML Files (*.yml)</source>
-        <translation>Archivos YAML (*.yml)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="183"/>
-        <source>Pygments</source>
-        <translation>Pygments</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="560"/>
-        <source>Python3 Files (*.py)</source>
-        <translation>Archivos Python (*.py3)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="563"/>
-        <source>Python3 GUI Files (*.pyw)</source>
-        <translation>Archivos de GUI Python3 (*.pyw)</translation>
+        <source>Gettext</source>
+        <translation>Gettext</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="706"/>
+        <source>Gettext Files (*.po)</source>
+        <translation>Archivos Gettext (*.po)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="157"/>
+        <source>CoffeeScript</source>
+        <translation>CoffeeScript</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="709"/>
+        <source>CoffeeScript Files (*.coffee)</source>
+        <translation>Archivos CoffeeScript (*.coffee)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="159"/>
+        <source>JSON</source>
+        <translation>JSON</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="712"/>
+        <source>JSON Files (*.json)</source>
+        <translation>Archivos JSON (*.json)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="161"/>
+        <source>Markdown</source>
+        <translation>Markdown</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="715"/>
+        <source>Markdown Files (*.md)</source>
+        <translation>Archivos Markdown (*.md)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="132"/>
+        <source>Protocol (protobuf)</source>
+        <translation>Protocolo (protobuf)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="571"/>
+        <source>Protocol Files (*.proto)</source>
+        <translation>Archivos de Protocolo (*.proto)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="96"/>
+        <source>Cython</source>
+        <translation>Cython</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="383"/>
+        <source>Cython Files (*.pyx *.pxd *.pxi)</source>
+        <translation>Archivos Cython (*.pyx *.pxd *.pxi)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="553"/>
+        <source>Cython Files (*.pyx)</source>
+        <translation>Archivos Cython (*.pyx)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="556"/>
+        <source>Cython Declaration Files (*.pxd)</source>
+        <translation>Archivos de Declaración Cython (*.pxd)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="559"/>
+        <source>Cython Include Files (*.pxi)</source>
+        <translation>Archivos Include Cython (*.pxi)</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="137"/>
-        <source>Python3</source>
-        <translation>Python3</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="120"/>
-        <source>Matlab</source>
-        <translation>Matlab</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="122"/>
-        <source>Octave</source>
-        <translation>Octave</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="502"/>
-        <source>Matlab Files (*.m *.m.matlab)</source>
-        <translation>Archivos Matlab (*.m *.m.matlab)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="710"/>
-        <source>Matlab Files (*.m)</source>
-        <translation>Archivos Matlab (*.m)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="713"/>
-        <source>Octave Files (*.m.octave)</source>
-        <translation>Archivos Octave (*.m.octave)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="505"/>
-        <source>Octave Files (*.m *.m.octave)</source>
-        <translation>Archivos Octave (*.m *.m.octave)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="141"/>
-        <source>QSS</source>
-        <translation>QSS</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="157"/>
-        <source>Gettext</source>
-        <translation>Gettext</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="716"/>
-        <source>Gettext Files (*.po)</source>
-        <translation>Archivos Gettext (*.po)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="159"/>
-        <source>CoffeeScript</source>
-        <translation>CoffeeScript</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="719"/>
-        <source>CoffeeScript Files (*.coffee)</source>
-        <translation>Archivos CoffeeScript (*.coffee)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="165"/>
-        <source>JSON</source>
-        <translation>JSON</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="725"/>
-        <source>JSON Files (*.json)</source>
-        <translation>Archivos JSON (*.json)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="170"/>
-        <source>Markdown</source>
-        <translation>Markdown</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="730"/>
-        <source>Markdown Files (*.md)</source>
-        <translation>Archivos Markdown (*.md)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="134"/>
-        <source>Protocol (protobuf)</source>
-        <translation>Protocolo (protobuf)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="584"/>
-        <source>Protocol Files (*.proto)</source>
-        <translation>Archivos de Protocolo (*.proto)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="98"/>
-        <source>Cython</source>
-        <translation>Cython</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="393"/>
-        <source>Cython Files (*.pyx *.pxd *.pxi)</source>
-        <translation>Archivos Cython (*.pyx *.pxd *.pxi)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="566"/>
-        <source>Cython Files (*.pyx)</source>
-        <translation>Archivos Cython (*.pyx)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="569"/>
-        <source>Cython Declaration Files (*.pxd)</source>
-        <translation>Archivos de Declaración Cython (*.pxd)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="572"/>
-        <source>Cython Include Files (*.pxi)</source>
-        <translation>Archivos Include Cython (*.pxi)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="139"/>
         <source>MicroPython</source>
         <translation>MicroPython</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="387"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="377"/>
         <source>Python Files (*.py *.py3)</source>
         <translation>Archivos Python (*.py *.py3)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="390"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="380"/>
         <source>Python GUI Files (*.pyw *.pyw3)</source>
         <translation>Archivos de GUI Python (*.pyw *.pyw3)</translation>
     </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="697"/>
+        <source>TOML Files (*.toml)</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>LfConvertDataDialog</name>
@@ -44320,12 +44313,12 @@
     </message>
     <message>
         <location filename="../MicroPython/MicroPythonWidget.py" line="1051"/>
-        <source>µPy Chart</source>
+        <source>&#xc2;&#xb5;Py Chart</source>
         <translation>Gráfica µPy</translation>
     </message>
     <message>
         <location filename="../MicroPython/MicroPythonWidget.py" line="1131"/>
-        <source>µPy Files</source>
+        <source>&#xc2;&#xb5;Py Files</source>
         <translation>Archivos µPy</translation>
     </message>
     <message>
@@ -44479,24 +44472,24 @@
 <context>
     <name>MicrosoftEngine</name>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="187"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="190"/>
         <source>You have not registered for the Microsoft Translation service.</source>
         <translation>No está registrado para el servicio de Microsoft Translation.</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="193"/>
-        <source>No valid access token available.</source>
-        <translation>No hay disponible un token de acceso válido.</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="170"/>
-        <source>No translation available.</source>
-        <translation>No hay traducción disponible.</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="205"/>
-        <source>No Text-to-Speech for the selected language available.</source>
-        <translation>No hay Text-to-Speech disponible para el lenguaje seleccionado.</translation>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="196"/>
+        <source>MS Translator: No valid access token available.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="173"/>
+        <source>MS Translator: No translation available.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="211"/>
+        <source>MS Translator: No Text-to-Speech for the selected language available.</source>
+        <translation type="unfinished"></translation>
     </message>
 </context>
 <context>
@@ -44535,649 +44528,649 @@
 <context>
     <name>MiniEditor</name>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="447"/>
+        <location filename="../QScintilla/MiniEditor.py" line="450"/>
         <source>New</source>
         <translation>Nuevo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="447"/>
+        <location filename="../QScintilla/MiniEditor.py" line="450"/>
         <source>&amp;New</source>
         <translation>&amp;Nuevo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="447"/>
+        <location filename="../QScintilla/MiniEditor.py" line="450"/>
         <source>Ctrl+N</source>
         <comment>File|New</comment>
         <translation>Ctrl+N</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="453"/>
+        <location filename="../QScintilla/MiniEditor.py" line="456"/>
         <source>Open an empty editor window</source>
         <translation>Abre una ventana vacia en el editor</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="454"/>
+        <location filename="../QScintilla/MiniEditor.py" line="457"/>
         <source>&lt;b&gt;New&lt;/b&gt;&lt;p&gt;An empty editor window will be created.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nuevo&lt;/b&gt;&lt;p&gt;Se creará una ventana vacia en el editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="461"/>
+        <location filename="../QScintilla/MiniEditor.py" line="464"/>
         <source>Open</source>
         <translation>Abrir</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="461"/>
+        <location filename="../QScintilla/MiniEditor.py" line="464"/>
         <source>&amp;Open...</source>
         <translation>&amp;Abrir...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="461"/>
+        <location filename="../QScintilla/MiniEditor.py" line="464"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation>Ctrl+O</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="467"/>
+        <location filename="../QScintilla/MiniEditor.py" line="470"/>
         <source>Open a file</source>
         <translation>Abrir un archivo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="468"/>
+        <location filename="../QScintilla/MiniEditor.py" line="471"/>
         <source>&lt;b&gt;Open a file&lt;/b&gt;&lt;p&gt;You will be asked for the name of a file to be opened.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Abrir un archivo&lt;/b&gt;&lt;p&gt;Le preguntará el nombre del archivo para ser abierto en el editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="475"/>
+        <location filename="../QScintilla/MiniEditor.py" line="478"/>
         <source>Save</source>
         <translation>Guardar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="475"/>
+        <location filename="../QScintilla/MiniEditor.py" line="478"/>
         <source>&amp;Save</source>
         <translation>&amp;Guardar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="475"/>
+        <location filename="../QScintilla/MiniEditor.py" line="478"/>
         <source>Ctrl+S</source>
         <comment>File|Save</comment>
         <translation>Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="481"/>
+        <location filename="../QScintilla/MiniEditor.py" line="484"/>
         <source>Save the current file</source>
         <translation>Guarda el archivo actual</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="482"/>
+        <location filename="../QScintilla/MiniEditor.py" line="485"/>
         <source>&lt;b&gt;Save File&lt;/b&gt;&lt;p&gt;Save the contents of current editor window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Guardar archivo&lt;/b&gt;&lt;p&gt;Almacena el contenido de la ventana de edición actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="489"/>
+        <location filename="../QScintilla/MiniEditor.py" line="492"/>
         <source>Save as</source>
         <translation>Guardar como</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="489"/>
+        <location filename="../QScintilla/MiniEditor.py" line="492"/>
         <source>Save &amp;as...</source>
         <translation>Guardar co&amp;mo...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="489"/>
+        <location filename="../QScintilla/MiniEditor.py" line="492"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation>Shift+Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="495"/>
+        <location filename="../QScintilla/MiniEditor.py" line="498"/>
         <source>Save the current file to a new one</source>
         <translation>Guarda el archivo actual en uno nuevo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="497"/>
+        <location filename="../QScintilla/MiniEditor.py" line="500"/>
         <source>&lt;b&gt;Save File as&lt;/b&gt;&lt;p&gt;Save the contents of current editor window to a new file. The file can be entered in a file selection dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Guardar archivo como&lt;/b&gt;&lt;p&gt;Guarda el contenido del archivo actual en uno nuevo. El archivo puede ser introducido en el cuadro de selección de archivos.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="520"/>
+        <location filename="../QScintilla/MiniEditor.py" line="523"/>
         <source>Close</source>
         <translation>Cerrar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="520"/>
+        <location filename="../QScintilla/MiniEditor.py" line="523"/>
         <source>&amp;Close</source>
         <translation>&amp;Cerrar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="520"/>
+        <location filename="../QScintilla/MiniEditor.py" line="523"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation>Ctrl+W</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="526"/>
+        <location filename="../QScintilla/MiniEditor.py" line="529"/>
         <source>Close the editor window</source>
         <translation>Cierra la ventanas del editor</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="527"/>
+        <location filename="../QScintilla/MiniEditor.py" line="530"/>
         <source>&lt;b&gt;Close Window&lt;/b&gt;&lt;p&gt;Close the current window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Cierra la ventana&lt;/b&gt;&lt;p&gt;Cierra la ventana actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="566"/>
+        <location filename="../QScintilla/MiniEditor.py" line="569"/>
         <source>Undo</source>
         <translation>Deshacer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="566"/>
+        <location filename="../QScintilla/MiniEditor.py" line="569"/>
         <source>&amp;Undo</source>
         <translation>&amp;Deshacer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="566"/>
+        <location filename="../QScintilla/MiniEditor.py" line="569"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation>Ctrl+Z</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="566"/>
+        <location filename="../QScintilla/MiniEditor.py" line="569"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation>Alt+Backspace</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="573"/>
+        <location filename="../QScintilla/MiniEditor.py" line="576"/>
         <source>Undo the last change</source>
         <translation>Revierte el último cambio</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="574"/>
+        <location filename="../QScintilla/MiniEditor.py" line="577"/>
         <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last change done in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Deshacer&lt;/b&gt;&lt;p&gt;Deshace el último cambio hecho en el editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="581"/>
+        <location filename="../QScintilla/MiniEditor.py" line="584"/>
         <source>Redo</source>
         <translation>Rehacer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="581"/>
+        <location filename="../QScintilla/MiniEditor.py" line="584"/>
         <source>&amp;Redo</source>
         <translation>&amp;Rehacer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="581"/>
+        <location filename="../QScintilla/MiniEditor.py" line="584"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation>Ctrl+Shift+Z</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="587"/>
+        <location filename="../QScintilla/MiniEditor.py" line="590"/>
         <source>Redo the last change</source>
         <translation>Rehace el último cambio</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="588"/>
+        <location filename="../QScintilla/MiniEditor.py" line="591"/>
         <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last change done in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rehacer&lt;/b&gt;&lt;p&gt;Rehace el último cambio hecho en el editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="595"/>
+        <location filename="../QScintilla/MiniEditor.py" line="598"/>
         <source>Cut</source>
         <translation>Cortar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="595"/>
+        <location filename="../QScintilla/MiniEditor.py" line="598"/>
         <source>Cu&amp;t</source>
         <translation>Cor&amp;tar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="595"/>
+        <location filename="../QScintilla/MiniEditor.py" line="598"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation>Ctrl+X</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="595"/>
+        <location filename="../QScintilla/MiniEditor.py" line="598"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation>Shift+Del</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="602"/>
+        <location filename="../QScintilla/MiniEditor.py" line="605"/>
         <source>Cut the selection</source>
         <translation>Corta la selección</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="603"/>
+        <location filename="../QScintilla/MiniEditor.py" line="606"/>
         <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected text of the current editor to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Cortar&lt;/b&gt;&lt;p&gt;Cortar el texto seleccionado y lo envia al portapapeles.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="611"/>
+        <location filename="../QScintilla/MiniEditor.py" line="614"/>
         <source>Copy</source>
         <translation>Copiar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="611"/>
+        <location filename="../QScintilla/MiniEditor.py" line="614"/>
         <source>&amp;Copy</source>
         <translation>&amp;Copiar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="611"/>
+        <location filename="../QScintilla/MiniEditor.py" line="614"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="611"/>
+        <location filename="../QScintilla/MiniEditor.py" line="614"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+Ins</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="618"/>
+        <location filename="../QScintilla/MiniEditor.py" line="621"/>
         <source>Copy the selection</source>
         <translation>Copia lo seleccionado</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="619"/>
+        <location filename="../QScintilla/MiniEditor.py" line="622"/>
         <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected text of the current editor to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Copiar&lt;/b&gt;&lt;p&gt;Copiar el texto seleccionado al portapapeles.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="627"/>
+        <location filename="../QScintilla/MiniEditor.py" line="630"/>
         <source>Paste</source>
         <translation>Pegar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="627"/>
+        <location filename="../QScintilla/MiniEditor.py" line="630"/>
         <source>&amp;Paste</source>
         <translation>&amp;Pegar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="627"/>
+        <location filename="../QScintilla/MiniEditor.py" line="630"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation>Ctrl+V</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="627"/>
+        <location filename="../QScintilla/MiniEditor.py" line="630"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation>Shift+Ins</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="634"/>
+        <location filename="../QScintilla/MiniEditor.py" line="637"/>
         <source>Paste the last cut/copied text</source>
         <translation>Pega el último texto copiado/cortado</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="636"/>
+        <location filename="../QScintilla/MiniEditor.py" line="639"/>
         <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the last cut/copied text from the clipboard to the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Pegar&lt;/b&gt;&lt;p&gt;Pegar el contenido del portapapeles en el editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="644"/>
+        <location filename="../QScintilla/MiniEditor.py" line="647"/>
         <source>Clear</source>
         <translation>Borrar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="644"/>
+        <location filename="../QScintilla/MiniEditor.py" line="647"/>
         <source>Cl&amp;ear</source>
         <translation>&amp;Borrar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="644"/>
+        <location filename="../QScintilla/MiniEditor.py" line="647"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation>Alt+Shift+C</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="651"/>
+        <location filename="../QScintilla/MiniEditor.py" line="654"/>
         <source>Clear all text</source>
         <translation>Borra todo el texto</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="652"/>
+        <location filename="../QScintilla/MiniEditor.py" line="655"/>
         <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Delete all text of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Borrar&lt;/b&gt;&lt;p&gt;Borra todo el texto del editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2176"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2178"/>
         <source>About</source>
         <translation>Acerca de</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2176"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2178"/>
         <source>&amp;About</source>
         <translation>&amp;Acerca de</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2180"/>
-        <source>Display information about this software</source>
-        <translation>Muestra información acerca de este software</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="2182"/>
+        <source>Display information about this software</source>
+        <translation>Muestra información acerca de este software</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="2184"/>
         <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Acerca de&lt;/b&gt;&lt;p&gt;Muestra información acerca de este software.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2188"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2190"/>
         <source>About Qt</source>
         <translation>Acerca de Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2188"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2190"/>
         <source>About &amp;Qt</source>
         <translation>Acerca de &amp;Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2192"/>
-        <source>Display information about the Qt toolkit</source>
-        <translation>Muestra información sobre las herramientas Qt</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="2194"/>
+        <source>Display information about the Qt toolkit</source>
+        <translation>Muestra información sobre las herramientas Qt</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="2196"/>
         <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Acerca de Qt&lt;/b&gt;&lt;p&gt;Muestra información sobre las herramientas Qt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2201"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2203"/>
         <source>What&apos;s This?</source>
         <translation>¿Qué es esto?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2201"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2203"/>
         <source>&amp;What&apos;s This?</source>
         <translation>¿&amp;Qué es esto?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2201"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2203"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation>Shift+F1</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2207"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2209"/>
         <source>Context sensitive help</source>
         <translation>Ayuda sensible al contexto</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2208"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2210"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Mostrar ayuda sensible al contexto&lt;/b&gt;&lt;p&gt;En modo ¿Qué es esto? el puntero del ratón muestra una flecha con un interrogante, y se puede hacer click en elementos de la interfaz gráfica para obtener una descripción corta de lo que hacen y de cómo se utilizan. En los diálogos, se puede acceder a esta característica utilizando el botón de ayuda de contexto en la barra de título.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2224"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2226"/>
         <source>&amp;File</source>
         <translation>&amp;Archivo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2236"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2238"/>
         <source>&amp;Edit</source>
         <translation>&amp;Editar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2256"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2258"/>
         <source>&amp;Help</source>
         <translation>A&amp;yuda</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2268"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2270"/>
         <source>File</source>
         <translation>Archivo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2281"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2283"/>
         <source>Edit</source>
         <translation>Editar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2291"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2293"/>
         <source>Find</source>
         <translation>Buscar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2298"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2300"/>
         <source>Help</source>
         <translation>Ayuda</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2311"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2313"/>
         <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 zona de la barra de estado muestra una indicación  de las propiedades de escritura de los archivos del  editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2318"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2320"/>
         <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 zona de la barra de estado muestra el número de línea en el editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2325"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2327"/>
         <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 zona de la barra de estado muestra la posición del cursor en el editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2330"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2332"/>
         <source>Ready</source>
         <translation>Listo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2415"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2417"/>
         <source>File loaded</source>
         <translation>Archivo cargado</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2504"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2506"/>
         <source>File saved</source>
         <translation>Archivo guardado</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2851"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2852"/>
         <source>Untitled</source>
         <translation>Sin título</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2533"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2535"/>
         <source>Mini Editor</source>
         <translation>Mini Editor</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2892"/>
-        <source>Select all</source>
-        <translation>Seleccionar todo</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="2893"/>
+        <source>Select all</source>
+        <translation>Seleccionar todo</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="2894"/>
         <source>Deselect all</source>
         <translation>Deseleccionar todo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2907"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2908"/>
         <source>Languages</source>
         <translation>Lenguajes</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2910"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2911"/>
         <source>No Language</source>
         <translation>Ningún Lenguaje</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2386"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2388"/>
         <source>Open File</source>
         <translation>Abrir archivo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="534"/>
+        <location filename="../QScintilla/MiniEditor.py" line="537"/>
         <source>Print</source>
         <translation>Imprimir</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="534"/>
+        <location filename="../QScintilla/MiniEditor.py" line="537"/>
         <source>&amp;Print</source>
         <translation>Im&amp;primir</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="534"/>
+        <location filename="../QScintilla/MiniEditor.py" line="537"/>
         <source>Ctrl+P</source>
         <comment>File|Print</comment>
         <translation>Ctrl+P</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="540"/>
+        <location filename="../QScintilla/MiniEditor.py" line="543"/>
         <source>Print the current file</source>
         <translation>Imprime el archivo actual</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2814"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2815"/>
         <source>Printing...</source>
         <translation>Imprimiendo...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2832"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2833"/>
         <source>Printing completed</source>
         <translation>Impresión completa</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2834"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2835"/>
         <source>Error while printing</source>
         <translation>Error mientras se imprimía</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2837"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2838"/>
         <source>Printing aborted</source>
         <translation>Impresión cancelada</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="541"/>
+        <location filename="../QScintilla/MiniEditor.py" line="544"/>
         <source>&lt;b&gt;Print File&lt;/b&gt;&lt;p&gt;Print the contents of the current file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Imprimir Archivo&lt;/b&gt;&lt;p&gt;Imprime el contenido del archivo en edición.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="548"/>
+        <location filename="../QScintilla/MiniEditor.py" line="551"/>
         <source>Print Preview</source>
         <translation>Presentación preliminar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="553"/>
+        <location filename="../QScintilla/MiniEditor.py" line="556"/>
         <source>Print preview of the current file</source>
         <translation>Impirmir la selección del archivo actual</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="555"/>
+        <location filename="../QScintilla/MiniEditor.py" line="558"/>
         <source>&lt;b&gt;Print Preview&lt;/b&gt;&lt;p&gt;Print preview of the current file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Presentación Preliminar&lt;/b&gt;&lt;p&gt;Presentación preliminar del texto de ayuda mostrado.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2934"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2935"/>
         <source>Guessed</source>
         <translation>Suposición</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2956"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2957"/>
         <source>Alternatives</source>
         <translation>Alternativas</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2972"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2973"/>
         <source>Pygments Lexer</source>
         <translation>Analizador Léxico de Pygments</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2972"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2973"/>
         <source>Select the Pygments lexer to apply.</source>
         <translation>Seleccionar el Analizador Léxico de Pygments a aplicar.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="394"/>
+        <location filename="../QScintilla/MiniEditor.py" line="397"/>
         <source>Line: {0:5}</source>
         <translation>Línea: {0:5}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="398"/>
+        <location filename="../QScintilla/MiniEditor.py" line="401"/>
         <source>Pos: {0:5}</source>
         <translation>Pos: {0:5}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2386"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2388"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be opened.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo&lt;b&gt;{0}&lt;/b&gt; no puede ser abierto.&lt;br /&gt;Causa: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2496"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2498"/>
         <source>Save File</source>
         <translation>Guardar archivo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2496"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2498"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; no puede ser guardado.&lt;br&gt;Causa: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2533"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2535"/>
         <source>{0}[*] - {1}</source>
         <translation>{0}[*] - {1}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2952"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2953"/>
         <source>Alternatives ({0})</source>
         <translation>Alternativas ({0})</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2357"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2359"/>
         <source>The document has unsaved changes.</source>
         <translation>El documento tiene cambios sin guardar.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="331"/>
+        <location filename="../QScintilla/MiniEditor.py" line="334"/>
         <source>About eric6 Mini Editor</source>
         <translation>Acerca del Mini Editor de eric6</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="331"/>
+        <location filename="../QScintilla/MiniEditor.py" line="334"/>
         <source>The eric6 Mini Editor is an editor component based on QScintilla. It may be used for simple editing tasks, that don&apos;t need the power of a full blown editor.</source>
         <translation>El Mini Editor de eric6 es un componente de edición basado en QScintilla. Puede utilizarse para tareas simples de edición que no necesitan la potencia de un editor más completo.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2357"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2359"/>
         <source>eric6 Mini Editor</source>
         <translation>Mini Editor de eric6</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="505"/>
+        <location filename="../QScintilla/MiniEditor.py" line="508"/>
         <source>Save Copy</source>
         <translation>Guardar Copia</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="505"/>
+        <location filename="../QScintilla/MiniEditor.py" line="508"/>
         <source>Save &amp;Copy...</source>
         <translation>Guardar &amp;Copia...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="510"/>
+        <location filename="../QScintilla/MiniEditor.py" line="513"/>
         <source>Save a copy of the current file</source>
         <translation>Guardar una copia del archivo actual</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="512"/>
+        <location filename="../QScintilla/MiniEditor.py" line="515"/>
         <source>&lt;b&gt;Save Copy&lt;/b&gt;&lt;p&gt;Save a copy of the contents of current editor window. The file can be entered in a file selection dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Guardar Copia&lt;/b&gt;&lt;p&gt;Guardar una copia del contenido de la ventana de editor actual. El archivo puede ser introducido usando un diálogo de selección de archivo.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3490"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3491"/>
         <source>EditorConfig Properties</source>
         <translation>Propiedades de EditorConfig</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3490"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3491"/>
         <source>&lt;p&gt;The EditorConfig properties for file &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Las propiedades de EditorConfig para el archivo &lt;b&gt;{0}&lt;/b&gt; no se ha podido cargar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2516"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2518"/>
         <source>[*] - {0}</source>
         <translation>[*] - {0}</translation>
     </message>
@@ -45185,469 +45178,469 @@
 <context>
     <name>MiscellaneousChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="492"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="490"/>
         <source>coding magic comment not found</source>
         <translation>comentario mágico de codificación no encontrado</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="495"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="493"/>
         <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/translations.py" line="498"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="496"/>
         <source>copyright notice not present</source>
         <translation>nota de copyright no presente</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="501"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="499"/>
         <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/translations.py" line="702"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="700"/>
         <source>found {0} formatter</source>
         <translation>encontrado formateador {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="705"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="703"/>
         <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/translations.py" line="708"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="706"/>
         <source>docstring does contain unindexed parameters</source>
         <translation>docstring cque contiene parámetros sin indexar</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="711"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="709"/>
         <source>other string does contain unindexed parameters</source>
         <translation>otra cadena contiene parámetros sin indexar</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="714"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="712"/>
         <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/translations.py" line="717"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="715"/>
         <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/translations.py" line="720"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="718"/>
         <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/translations.py" line="723"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="721"/>
         <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/translations.py" line="726"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="724"/>
         <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/translations.py" line="729"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="727"/>
         <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/translations.py" line="732"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="730"/>
         <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/translations.py" line="751"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="749"/>
         <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/translations.py" line="754"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="752"/>
         <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/translations.py" line="761"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="759"/>
         <source>print statement found</source>
         <translation>encontrada sentencia print</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="764"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="762"/>
         <source>one element tuple found</source>
         <translation>tupla de un elemento encontrada</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="800"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="798"/>
         <source>{0}: {1}</source>
         <translation>{0}: {1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="504"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="502"/>
         <source>&quot;{0}&quot; is a Python builtin and is being shadowed; consider renaming the variable</source>
         <translation>&quot;{0}&quot; es una variable nativa de Python a la que se está ocultando; considere renombrar la variable</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="508"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="506"/>
         <source>&quot;{0}&quot; is used as an argument and thus shadows a Python builtin; consider renaming the argument</source>
         <translation>&quot;{0}&quot; 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/translations.py" line="512"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="510"/>
         <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/translations.py" line="515"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="513"/>
         <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/translations.py" line="518"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="516"/>
         <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/translations.py" line="521"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="519"/>
         <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/translations.py" line="524"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="522"/>
         <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/translations.py" line="530"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="528"/>
         <source>unnecessary list comprehension - &quot;{0}&quot; can take a generator</source>
         <translation>lista de comprehensión innecesaria - &quot;{0}&quot; puede aceptar un generador</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="770"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="768"/>
         <source>mutable default argument of type {0}</source>
         <translation>argumento por defecto mutable de tipo {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="555"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="553"/>
         <source>sort keys - &apos;{0}&apos; should be before &apos;{1}&apos;</source>
         <translation>ordenar claves - &apos;{0}&apos; debeía ser antes de &apos;{1}&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="738"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="736"/>
         <source>logging statement uses &apos;%&apos;</source>
         <translation>la sentencia de log usa &apos;%&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="744"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="742"/>
         <source>logging statement uses f-string</source>
         <translation>la sentencia de log usa f-string</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="747"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="745"/>
         <source>logging statement uses &apos;warn&apos; instead of &apos;warning&apos;</source>
         <translation>la sentencia de log usa &apos;warn&apos; en lugar de &apos;warning&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="735"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="733"/>
         <source>logging statement uses string.format()</source>
         <translation>la sentencia de log usa string.format()</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="741"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="739"/>
         <source>logging statement uses &apos;+&apos;</source>
         <translation>la sentencia de log usa &apos;+&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="757"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="755"/>
         <source>gettext import with alias _ found: {0}</source>
         <translation>encontrado gettext import con alias _ : {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="648"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="646"/>
         <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/translations.py" line="657"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="655"/>
         <source>&apos;sys.maxint&apos; is not defined in Python 3 - use &apos;sys.maxsize&apos;</source>
         <translation>&apos;sys.maxint&apos; no está definido en Python 3 - usar &apos;sys.maxsize&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="660"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="658"/>
         <source>&apos;BaseException.message&apos; has been deprecated as of Python 2.6 and is removed in Python 3 - use &apos;str(e)&apos;</source>
         <translation>&apos;BaseException.message&apos; está marcada como deprecada en Python 2.6 y se ha eliminado en Python 3 - usar &apos;str(e)&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="664"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="662"/>
         <source>assigning to &apos;os.environ&apos; does not clear the environment - use &apos;os.environ.clear()&apos;</source>
         <translation>asignaciones a &apos;os.environ&apos; no limpian el entorno - usar &apos;os.environ.clear()&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="688"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="686"/>
         <source>Python 3 does not include &apos;.iter*&apos; methods on dictionaries</source>
         <translation>Python 3 no incluye métodos &apos;.iter*&apos; en diccionarios</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="691"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="689"/>
         <source>Python 3 does not include &apos;.view*&apos; methods on dictionaries</source>
         <translation>Python 3 no incluye métodos &apos;.view*&apos; en diccionarios</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="694"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="692"/>
         <source>&apos;.next()&apos; does not exist in Python 3</source>
         <translation>&apos;.next()&apos; no existe en Python 3</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="697"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="695"/>
         <source>&apos;__metaclass__&apos; does nothing on Python 3 - use &apos;class MyClass(BaseClass, metaclass=...)&apos;</source>
         <translation>&apos;__metaclass__&apos; no hace nada en Python 3 - usar &apos;class MyClass(BaseClass, metaclass=...)&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="773"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="771"/>
         <source>mutable default argument of function call &apos;{0}&apos;</source>
         <translation>argumento por defecto mutable de llamada a función {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="651"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="649"/>
         <source>using .strip() with multi-character strings is misleading</source>
         <translation>usar .strip() cpm cadenas multicarácter es engañoso</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="678"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="676"/>
         <source>using &apos;hasattr(x, &quot;__call__&quot;)&apos; to test if &apos;x&apos; is callable is unreliable</source>
         <translation>usar &apos;hasattr(x, &quot;__call__&quot;)&apos; para probar si &apos;x&apos; is invocable no es fiable</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="668"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="666"/>
         <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/translations.py" line="776"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="774"/>
         <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/translations.py" line="780"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="778"/>
         <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/translations.py" line="784"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="782"/>
         <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/translations.py" line="788"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="786"/>
         <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/translations.py" line="654"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="652"/>
         <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/translations.py" line="672"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="670"/>
         <source>unncessary f-string</source>
         <translation>f-string innecesaria</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="675"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="673"/>
         <source>cannot use &apos;self.__class__&apos; as first argument of &apos;super()&apos; call</source>
         <translation>no se puede usar &apos;self.__class__&apos; como primer argumento de la llamada &apos;super()&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="682"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="680"/>
         <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/translations.py" line="685"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="683"/>
         <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/translations.py" line="796"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="794"/>
         <source>commented code lines should be removed</source>
         <translation>las líneas de código comentadas se deberían eliminar</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="792"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="790"/>
         <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/translations.py" line="559"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="557"/>
         <source>use of &apos;datetime.datetime()&apos; without &apos;tzinfo&apos; argument should be avoided</source>
         <translation>debe evitarse el uso de &apos;datetime.datetime()&apos; sin argumento &apos;tzinfo&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="563"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="561"/>
         <source>use of &apos;datetime.datetime.today()&apos; should be avoided.
 Use &apos;datetime.datetime.now(tz=)&apos; instead.</source>
         <translation>debe evitarse el uso de &apos;datetime.datetime.today()&apos;.
 Usar &apos;datetime.datetime.now(tz=)&apos; en su lugar.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="567"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="565"/>
         <source>use of &apos;datetime.datetime.utcnow()&apos; should be avoided.
 Use &apos;datetime.datetime.now(tz=)&apos; instead.</source>
         <translation>debe evitarse el uso de  &apos;datetime.datetime.utcnow()&apos;.
 Usar &apos;datetime.datetime.now(tz=)&apos; en su lugar.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="571"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="569"/>
         <source>use of &apos;datetime.datetime.utcfromtimestamp()&apos; should be avoided.
 Use &apos;datetime.datetime.fromtimestamp(, tz=)&apos; instead.</source>
         <translation>debe evitarse el uso de &apos;datetime.datetime.utcfromtimestamp()&apos;.
 Usar &apos;datetime.datetime.fromtimestamp(, tz=)&apos; en su lugar.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="575"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="573"/>
         <source>use of &apos;datetime.datetime.now()&apos; without &apos;tz&apos; argument should be avoided</source>
         <translation>debe evitarse el uso de &apos;datetime.datetime.now()&apos; sin argumento &apos;tz&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="579"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="577"/>
         <source>use of &apos;datetime.datetime.fromtimestamp()&apos; without &apos;tz&apos; argument should be avoided</source>
         <translation>debe evitarse el uso de &apos;datetime.datetime.fromtimestamp()&apos; sin argumento &apos;tz&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="583"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="581"/>
         <source>use of &apos;datetime.datetime.strptime()&apos; should be followed by &apos;.replace(tzinfo=)&apos;</source>
         <translation>el uso de &apos;datetime.datetime.strptime()&apos; debe ser continuado con &apos;.replace(tzinfo=)&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="590"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="588"/>
         <source>use of &apos;datetime.date()&apos; should be avoided.
 Use &apos;datetime.datetime(, tzinfo=).date()&apos; instead.</source>
         <translation>debe evitarse el uso de &apos;datetime.date()&apos;.
 Usar &apos;datetime.datetime(, tzinfo=).date()&apos; en su lugar.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="594"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="592"/>
         <source>use of &apos;datetime.date.today()&apos; should be avoided.
 Use &apos;datetime.datetime.now(tz=).date()&apos; instead.</source>
         <translation>debe evitarse el uso de &apos;datetime.date.today()&apos;.
 Usar &apos;datetime.datetime.now(tz=).date()&apos; en su lugar.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="598"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="596"/>
         <source>use of &apos;datetime.date.fromtimestamp()&apos; should be avoided.
 Use &apos;datetime.datetime.fromtimestamp(tz=).date()&apos; instead.</source>
         <translation>debe evitarse el uso de &apos;datetime.date.fromtimestamp()&apos;.
 Usar &apos;datetime.datetime.fromtimestamp(tz=).date()&apos; en su lugar.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="608"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="606"/>
         <source>use of &apos;datetime.time()&apos; without &apos;tzinfo&apos; argument should be avoided</source>
         <translation>debe evitarse el uso de &apos;datetime.time()&apos; sin argumento &apos;tzinfo&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="587"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="585"/>
         <source>use of &apos;datetime.datetime.fromordinal()&apos; should be avoided</source>
         <translation>debe evitarse el uso de &apos;datetime.datetime.fromordinal()&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="602"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="600"/>
         <source>use of &apos;datetime.date.fromordinal()&apos; should be avoided</source>
         <translation>debe evitarse el uso de &apos;datetime.date.fromordinal()&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="605"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="603"/>
         <source>use of &apos;datetime.date.fromisoformat()&apos; should be avoided</source>
         <translation>debe evitarse el uso de &apos;datetime.date.fromisoformat()&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="527"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="525"/>
         <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/translations.py" line="533"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="531"/>
         <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/translations.py" line="536"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="534"/>
         <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/translations.py" line="539"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="537"/>
         <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/translations.py" line="542"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="540"/>
         <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/translations.py" line="545"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="543"/>
         <source>unnecessary list comprehension - &quot;in&quot; can take a generator</source>
         <translation>list comprehension innecesaria - &quot;in&quot; puede aceptar un generator</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="548"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="546"/>
         <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/translations.py" line="551"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="549"/>
         <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/translations.py" line="613"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="611"/>
         <source>&apos;sys.version[:3]&apos; referenced (Python 3.10), use &apos;sys.version_info&apos;</source>
         <translation>&apos;sys.version[:3]&apos; referenciado (Python 3.10), usar &apos;sys.version_info&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="616"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="614"/>
         <source>&apos;sys.version[2]&apos; referenced (Python 3.10), use &apos;sys.version_info&apos;</source>
         <translation>&apos;sys.version[2]&apos; referenciado (Python 3.10), usar &apos;sys.version_info&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="619"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="617"/>
         <source>&apos;sys.version&apos; compared to string (Python 3.10), use &apos;sys.version_info&apos;</source>
         <translation>&apos;sys.version&apos; comparado a cadena (Python 3.10), usar &apos;sys.version_info&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="623"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="621"/>
         <source>&apos;sys.version_info[0] == 3&apos; referenced (Python 4), use &apos;&gt;=&apos;</source>
         <translation>&apos;sys.version_info[0] == 3&apos; referenciado (Python 4), usar &apos;&gt;=&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="626"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="624"/>
         <source>&apos;six.PY3&apos; referenced (Python 4), use &apos;not six.PY2&apos;</source>
         <translation>&apos;six.PY3&apos; referencicado (Python 4), usar &apos;not six.PY2&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="629"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="627"/>
         <source>&apos;sys.version_info[1]&apos; compared to integer (Python 4), compare &apos;sys.version_info&apos; to tuple</source>
         <translation>&apos;sys.version_info[1]&apos; comparado a entero (Python 4), comparar &apos;sys.version_info&apos; con tupla</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="633"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="631"/>
         <source>&apos;sys.version_info.minor&apos; compared to integer (Python 4), compare &apos;sys.version_info&apos; to tuple</source>
         <translation>&apos;sys.version_info.minor&apos; comparado a entero (Python 4), comparar &apos;sys.version_info&apos; con tupla</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="637"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="635"/>
         <source>&apos;sys.version[0]&apos; referenced (Python 10), use &apos;sys.version_info&apos;</source>
         <translation>&apos;sys.version[0]&apos; referenciado (Python 10), usar &apos;sys.version_info&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="640"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="638"/>
         <source>&apos;sys.version&apos; compared to string (Python 10), use &apos;sys.version_info&apos;</source>
         <translation>&apos;sys.version&apos; comparado a cadena (Python 10), usar &apos;sys.version_info&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="644"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="642"/>
         <source>&apos;sys.version[:1]&apos; referenced (Python 10), use &apos;sys.version_info&apos;</source>
         <translation>&apos;sys.version[:1]&apos; referenciado (Python 10), usar &apos;sys.version_info&apos;</translation>
     </message>
@@ -46091,84 +46084,84 @@
     <name>MyMemoryEngine</name>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MyMemoryEngine.py" line="72"/>
-        <source>Only texts up to {0} characters are allowed.</source>
-        <translation>Solamente se permiten textos hasta {0} carácteres.</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MyMemoryEngine.py" line="95"/>
-        <source>Invalid response received</source>
-        <translation>Recibida respuesta no válida</translation>
+        <source>MyMemory: Only texts up to {0} characters are allowed.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MyMemoryEngine.py" line="99"/>
+        <source>MyMemory: Invalid response received</source>
+        <translation type="unfinished"></translation>
     </message>
 </context>
 <context>
     <name>NamingStyleChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="432"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="430"/>
         <source>class names should use CapWords convention</source>
         <translation>nombres de clase deben usar la convención de CapWords</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="435"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="433"/>
         <source>function name should be lowercase</source>
         <translation>nombres de función deben ser en minúsculas</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="438"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="436"/>
         <source>argument name should be lowercase</source>
         <translation>nombre de argumento debe ser en minúsculas</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="441"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="439"/>
         <source>first argument of a class method should be named &apos;cls&apos;</source>
         <translation>primer argumento de método de clase debe ser nombrado &apos;cls&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="444"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="442"/>
         <source>first argument of a method should be named &apos;self&apos;</source>
         <translation>primer argumento de un método debe ser nombrado &apos;self&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="447"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="445"/>
         <source>first argument of a static method should not be named &apos;self&apos; or &apos;cls</source>
         <translation>primer argumento de método estático no debe ser llamado &apos;self&apos; o &apos;cls&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="451"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="449"/>
         <source>module names should be lowercase</source>
         <translation>nombres de módulo deben ser en minúsculas</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="454"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="452"/>
         <source>package names should be lowercase</source>
         <translation>nombres de package deben ser en minúsculas</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="457"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="455"/>
         <source>constant imported as non constant</source>
         <translation>constante importada como no constante</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="460"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="458"/>
         <source>lowercase imported as non lowercase</source>
         <translation>minúscula importada como no minúscula</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="463"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="461"/>
         <source>camelcase imported as lowercase</source>
         <translation>camelcase importado como minúsculas</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="466"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="464"/>
         <source>camelcase imported as constant</source>
         <translation>camelcase importado como constante</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="469"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="467"/>
         <source>variable in function should be lowercase</source>
         <translation>variable en función debe ser en minúsculas</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="472"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="470"/>
         <source>names &apos;l&apos;, &apos;O&apos; and &apos;I&apos; should be avoided</source>
         <translation>nombres &apos;l&apos;, &apos;O&apos; y &apos;I&apos; deben ser evitados</translation>
     </message>
@@ -48452,17 +48445,17 @@
     <message>
         <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="63"/>
         <source>Environment</source>
-        <translation>Entorno</translation>
+        <translation type="unfinished">Entorno</translation>
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="69"/>
         <source>Select to exclude conda managed environments</source>
-        <translation>Seleccionar para excluir entornos gestionados por conda</translation>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/PipPage.ui" line="72"/>
         <source>Don&apos;t show &apos;Conda&apos; environments</source>
-        <translation>No mostrar entornos &apos;Conda&apos;</translation>
+        <translation type="unfinished"></translation>
     </message>
 </context>
 <context>
@@ -49704,17 +49697,17 @@
 <context>
     <name>Preferences</name>
     <message>
-        <location filename="../Preferences/__init__.py" line="1623"/>
+        <location filename="../Preferences/__init__.py" line="1624"/>
         <source>Export Preferences</source>
         <translation>Exportar Preferencias</translation>
     </message>
     <message>
-        <location filename="../Preferences/__init__.py" line="1651"/>
+        <location filename="../Preferences/__init__.py" line="1652"/>
         <source>Import Preferences</source>
         <translation>Importar Preferencias</translation>
     </message>
     <message>
-        <location filename="../Preferences/__init__.py" line="1651"/>
+        <location filename="../Preferences/__init__.py" line="1652"/>
         <source>Properties File (*.ini);;All Files (*)</source>
         <translation>Archivo de Propiedades (*.ini);;Todos los archivos (*)</translation>
     </message>
@@ -49807,13 +49800,8 @@
     </message>
     <message>
         <location filename="../UI/Previewers/PreviewerHTML.py" line="58"/>
-        <source>&lt;b&gt;HTML Preview is not available!&lt;br/&gt;Install QtWebEngine.&lt;/b&gt;</source>
-        <translation type="obsolete">&lt;b&gt;¡Vista preliminar HTML no disponible!&lt;br/&gt;Instalar QtWebEngine.&lt;/b&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="58"/>
         <source>&lt;b&gt;HTML Preview is not available!&lt;br/&gt;Install PyQtWebEngine.&lt;/b&gt;</source>
-        <translation>&lt;b&gt;¡Vista preliminar no disponible!&lt;br/&gt;Instalar PyQtWebEngine.&lt;/b&gt;</translation>
+        <translation type="unfinished"></translation>
     </message>
 </context>
 <context>
@@ -53209,13 +53197,13 @@
     <name>PromtEngine</name>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/PromtEngine.py" line="97"/>
-        <source>Invalid response received</source>
-        <translation>Recibida respuesta no válida</translation>
+        <source>Promt: Invalid response received</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/PromtEngine.py" line="106"/>
-        <source>This direction of translation is not available.</source>
-        <translation>Esta dirección de traducción no está disponible.</translation>
+        <source>Promt: This direction of translation is not available.</source>
+        <translation type="unfinished"></translation>
     </message>
 </context>
 <context>
@@ -55364,11 +55352,6 @@
         <translation>Rángo de Código</translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="202"/>
-        <source>The current editor text does not contain Python source.</source>
-        <translation type="obsolete">El texto en el editor actual no contiene código fuente Python.</translation>
-    </message>
-    <message>
         <location filename="../UI/PythonAstViewer.py" line="246"/>
         <source>Module</source>
         <translation>Módulo</translation>
@@ -55391,17 +55374,17 @@
     <message>
         <location filename="../UI/PythonAstViewer.py" line="210"/>
         <source>No editor has been opened.</source>
-        <translation>No hay abierto ningún editor.</translation>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/PythonAstViewer.py" line="221"/>
         <source>The current editor does not contain any source code.</source>
-        <translation>El editor actual no contiene código fuente.</translation>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/PythonAstViewer.py" line="227"/>
         <source>The current editor does not contain Python source code.</source>
-        <translation>El editor actual no contiene código fuente Python.</translation>
+        <translation type="unfinished"></translation>
     </message>
 </context>
 <context>
@@ -55409,177 +55392,172 @@
     <message>
         <location filename="../UI/PythonDisViewer.ui" line="69"/>
         <source>italic: current instruction</source>
-        <translation>cursiva: instrucción actual</translation>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/PythonDisViewer.ui" line="76"/>
         <source>bold: labeled instruction</source>
-        <translation>negrita: instrucción etiquetada</translation>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/PythonDisViewer.py" line="73"/>
         <source>Line</source>
-        <translation>Línea</translation>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/PythonDisViewer.py" line="73"/>
         <source>Offset</source>
-        <translation>Desplazamiento</translation>
+        <translation type="unfinished">Desplazamiento</translation>
     </message>
     <message>
         <location filename="../UI/PythonDisViewer.py" line="73"/>
         <source>Operation</source>
-        <translation>Operación</translation>
+        <translation type="unfinished">Operación</translation>
     </message>
     <message>
         <location filename="../UI/PythonDisViewer.py" line="73"/>
         <source>Parameters</source>
-        <translation>Parámetros</translation>
+        <translation type="unfinished">Parámetros</translation>
     </message>
     <message>
         <location filename="../UI/PythonDisViewer.py" line="73"/>
         <source>Interpreted Parameters</source>
-        <translation>Parámetros Interpretados</translation>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/PythonDisViewer.py" line="96"/>
         <source>Expand All</source>
-        <translation>Expandir Todo</translation>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/PythonDisViewer.py" line="98"/>
         <source>Collapse All</source>
-        <translation>Contraer Todo</translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="349"/>
-        <source>The current editor text does not contain Python source.</source>
-        <translation type="obsolete">El texto en el editor actual no contiene código fuente Python.</translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="694"/>
+        <translation type="unfinished">Contraer Todo</translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="696"/>
         <source>Code Object &apos;{0}&apos;</source>
-        <translation>Objeto de Código &apos;{0}&apos;</translation>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/PythonDisViewer.py" line="63"/>
         <source>Disassembly</source>
-        <translation>Desensamblado</translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="450"/>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="452"/>
         <source>No editor has been opened.</source>
-        <translation>No hay ningún editor abierto.</translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="462"/>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="464"/>
         <source>The current editor does not contain any source code.</source>
-        <translation>El editor actual no contiene código fuente.</translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="468"/>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="470"/>
         <source>The current editor does not contain Python source code.</source>
-        <translation>El editor actual no contiene código fuente Python.</translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="517"/>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="519"/>
         <source>Disassembly of last traceback</source>
-        <translation>Desensamblado de la última traza de llamadas</translation>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/PythonDisViewer.py" line="76"/>
         <source>Key</source>
-        <translation>Clave</translation>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/PythonDisViewer.py" line="76"/>
         <source>Value</source>
-        <translation>Valor</translation>
+        <translation type="unfinished">Valor</translation>
     </message>
     <message>
         <location filename="../UI/PythonDisViewer.py" line="81"/>
         <source>Show Code Info</source>
-        <translation>Mostrar Info del Código</translation>
+        <translation type="unfinished">Mostrar Info del Código</translation>
     </message>
     <message>
         <location filename="../UI/PythonDisViewer.py" line="101"/>
         <source>Configure...</source>
-        <translation>Configurar...</translation>
+        <translation type="unfinished">Configurar...</translation>
     </message>
     <message>
         <location filename="../UI/PythonDisViewer.py" line="94"/>
         <source>Hide</source>
-        <translation>Ocultar</translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="809"/>
-        <source>Name</source>
-        <translation>Nombre</translation>
+        <translation type="unfinished">Ocultar</translation>
     </message>
     <message>
         <location filename="../UI/PythonDisViewer.py" line="811"/>
-        <source>Filename</source>
-        <translation>Nombre de archivo</translation>
+        <source>Name</source>
+        <translation type="unfinished">Nombre</translation>
     </message>
     <message>
         <location filename="../UI/PythonDisViewer.py" line="813"/>
-        <source>First Line</source>
-        <translation>Primera Línea</translation>
+        <source>Filename</source>
+        <translation type="unfinished">Nombre de archivo</translation>
     </message>
     <message>
         <location filename="../UI/PythonDisViewer.py" line="815"/>
-        <source>Argument Count</source>
-        <translation>Número de Argumentos</translation>
+        <source>First Line</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/PythonDisViewer.py" line="817"/>
+        <source>Argument Count</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="819"/>
         <source>Positional-only Arguments</source>
-        <translation>Solo Argumentos Posicionales</translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="823"/>
-        <source>Number of Locals</source>
-        <translation>Número de Variables Locales</translation>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/PythonDisViewer.py" line="825"/>
-        <source>Stack Size</source>
-        <translation>Tamaño de Pila</translation>
+        <source>Number of Locals</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/PythonDisViewer.py" line="827"/>
+        <source>Stack Size</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="829"/>
         <source>Flags</source>
-        <translation>Flags</translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="830"/>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="832"/>
         <source>Constants</source>
-        <translation>Constantes</translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="833"/>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="835"/>
         <source>Names</source>
-        <translation>Nombres</translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="836"/>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="838"/>
         <source>Variable Names</source>
-        <translation>Nombres de Variable</translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="839"/>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="841"/>
         <source>Free Variables</source>
-        <translation>Variables Libres</translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="842"/>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="844"/>
         <source>Cell Variables</source>
-        <translation>Variables Celda</translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="820"/>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="822"/>
         <source>Keyword-only Arguments</source>
-        <translation>Solo Argumentos por Clave</translation>
+        <translation type="unfinished"></translation>
     </message>
 </context>
 <context>
@@ -55630,11 +55608,6 @@
         <translation>Entornos de Python</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/PythonPage.ui" line="121"/>
-        <source>Please configure the Python environments on the &apos;Python2 Debugger&apos; page and the &apos;Python3 Debugger&apos; page.</source>
-        <translation type="obsolete">Por favor, configure los entornos de Python en la páginas &apos;Depurador de Python 2&apos; y &apos;Depurador de Python3&apos;.</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/PythonPage.ui" line="131"/>
         <source>Currently selected environments</source>
         <translation>Entornos seleccionados actualmente</translation>
@@ -55657,57 +55630,57 @@
     <message>
         <location filename="../Preferences/ConfigurationPages/PythonPage.ui" line="121"/>
         <source>Please configure the Python environments on the &apos;Python3 Debugger&apos; page.</source>
-        <translation>Por favor, configure los entornos de Python in la página de &apos;Depurador de Python3&apos;.</translation>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/PythonPage.ui" line="197"/>
         <source>AST Viewer</source>
-        <translation>Visor AST</translation>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/PythonPage.ui" line="248"/>
         <source>Error Messages:</source>
-        <translation>Mensajes de Error:</translation>
+        <translation type="unfinished">Mensajes de Error:</translation>
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/PythonPage.ui" line="261"/>
         <source>Select the color for error messages</source>
-        <translation>Seleccionar el color para mensajes de error</translation>
+        <translation type="unfinished">Seleccionar el color para mensajes de error</translation>
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/PythonPage.ui" line="242"/>
         <source>Disassembly Viewer</source>
-        <translation>Visor de Desensamblado</translation>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/PythonPage.ui" line="284"/>
         <source>Current Instruction:</source>
-        <translation>Instrucción Actual:</translation>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/PythonPage.ui" line="297"/>
         <source>Select the color for the current instruction</source>
-        <translation>Seleccionar el color para la instrucción actual</translation>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/PythonPage.ui" line="307"/>
         <source>Labeled Instruction:</source>
-        <translation>Instrucción Etiquetada:</translation>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/PythonPage.ui" line="320"/>
         <source>Select the color for labeled instructions</source>
-        <translation>Seleccionar el color para instrucciones etiquetadas</translation>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/PythonPage.ui" line="330"/>
         <source>Select to show code information subsections expanded</source>
-        <translation>Seleccionar mara mostrar expandidas las subsecciones de información de código</translation>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/PythonPage.ui" line="333"/>
         <source>Show all code information subsections</source>
-        <translation>Mostrar todas las subsecciones de información de código</translation>
+        <translation type="unfinished"></translation>
     </message>
 </context>
 <context>
@@ -71035,22 +71008,22 @@
 <context>
     <name>SyntaxCheckerPlugin</name>
     <message>
-        <location filename="../Plugins/PluginSyntaxChecker.py" line="259"/>
+        <location filename="../Plugins/PluginSyntaxChecker.py" line="261"/>
         <source>Check Syntax</source>
         <translation>Verificar sintaxis</translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginSyntaxChecker.py" line="259"/>
+        <location filename="../Plugins/PluginSyntaxChecker.py" line="261"/>
         <source>&amp;Syntax...</source>
         <translation>&amp;Sintaxis...</translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginSyntaxChecker.py" line="168"/>
+        <location filename="../Plugins/PluginSyntaxChecker.py" line="170"/>
         <source>Check syntax.</source>
         <translation>Verificar sintaxis.</translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginSyntaxChecker.py" line="263"/>
+        <location filename="../Plugins/PluginSyntaxChecker.py" line="265"/>
         <source>&lt;b&gt;Check Syntax...&lt;/b&gt;&lt;p&gt;This checks Python files for syntax errors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Verificar Sintaxis...&lt;/b&gt;&lt;p&gt;Chequea archivos de Python buscando errores sintácticos.&lt;/p&gt;</translation>
     </message>
@@ -71654,12 +71627,12 @@
     <message>
         <location filename="../Tasks/TaskFilterConfigDialog.py" line="37"/>
         <source>Test</source>
-        <translation>Probar</translation>
+        <translation type="unfinished">Probar</translation>
     </message>
     <message>
         <location filename="../Tasks/TaskFilterConfigDialog.py" line="38"/>
         <source>Documentation</source>
-        <translation>Documentación</translation>
+        <translation type="unfinished">Documentación</translation>
     </message>
 </context>
 <context>
@@ -78314,3162 +78287,3162 @@
 <context>
     <name>ViewManager</name>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="635"/>
+        <location filename="../ViewManager/ViewManager.py" line="634"/>
         <source>New</source>
         <translation>Nuevo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="635"/>
+        <location filename="../ViewManager/ViewManager.py" line="634"/>
         <source>&amp;New</source>
         <translation>&amp;Nuevo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="635"/>
+        <location filename="../ViewManager/ViewManager.py" line="634"/>
         <source>Ctrl+N</source>
         <comment>File|New</comment>
         <translation>Ctrl+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="643"/>
+        <location filename="../ViewManager/ViewManager.py" line="642"/>
         <source>Open an empty editor window</source>
         <translation>Abre una ventana vacia en el editor</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="646"/>
+        <location filename="../ViewManager/ViewManager.py" line="645"/>
         <source>&lt;b&gt;New&lt;/b&gt;&lt;p&gt;An empty editor window will be created.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nuevo&lt;/b&gt;&lt;p&gt;Se creará una ventana vacia en el editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="654"/>
+        <location filename="../ViewManager/ViewManager.py" line="653"/>
         <source>Open</source>
         <translation>Abrir</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="654"/>
+        <location filename="../ViewManager/ViewManager.py" line="653"/>
         <source>&amp;Open...</source>
         <translation>&amp;Abrir...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="654"/>
+        <location filename="../ViewManager/ViewManager.py" line="653"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation>Ctrl+O</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="662"/>
+        <location filename="../ViewManager/ViewManager.py" line="661"/>
         <source>Open a file</source>
         <translation>Abrir un archivo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="664"/>
+        <location filename="../ViewManager/ViewManager.py" line="663"/>
         <source>&lt;b&gt;Open a file&lt;/b&gt;&lt;p&gt;You will be asked for the name of a file to be opened in an editor window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Abrir un archivo&lt;/b&gt;&lt;p&gt;Le preguntará el nombre del archivo para ser abierto en el editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="675"/>
+        <location filename="../ViewManager/ViewManager.py" line="674"/>
         <source>Close</source>
         <translation>Cerrar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="675"/>
+        <location filename="../ViewManager/ViewManager.py" line="674"/>
         <source>&amp;Close</source>
         <translation>&amp;Cerrar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="675"/>
+        <location filename="../ViewManager/ViewManager.py" line="674"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation>Ctrl+W</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="683"/>
+        <location filename="../ViewManager/ViewManager.py" line="682"/>
         <source>Close the current window</source>
         <translation>Cierra la ventana actual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="686"/>
+        <location filename="../ViewManager/ViewManager.py" line="685"/>
         <source>&lt;b&gt;Close Window&lt;/b&gt;&lt;p&gt;Close the current window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Cierra la ventana&lt;/b&gt;&lt;p&gt;Cierra la ventana actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="694"/>
+        <location filename="../ViewManager/ViewManager.py" line="693"/>
         <source>Close All</source>
         <translation>Cerrar todo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="694"/>
+        <location filename="../ViewManager/ViewManager.py" line="693"/>
         <source>Clos&amp;e All</source>
         <translation>Cerrar &amp;Todo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="698"/>
+        <location filename="../ViewManager/ViewManager.py" line="697"/>
         <source>Close all editor windows</source>
         <translation>Cerrar todas las ventanas del editor</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="701"/>
+        <location filename="../ViewManager/ViewManager.py" line="700"/>
         <source>&lt;b&gt;Close All Windows&lt;/b&gt;&lt;p&gt;Close all editor windows.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Cerrar todas las ventanas&lt;/b&gt;&lt;p&gt;Cierra todas las ventanas del editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="712"/>
         <source>Save</source>
         <translation>Guardar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="712"/>
         <source>&amp;Save</source>
         <translation>&amp;Guardar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="712"/>
         <source>Ctrl+S</source>
         <comment>File|Save</comment>
         <translation>Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="720"/>
+        <location filename="../ViewManager/ViewManager.py" line="719"/>
         <source>Save the current file</source>
         <translation>Guarda el archivo actual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="722"/>
+        <location filename="../ViewManager/ViewManager.py" line="721"/>
         <source>&lt;b&gt;Save File&lt;/b&gt;&lt;p&gt;Save the contents of current editor window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Guardar archivo&lt;/b&gt;&lt;p&gt;Almacena el contenido de la ventana de edición actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="729"/>
         <source>Save as</source>
         <translation>Guardar como</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="729"/>
         <source>Save &amp;as...</source>
         <translation>Guardar &amp;como...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="729"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation>Shift+Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="737"/>
+        <location filename="../ViewManager/ViewManager.py" line="736"/>
         <source>Save the current file to a new one</source>
         <translation>Guarda el archivo actual en uno nuevo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="739"/>
+        <location filename="../ViewManager/ViewManager.py" line="738"/>
         <source>&lt;b&gt;Save File as&lt;/b&gt;&lt;p&gt;Save the contents of current editor window to a new file. The file can be entered in a file selection dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Guardar archivo como&lt;/b&gt;&lt;p&gt;Guarda el contenido del archivo actual en uno nuevo. El archivo puede ser introducido en el cuadro de selección de archivos.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="764"/>
+        <location filename="../ViewManager/ViewManager.py" line="763"/>
         <source>Save all</source>
         <translation>Guardar todo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="769"/>
+        <location filename="../ViewManager/ViewManager.py" line="768"/>
         <source>Save all files</source>
         <translation>Guardar todos los archivos</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="771"/>
+        <location filename="../ViewManager/ViewManager.py" line="770"/>
         <source>&lt;b&gt;Save All Files&lt;/b&gt;&lt;p&gt;Save the contents of all editor windows.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Guardar todos los archivos&lt;/b&gt;&lt;p&gt;Guarda el contenido de todas las ventanas del editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="781"/>
+        <location filename="../ViewManager/ViewManager.py" line="780"/>
         <source>Print</source>
         <translation>Imprimir</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="781"/>
+        <location filename="../ViewManager/ViewManager.py" line="780"/>
         <source>&amp;Print</source>
         <translation>Im&amp;primir</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="781"/>
+        <location filename="../ViewManager/ViewManager.py" line="780"/>
         <source>Ctrl+P</source>
         <comment>File|Print</comment>
         <translation>Ctrl+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="788"/>
+        <location filename="../ViewManager/ViewManager.py" line="787"/>
         <source>Print the current file</source>
         <translation>Imprime el archivo actual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="790"/>
+        <location filename="../ViewManager/ViewManager.py" line="789"/>
         <source>&lt;b&gt;Print File&lt;/b&gt;&lt;p&gt;Print the contents of current editor window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Imprimir Archivo&lt;/b&gt;&lt;p&gt;Imprime el contenido del archivo en edición.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="816"/>
+        <location filename="../ViewManager/ViewManager.py" line="815"/>
         <source>Search File</source>
         <translation>Buscar archivo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="816"/>
+        <location filename="../ViewManager/ViewManager.py" line="815"/>
         <source>Search &amp;File...</source>
         <translation>B&amp;uscar Archivo...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="816"/>
+        <location filename="../ViewManager/ViewManager.py" line="815"/>
         <source>Alt+Ctrl+F</source>
         <comment>File|Search File</comment>
         <translation>Alt+Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="822"/>
+        <location filename="../ViewManager/ViewManager.py" line="821"/>
         <source>Search for a file</source>
         <translation>Buscar un archivo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="824"/>
+        <location filename="../ViewManager/ViewManager.py" line="823"/>
         <source>&lt;b&gt;Search File&lt;/b&gt;&lt;p&gt;Search for a file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Buscar archivo&lt;/b&gt;&lt;p&gt;Buscar un archivo.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="838"/>
+        <location filename="../ViewManager/ViewManager.py" line="837"/>
         <source>&amp;File</source>
         <translation>&amp;Archivo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="840"/>
+        <location filename="../ViewManager/ViewManager.py" line="839"/>
         <source>Open &amp;Recent Files</source>
         <translation>Abrir Archivos &amp;Recientes</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="843"/>
+        <location filename="../ViewManager/ViewManager.py" line="842"/>
         <source>Open &amp;Bookmarked Files</source>
         <translation>Abrir Archivos &amp;Marcados</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="891"/>
+        <location filename="../ViewManager/ViewManager.py" line="890"/>
         <source>File</source>
         <translation>Archivo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="914"/>
+        <location filename="../ViewManager/ViewManager.py" line="913"/>
         <source>Export as</source>
         <translation>Exportar como</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="938"/>
+        <location filename="../ViewManager/ViewManager.py" line="937"/>
         <source>Undo</source>
         <translation>Deshacer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="938"/>
+        <location filename="../ViewManager/ViewManager.py" line="937"/>
         <source>&amp;Undo</source>
         <translation>&amp;Deshacer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="938"/>
+        <location filename="../ViewManager/ViewManager.py" line="937"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation>Ctrl+Z</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="938"/>
+        <location filename="../ViewManager/ViewManager.py" line="937"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation>Alt+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="947"/>
+        <location filename="../ViewManager/ViewManager.py" line="946"/>
         <source>Undo the last change</source>
         <translation>Revierte el último cambio</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="949"/>
+        <location filename="../ViewManager/ViewManager.py" line="948"/>
         <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last change done in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Deshacer&lt;/b&gt;&lt;p&gt;Deshace el último cambio hecho en el editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="957"/>
+        <location filename="../ViewManager/ViewManager.py" line="956"/>
         <source>Redo</source>
         <translation>Rehacer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="957"/>
+        <location filename="../ViewManager/ViewManager.py" line="956"/>
         <source>&amp;Redo</source>
         <translation>&amp;Rehacer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="957"/>
+        <location filename="../ViewManager/ViewManager.py" line="956"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation>Ctrl+Shift+Z</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="965"/>
+        <location filename="../ViewManager/ViewManager.py" line="964"/>
         <source>Redo the last change</source>
         <translation>Rehace el último cambio</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="967"/>
+        <location filename="../ViewManager/ViewManager.py" line="966"/>
         <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last change done in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rehacer&lt;/b&gt;&lt;p&gt;Rehace el último cambio hecho en el editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="984"/>
+        <location filename="../ViewManager/ViewManager.py" line="983"/>
         <source>Revert to last saved state</source>
         <translation>Volver al último estado grabado</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="975"/>
+        <location filename="../ViewManager/ViewManager.py" line="974"/>
         <source>Re&amp;vert to last saved state</source>
         <translation>&amp;Volver al último estado grabado</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="975"/>
+        <location filename="../ViewManager/ViewManager.py" line="974"/>
         <source>Ctrl+Y</source>
         <comment>Edit|Revert</comment>
         <translation>Ctrl+Y</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="985"/>
         <source>&lt;b&gt;Revert to last saved state&lt;/b&gt;&lt;p&gt;Undo all changes up to the last saved state of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Volver al último estado grabado&lt;/b&gt;&lt;p&gt;Deshace todos los cambios desde la útlima grabación del archivo en edición.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <source>Cut</source>
         <translation>Cortar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <source>Cu&amp;t</source>
         <translation>Cor&amp;tar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation>Ctrl+X</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation>Shift+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1006"/>
+        <location filename="../ViewManager/ViewManager.py" line="1005"/>
         <source>Cut the selection</source>
         <translation>Corta lo seleccionado</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1008"/>
+        <location filename="../ViewManager/ViewManager.py" line="1007"/>
         <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected text of the current editor to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Cortar&lt;/b&gt;&lt;p&gt;Cortar el texto seleccionado y lo envia al portapapeles.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1017"/>
+        <location filename="../ViewManager/ViewManager.py" line="1016"/>
         <source>Copy</source>
         <translation>Copiar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1017"/>
+        <location filename="../ViewManager/ViewManager.py" line="1016"/>
         <source>&amp;Copy</source>
         <translation>&amp;Copiar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1017"/>
+        <location filename="../ViewManager/ViewManager.py" line="1016"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1017"/>
+        <location filename="../ViewManager/ViewManager.py" line="1016"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+Ins</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1026"/>
+        <location filename="../ViewManager/ViewManager.py" line="1025"/>
         <source>Copy the selection</source>
         <translation>Copia lo seleccionao</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1028"/>
+        <location filename="../ViewManager/ViewManager.py" line="1027"/>
         <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected text of the current editor to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Copiar&lt;/b&gt;&lt;p&gt;Copiar el texto seleccionado al portapapeles.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1037"/>
+        <location filename="../ViewManager/ViewManager.py" line="1036"/>
         <source>Paste</source>
         <translation>Pegar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1037"/>
+        <location filename="../ViewManager/ViewManager.py" line="1036"/>
         <source>&amp;Paste</source>
         <translation>&amp;Pegar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1037"/>
+        <location filename="../ViewManager/ViewManager.py" line="1036"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation>Ctrl+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1037"/>
+        <location filename="../ViewManager/ViewManager.py" line="1036"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation>Shift+Ins</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1046"/>
+        <location filename="../ViewManager/ViewManager.py" line="1045"/>
         <source>Paste the last cut/copied text</source>
         <translation>Pega el último texto copiado/cortado</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1048"/>
+        <location filename="../ViewManager/ViewManager.py" line="1047"/>
         <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the last cut/copied text from the clipboard to the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Pegar&lt;/b&gt;&lt;p&gt;Pegar el contenido del portapapeles en el editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1057"/>
+        <location filename="../ViewManager/ViewManager.py" line="1056"/>
         <source>Clear</source>
         <translation>Borrar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1057"/>
+        <location filename="../ViewManager/ViewManager.py" line="1056"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation>Alt+Shift+C</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1065"/>
+        <location filename="../ViewManager/ViewManager.py" line="1064"/>
         <source>Clear all text</source>
         <translation>Borra todo el texto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1067"/>
+        <location filename="../ViewManager/ViewManager.py" line="1066"/>
         <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Delete all text of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Borrar&lt;/b&gt;&lt;p&gt;Borra todo el texto del editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1092"/>
+        <location filename="../ViewManager/ViewManager.py" line="1091"/>
         <source>Indent</source>
         <translation>Sangrar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1092"/>
+        <location filename="../ViewManager/ViewManager.py" line="1091"/>
         <source>&amp;Indent</source>
         <translation>&amp;Sangrar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1092"/>
+        <location filename="../ViewManager/ViewManager.py" line="1091"/>
         <source>Ctrl+I</source>
         <comment>Edit|Indent</comment>
         <translation>Ctrl+I</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1100"/>
+        <location filename="../ViewManager/ViewManager.py" line="1099"/>
         <source>Indent line</source>
         <translation>Sangrar línea</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1102"/>
+        <location filename="../ViewManager/ViewManager.py" line="1101"/>
         <source>&lt;b&gt;Indent&lt;/b&gt;&lt;p&gt;Indents the current line or the lines of the selection by one level.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Sangrar&lt;/b&gt;&lt;p&gt;Aumenta el sangrado de la línea actual o de la selección de a un nivel.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1111"/>
+        <location filename="../ViewManager/ViewManager.py" line="1110"/>
         <source>Unindent</source>
         <translation>Quitar sangrado</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1111"/>
+        <location filename="../ViewManager/ViewManager.py" line="1110"/>
         <source>U&amp;nindent</source>
         <translation>&amp;Quitar sangrado</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1111"/>
+        <location filename="../ViewManager/ViewManager.py" line="1110"/>
         <source>Ctrl+Shift+I</source>
         <comment>Edit|Unindent</comment>
         <translation>Ctrl+Shift+I</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1119"/>
+        <location filename="../ViewManager/ViewManager.py" line="1118"/>
         <source>Unindent line</source>
         <translation>Quitar sangrado de línea</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1121"/>
+        <location filename="../ViewManager/ViewManager.py" line="1120"/>
         <source>&lt;b&gt;Unindent&lt;/b&gt;&lt;p&gt;Unindents the current line or the lines of the selection by one level.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Quitar sangrado&lt;/b&gt;&lt;p&gt;Quita el sangrado de la línea actual o de la selección de a un nivel.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1130"/>
+        <location filename="../ViewManager/ViewManager.py" line="1129"/>
         <source>Smart indent</source>
         <translation>Sangrado inteligente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1136"/>
+        <location filename="../ViewManager/ViewManager.py" line="1135"/>
         <source>Smart indent Line or Selection</source>
         <translation>Sangrado inteligente de Linea o Selección</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1138"/>
+        <location filename="../ViewManager/ViewManager.py" line="1137"/>
         <source>&lt;b&gt;Smart indent&lt;/b&gt;&lt;p&gt;Indents the current line or the lines of the current selection smartly.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Sangrado Inteligente&lt;/b&gt;&lt;p&gt;Sangra inteligentemente la línea actual o las lineas de la selección.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1147"/>
+        <location filename="../ViewManager/ViewManager.py" line="1146"/>
         <source>Comment</source>
         <translation>Comentario</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1147"/>
+        <location filename="../ViewManager/ViewManager.py" line="1146"/>
         <source>C&amp;omment</source>
         <translation>Co&amp;mentario</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1147"/>
+        <location filename="../ViewManager/ViewManager.py" line="1146"/>
         <source>Ctrl+M</source>
         <comment>Edit|Comment</comment>
         <translation>Ctrl+M</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1155"/>
+        <location filename="../ViewManager/ViewManager.py" line="1154"/>
         <source>Comment Line or Selection</source>
         <translation>Comentar línea o selección</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1157"/>
+        <location filename="../ViewManager/ViewManager.py" line="1156"/>
         <source>&lt;b&gt;Comment&lt;/b&gt;&lt;p&gt;Comments the current line or the lines of the current selection.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Comentario&lt;/b&gt;&lt;p&gt;Pasa a comentario la línea actual o las lineas de la selección.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1166"/>
+        <location filename="../ViewManager/ViewManager.py" line="1165"/>
         <source>Uncomment</source>
         <translation>Descomentar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1166"/>
+        <location filename="../ViewManager/ViewManager.py" line="1165"/>
         <source>Unco&amp;mment</source>
         <translation>Desc&amp;omentar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1166"/>
+        <location filename="../ViewManager/ViewManager.py" line="1165"/>
         <source>Alt+Ctrl+M</source>
         <comment>Edit|Uncomment</comment>
         <translation>Alt+Ctrl+M</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1174"/>
+        <location filename="../ViewManager/ViewManager.py" line="1173"/>
         <source>Uncomment Line or Selection</source>
         <translation>Descomentar  Línea o Selección</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1176"/>
+        <location filename="../ViewManager/ViewManager.py" line="1175"/>
         <source>&lt;b&gt;Uncomment&lt;/b&gt;&lt;p&gt;Uncomments the current line or the lines of the current selection.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Descomentar&lt;/b&gt;&lt;p&gt;Descomentar la linea actual o la selección.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1207"/>
+        <location filename="../ViewManager/ViewManager.py" line="1206"/>
         <source>Stream Comment</source>
         <translation>Bloque de comentarios</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1212"/>
+        <location filename="../ViewManager/ViewManager.py" line="1211"/>
         <source>Stream Comment Line or Selection</source>
         <translation>Pasar a bloque de comentarios la Línea o la Selección</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1215"/>
+        <location filename="../ViewManager/ViewManager.py" line="1214"/>
         <source>&lt;b&gt;Stream Comment&lt;/b&gt;&lt;p&gt;Stream comments the current line or the current selection.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Comentario Simple&lt;/b&gt;&lt;p&gt;Convierte la línea actual o selección actual en un comentario simple.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1224"/>
+        <location filename="../ViewManager/ViewManager.py" line="1223"/>
         <source>Box Comment</source>
         <translation>Caja de comentario</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1229"/>
+        <location filename="../ViewManager/ViewManager.py" line="1228"/>
         <source>Box Comment Line or Selection</source>
         <translation>Línea o Selección a Caja de Comentario</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1231"/>
+        <location filename="../ViewManager/ViewManager.py" line="1230"/>
         <source>&lt;b&gt;Box Comment&lt;/b&gt;&lt;p&gt;Box comments the current line or the lines of the current selection.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Caja de Comentario&lt;/b&gt;&lt;p&gt;Lleva la línea actual o líneas en la selección actual a una caja de comentario.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1240"/>
+        <location filename="../ViewManager/ViewManager.py" line="1239"/>
         <source>Select to brace</source>
         <translation>Seleccionar hasta la llave ( &apos;{&apos; o &apos;}&apos; )</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1240"/>
+        <location filename="../ViewManager/ViewManager.py" line="1239"/>
         <source>Select to &amp;brace</source>
         <translation>Seleccionar hasta la &amp;llave ( &apos;{&apos; o &apos;}&apos; )</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1240"/>
+        <location filename="../ViewManager/ViewManager.py" line="1239"/>
         <source>Ctrl+E</source>
         <comment>Edit|Select to brace</comment>
         <translation>Ctrl+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1247"/>
+        <location filename="../ViewManager/ViewManager.py" line="1246"/>
         <source>Select text to the matching brace</source>
         <translation>Seleccionar texto hasta la llave  ( &apos;{&apos; o &apos;}&apos; ) correspondiente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1249"/>
+        <location filename="../ViewManager/ViewManager.py" line="1248"/>
         <source>&lt;b&gt;Select to brace&lt;/b&gt;&lt;p&gt;Select text of the current editor to the matching brace.&lt;/p&gt;</source>
         <translation>&lt;b&gt; Seleccionar hasta la llave ( &apos;{&apos; o &apos;}&apos; )&lt;/b&gt;&lt;p&gt;Selecciona el texto del editor actual hasta la llave correspondiente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1258"/>
+        <location filename="../ViewManager/ViewManager.py" line="1257"/>
         <source>Select all</source>
         <translation>Seleccionar todo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1258"/>
+        <location filename="../ViewManager/ViewManager.py" line="1257"/>
         <source>&amp;Select all</source>
         <translation>Seleccionar &amp;todo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1258"/>
+        <location filename="../ViewManager/ViewManager.py" line="1257"/>
         <source>Ctrl+A</source>
         <comment>Edit|Select all</comment>
         <translation>Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1266"/>
+        <location filename="../ViewManager/ViewManager.py" line="1265"/>
         <source>Select all text</source>
         <translation>Seleccionar todo el texto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1268"/>
+        <location filename="../ViewManager/ViewManager.py" line="1267"/>
         <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Select all text of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Seleccionar todo&lt;/b&gt;&lt;p&gt;Selecciona todo el texto del editor actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1275"/>
         <source>Deselect all</source>
         <translation>Deseleccionar todo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1275"/>
         <source>&amp;Deselect all</source>
         <translation>&amp;Deseleccionar todo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1275"/>
         <source>Alt+Ctrl+A</source>
         <comment>Edit|Deselect all</comment>
         <translation>Alt+Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1283"/>
+        <location filename="../ViewManager/ViewManager.py" line="1282"/>
         <source>Deselect all text</source>
         <translation>Deseleccionar todo el texto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1285"/>
+        <location filename="../ViewManager/ViewManager.py" line="1284"/>
         <source>&lt;b&gt;Deselect All&lt;/b&gt;&lt;p&gt;Deselect all text of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Deseleccionar todo&lt;/b&gt;&lt;p&gt;Deselecciona todo el texto del editor actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1300"/>
+        <location filename="../ViewManager/ViewManager.py" line="1299"/>
         <source>Convert Line End Characters</source>
         <translation>Convertir caracteres de Fin de Línea</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1293"/>
+        <location filename="../ViewManager/ViewManager.py" line="1292"/>
         <source>Convert &amp;Line End Characters</source>
         <translation>Convertir caracteres de &amp;Fin de Línea</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1302"/>
+        <location filename="../ViewManager/ViewManager.py" line="1301"/>
         <source>&lt;b&gt;Convert Line End Characters&lt;/b&gt;&lt;p&gt;Convert the line end characters to the currently set type.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Convertir Caracteres de fin de Línea&lt;/b&gt;&lt;p&gt;Convierte los caracteres de fin de línea al tipo establecido actualmente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1316"/>
+        <location filename="../ViewManager/ViewManager.py" line="1315"/>
         <source>Shorten empty lines</source>
         <translation>Convertir lineas vacías</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1318"/>
+        <location filename="../ViewManager/ViewManager.py" line="1317"/>
         <source>&lt;b&gt;Shorten empty lines&lt;/b&gt;&lt;p&gt;Shorten lines consisting solely of whitespace characters.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Convertir lineas vacías&lt;/b&gt;&lt;p&gt;Convierte líneas que contienen solamente espacios a un caracter de salto de línea.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1481"/>
+        <location filename="../ViewManager/ViewManager.py" line="1480"/>
         <source>Move left one character</source>
         <translation>Mover a la izquierda un carácter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1481"/>
+        <location filename="../ViewManager/ViewManager.py" line="1480"/>
         <source>Left</source>
         <translation>Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1495"/>
+        <location filename="../ViewManager/ViewManager.py" line="1494"/>
         <source>Move right one character</source>
         <translation>Mover a la derecha un carácter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1495"/>
+        <location filename="../ViewManager/ViewManager.py" line="1494"/>
         <source>Right</source>
         <translation>Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1509"/>
+        <location filename="../ViewManager/ViewManager.py" line="1508"/>
         <source>Move up one line</source>
         <translation>Mover arriba una línea</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1509"/>
+        <location filename="../ViewManager/ViewManager.py" line="1508"/>
         <source>Up</source>
         <translation>Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1521"/>
+        <location filename="../ViewManager/ViewManager.py" line="1520"/>
         <source>Move down one line</source>
         <translation>Mover abajo una línea</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1521"/>
+        <location filename="../ViewManager/ViewManager.py" line="1520"/>
         <source>Down</source>
         <translation>Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1533"/>
+        <location filename="../ViewManager/ViewManager.py" line="1532"/>
         <source>Move left one word part</source>
         <translation>Mover a la izquierda una parte de palabra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1567"/>
+        <location filename="../ViewManager/ViewManager.py" line="1566"/>
         <source>Alt+Left</source>
         <translation>Alt+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1547"/>
+        <location filename="../ViewManager/ViewManager.py" line="1546"/>
         <source>Move right one word part</source>
         <translation>Mover a la derecha una parte de palabra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2448"/>
+        <location filename="../ViewManager/ViewManager.py" line="2446"/>
         <source>Alt+Right</source>
         <translation>Alt+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1561"/>
+        <location filename="../ViewManager/ViewManager.py" line="1560"/>
         <source>Move left one word</source>
         <translation>Mover a la izquierda una palabra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1612"/>
+        <location filename="../ViewManager/ViewManager.py" line="1611"/>
         <source>Ctrl+Left</source>
         <translation>Ctrl+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1576"/>
+        <location filename="../ViewManager/ViewManager.py" line="1575"/>
         <source>Move right one word</source>
         <translation>Mover a la derecha una palabra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2202"/>
+        <location filename="../ViewManager/ViewManager.py" line="2200"/>
         <source>Ctrl+Right</source>
         <translation>Ctrl+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2403"/>
+        <location filename="../ViewManager/ViewManager.py" line="2401"/>
         <source>Home</source>
         <translation>Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1615"/>
+        <location filename="../ViewManager/ViewManager.py" line="1614"/>
         <source>Alt+Home</source>
         <translation>Alt+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2418"/>
+        <location filename="../ViewManager/ViewManager.py" line="2416"/>
         <source>End</source>
         <translation>End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1638"/>
+        <location filename="../ViewManager/ViewManager.py" line="1637"/>
         <source>Scroll view down one line</source>
         <translation>Scroll hacia abajo una línea</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1728"/>
+        <location filename="../ViewManager/ViewManager.py" line="1727"/>
         <source>Ctrl+Down</source>
         <translation>Ctrl+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1650"/>
+        <location filename="../ViewManager/ViewManager.py" line="1649"/>
         <source>Scroll view up one line</source>
         <translation>Scroll hacia arriba una línea</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1711"/>
+        <location filename="../ViewManager/ViewManager.py" line="1710"/>
         <source>Ctrl+Up</source>
         <translation>Ctrl+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1661"/>
+        <location filename="../ViewManager/ViewManager.py" line="1660"/>
         <source>Move up one paragraph</source>
         <translation>Mover arriba un párrafo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1661"/>
+        <location filename="../ViewManager/ViewManager.py" line="1660"/>
         <source>Alt+Up</source>
         <translation>Alt+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1670"/>
+        <location filename="../ViewManager/ViewManager.py" line="1669"/>
         <source>Move down one paragraph</source>
         <translation>Mover abajo un párrafo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1670"/>
+        <location filename="../ViewManager/ViewManager.py" line="1669"/>
         <source>Alt+Down</source>
         <translation>Alt+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1682"/>
+        <location filename="../ViewManager/ViewManager.py" line="1681"/>
         <source>Move up one page</source>
         <translation>Mover arriba una página</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1682"/>
+        <location filename="../ViewManager/ViewManager.py" line="1681"/>
         <source>PgUp</source>
         <translation>PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1691"/>
+        <location filename="../ViewManager/ViewManager.py" line="1690"/>
         <source>Move down one page</source>
         <translation>Mover abajo una línea</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1691"/>
+        <location filename="../ViewManager/ViewManager.py" line="1690"/>
         <source>PgDown</source>
         <translation>PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1714"/>
+        <location filename="../ViewManager/ViewManager.py" line="1713"/>
         <source>Ctrl+Home</source>
         <translation>Ctrl+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1731"/>
+        <location filename="../ViewManager/ViewManager.py" line="1730"/>
         <source>Ctrl+End</source>
         <translation>Ctrl+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1737"/>
+        <location filename="../ViewManager/ViewManager.py" line="1736"/>
         <source>Indent one level</source>
         <translation>Indentar un nivel</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1737"/>
+        <location filename="../ViewManager/ViewManager.py" line="1736"/>
         <source>Tab</source>
         <translation>Tab</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1746"/>
+        <location filename="../ViewManager/ViewManager.py" line="1745"/>
         <source>Unindent one level</source>
         <translation>Desindentar un nivel</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1746"/>
+        <location filename="../ViewManager/ViewManager.py" line="1745"/>
         <source>Shift+Tab</source>
         <translation>Shift+Tab</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1756"/>
+        <location filename="../ViewManager/ViewManager.py" line="1755"/>
         <source>Extend selection left one character</source>
         <translation>Extender selección un carácter a la izquierda</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1756"/>
+        <location filename="../ViewManager/ViewManager.py" line="1755"/>
         <source>Shift+Left</source>
         <translation>Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1771"/>
+        <location filename="../ViewManager/ViewManager.py" line="1770"/>
         <source>Extend selection right one character</source>
         <translation>Extender selección un carácter a la derecha</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1771"/>
+        <location filename="../ViewManager/ViewManager.py" line="1770"/>
         <source>Shift+Right</source>
         <translation>Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1786"/>
+        <location filename="../ViewManager/ViewManager.py" line="1785"/>
         <source>Extend selection up one line</source>
         <translation>Extender selección hacia arriba una línea</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1786"/>
+        <location filename="../ViewManager/ViewManager.py" line="1785"/>
         <source>Shift+Up</source>
         <translation>Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1801"/>
+        <location filename="../ViewManager/ViewManager.py" line="1800"/>
         <source>Extend selection down one line</source>
         <translation>Extender selección hacia abajo una línea</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1801"/>
+        <location filename="../ViewManager/ViewManager.py" line="1800"/>
         <source>Shift+Down</source>
         <translation>Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1816"/>
+        <location filename="../ViewManager/ViewManager.py" line="1815"/>
         <source>Extend selection left one word part</source>
         <translation>Extender selección a la izquierda una parte de palabra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1852"/>
+        <location filename="../ViewManager/ViewManager.py" line="1851"/>
         <source>Alt+Shift+Left</source>
         <translation>Alt+Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1830"/>
+        <location filename="../ViewManager/ViewManager.py" line="1829"/>
         <source>Extend selection right one word part</source>
         <translation>Extender selección a la derecha una parte de palabra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2463"/>
+        <location filename="../ViewManager/ViewManager.py" line="2461"/>
         <source>Alt+Shift+Right</source>
         <translation>Alt+Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1844"/>
+        <location filename="../ViewManager/ViewManager.py" line="1843"/>
         <source>Extend selection left one word</source>
         <translation>Extender selección a la izquierda una palabra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2557"/>
+        <location filename="../ViewManager/ViewManager.py" line="2555"/>
         <source>Ctrl+Shift+Left</source>
         <translation>Ctrl+Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1861"/>
+        <location filename="../ViewManager/ViewManager.py" line="1860"/>
         <source>Extend selection right one word</source>
         <translation>Extender selección a la derecha una palabra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2219"/>
+        <location filename="../ViewManager/ViewManager.py" line="2217"/>
         <source>Ctrl+Shift+Right</source>
         <translation>Ctrl+Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1890"/>
+        <location filename="../ViewManager/ViewManager.py" line="1889"/>
         <source>Shift+Home</source>
         <translation>Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2323"/>
+        <location filename="../ViewManager/ViewManager.py" line="2321"/>
         <source>Alt+Shift+Home</source>
         <translation>Alt+Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1907"/>
+        <location filename="../ViewManager/ViewManager.py" line="1906"/>
         <source>Shift+End</source>
         <translation>Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1913"/>
+        <location filename="../ViewManager/ViewManager.py" line="1912"/>
         <source>Extend selection up one paragraph</source>
         <translation>Extender selección hacia arriba un párrafo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1913"/>
+        <location filename="../ViewManager/ViewManager.py" line="1912"/>
         <source>Alt+Shift+Up</source>
         <translation>Alt+Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1926"/>
+        <location filename="../ViewManager/ViewManager.py" line="1925"/>
         <source>Extend selection down one paragraph</source>
         <translation>Extender selección hacia abajo un párrafo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1926"/>
+        <location filename="../ViewManager/ViewManager.py" line="1925"/>
         <source>Alt+Shift+Down</source>
         <translation>Alt+Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1939"/>
+        <location filename="../ViewManager/ViewManager.py" line="1938"/>
         <source>Extend selection up one page</source>
         <translation>Extender selección arriba una página</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1939"/>
+        <location filename="../ViewManager/ViewManager.py" line="1938"/>
         <source>Shift+PgUp</source>
         <translation>Shift+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1951"/>
+        <location filename="../ViewManager/ViewManager.py" line="1950"/>
         <source>Extend selection down one page</source>
         <translation>Extender selección hacia abajo una línea</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1951"/>
+        <location filename="../ViewManager/ViewManager.py" line="1950"/>
         <source>Shift+PgDown</source>
         <translation>Shift+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1978"/>
+        <location filename="../ViewManager/ViewManager.py" line="1977"/>
         <source>Ctrl+Shift+Home</source>
         <translation>Ctrl+Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1995"/>
+        <location filename="../ViewManager/ViewManager.py" line="1994"/>
         <source>Ctrl+Shift+End</source>
         <translation>Ctrl+Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2001"/>
+        <location filename="../ViewManager/ViewManager.py" line="2000"/>
         <source>Delete previous character</source>
         <translation>Borrar carácter anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2001"/>
+        <location filename="../ViewManager/ViewManager.py" line="2000"/>
         <source>Backspace</source>
         <translation>Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2013"/>
+        <location filename="../ViewManager/ViewManager.py" line="2012"/>
         <source>Shift+Backspace</source>
         <translation>Shift+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2032"/>
+        <location filename="../ViewManager/ViewManager.py" line="2031"/>
         <source>Delete current character</source>
         <translation>Borrar carácter actual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2032"/>
+        <location filename="../ViewManager/ViewManager.py" line="2031"/>
         <source>Del</source>
         <translation>Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2046"/>
+        <location filename="../ViewManager/ViewManager.py" line="2045"/>
         <source>Delete word to left</source>
         <translation>Borrar palabra a la izquierda</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2046"/>
+        <location filename="../ViewManager/ViewManager.py" line="2045"/>
         <source>Ctrl+Backspace</source>
         <translation>Ctrl+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2057"/>
+        <location filename="../ViewManager/ViewManager.py" line="2056"/>
         <source>Delete word to right</source>
         <translation>Borrar palabra a la derecha</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2057"/>
+        <location filename="../ViewManager/ViewManager.py" line="2056"/>
         <source>Ctrl+Del</source>
         <translation>Ctrl+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2067"/>
+        <location filename="../ViewManager/ViewManager.py" line="2066"/>
         <source>Delete line to left</source>
         <translation>Borrar línea a la izquierda</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2067"/>
+        <location filename="../ViewManager/ViewManager.py" line="2066"/>
         <source>Ctrl+Shift+Backspace</source>
         <translation>Ctrl+Shift+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2078"/>
+        <location filename="../ViewManager/ViewManager.py" line="2077"/>
         <source>Delete line to right</source>
         <translation>Borrar línea a la derecha</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2087"/>
+        <location filename="../ViewManager/ViewManager.py" line="2086"/>
         <source>Ctrl+Shift+Del</source>
         <translation>Ctrl+Shift+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2093"/>
+        <location filename="../ViewManager/ViewManager.py" line="2092"/>
         <source>Insert new line</source>
         <translation>Insertar nueva línea</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2093"/>
+        <location filename="../ViewManager/ViewManager.py" line="2092"/>
         <source>Return</source>
         <translation>Return</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2093"/>
+        <location filename="../ViewManager/ViewManager.py" line="2092"/>
         <source>Enter</source>
         <translation>Enter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2116"/>
+        <location filename="../ViewManager/ViewManager.py" line="2115"/>
         <source>Delete current line</source>
         <translation>Borrar línea actual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2116"/>
+        <location filename="../ViewManager/ViewManager.py" line="2115"/>
         <source>Ctrl+Shift+L</source>
         <translation>Ctrl+Shift+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2127"/>
+        <location filename="../ViewManager/ViewManager.py" line="2126"/>
         <source>Duplicate current line</source>
         <translation>Duplicar línea actual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2127"/>
+        <location filename="../ViewManager/ViewManager.py" line="2126"/>
         <source>Ctrl+D</source>
         <translation>Ctrl+D</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2138"/>
+        <location filename="../ViewManager/ViewManager.py" line="2137"/>
         <source>Swap current and previous lines</source>
         <translation>Intercambiar línea actual con la anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2138"/>
+        <location filename="../ViewManager/ViewManager.py" line="2137"/>
         <source>Ctrl+T</source>
         <translation>Ctrl+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2162"/>
+        <location filename="../ViewManager/ViewManager.py" line="2160"/>
         <source>Cut current line</source>
         <translation>Cortar línea actual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2162"/>
+        <location filename="../ViewManager/ViewManager.py" line="2160"/>
         <source>Alt+Shift+L</source>
         <translation>Alt+Shift+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2172"/>
+        <location filename="../ViewManager/ViewManager.py" line="2170"/>
         <source>Copy current line</source>
         <translation>Copiar línea actual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2172"/>
+        <location filename="../ViewManager/ViewManager.py" line="2170"/>
         <source>Ctrl+Shift+T</source>
         <translation>Ctrl+Shift+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2183"/>
+        <location filename="../ViewManager/ViewManager.py" line="2181"/>
         <source>Toggle insert/overtype</source>
         <translation>Alternar insertar/sobreescribir</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2183"/>
+        <location filename="../ViewManager/ViewManager.py" line="2181"/>
         <source>Ins</source>
         <translation>Ins</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2747"/>
+        <location filename="../ViewManager/ViewManager.py" line="2745"/>
         <source>Convert selection to lower case</source>
         <translation>Convertir selección a minúsculas</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2747"/>
+        <location filename="../ViewManager/ViewManager.py" line="2745"/>
         <source>Alt+Shift+U</source>
         <translation>Alt+Shift+U</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2759"/>
+        <location filename="../ViewManager/ViewManager.py" line="2757"/>
         <source>Convert selection to upper case</source>
         <translation>Convertir selección a mayúsculas</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2759"/>
+        <location filename="../ViewManager/ViewManager.py" line="2757"/>
         <source>Ctrl+Shift+U</source>
         <translation>Ctrl+Shift+U</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2205"/>
+        <location filename="../ViewManager/ViewManager.py" line="2203"/>
         <source>Alt+End</source>
         <translation>Alt+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2225"/>
+        <location filename="../ViewManager/ViewManager.py" line="2223"/>
         <source>Formfeed</source>
         <translation>Formfeed</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2234"/>
+        <location filename="../ViewManager/ViewManager.py" line="2232"/>
         <source>Escape</source>
         <translation>Escape</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2234"/>
+        <location filename="../ViewManager/ViewManager.py" line="2232"/>
         <source>Esc</source>
         <translation>Esc</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2243"/>
+        <location filename="../ViewManager/ViewManager.py" line="2241"/>
         <source>Extend rectangular selection down one line</source>
         <translation>Extender selección rectangular hacia abajo una línea</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2243"/>
+        <location filename="../ViewManager/ViewManager.py" line="2241"/>
         <source>Alt+Ctrl+Down</source>
         <translation>Alt+Ctrl+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2259"/>
+        <location filename="../ViewManager/ViewManager.py" line="2257"/>
         <source>Extend rectangular selection up one line</source>
         <translation>Extender selección rectangular hacia arriba una línea</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2259"/>
+        <location filename="../ViewManager/ViewManager.py" line="2257"/>
         <source>Alt+Ctrl+Up</source>
         <translation>Alt+Ctrl+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2274"/>
+        <location filename="../ViewManager/ViewManager.py" line="2272"/>
         <source>Extend rectangular selection left one character</source>
         <translation>Extender selección rectangular a la izquierda un carácter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2274"/>
+        <location filename="../ViewManager/ViewManager.py" line="2272"/>
         <source>Alt+Ctrl+Left</source>
         <translation>Alt+Ctrl+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2292"/>
+        <location filename="../ViewManager/ViewManager.py" line="2290"/>
         <source>Extend rectangular selection right one character</source>
         <translation>Extender selección rectangular a la derecha un carácter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2292"/>
+        <location filename="../ViewManager/ViewManager.py" line="2290"/>
         <source>Alt+Ctrl+Right</source>
         <translation>Alt+Ctrl+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2348"/>
+        <location filename="../ViewManager/ViewManager.py" line="2346"/>
         <source>Extend rectangular selection up one page</source>
         <translation>Extender selección rectangular hacia arriba una página</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2363"/>
+        <location filename="../ViewManager/ViewManager.py" line="2361"/>
         <source>Extend rectangular selection down one page</source>
         <translation>Extender selección rectangular hacia abajo una página</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2381"/>
+        <location filename="../ViewManager/ViewManager.py" line="2379"/>
         <source>Duplicate current selection</source>
         <translation>Duplicar selección actual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2381"/>
+        <location filename="../ViewManager/ViewManager.py" line="2379"/>
         <source>Ctrl+Shift+D</source>
         <translation>Ctrl+Shift+D</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3354"/>
+        <location filename="../ViewManager/ViewManager.py" line="3352"/>
         <source>&amp;Search</source>
         <translation>&amp;Buscar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2788"/>
+        <location filename="../ViewManager/ViewManager.py" line="2786"/>
         <source>&amp;Edit</source>
         <translation>&amp;Editar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2845"/>
+        <location filename="../ViewManager/ViewManager.py" line="2843"/>
         <source>Edit</source>
         <translation>Editar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3449"/>
+        <location filename="../ViewManager/ViewManager.py" line="3447"/>
         <source>Search</source>
         <translation>Buscar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2877"/>
+        <location filename="../ViewManager/ViewManager.py" line="2875"/>
         <source>&amp;Search...</source>
         <translation>&amp;Buscar...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2877"/>
+        <location filename="../ViewManager/ViewManager.py" line="2875"/>
         <source>Ctrl+F</source>
         <comment>Search|Search</comment>
         <translation>Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2885"/>
+        <location filename="../ViewManager/ViewManager.py" line="2883"/>
         <source>Search for a text</source>
         <translation>Buscar un texto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2887"/>
+        <location filename="../ViewManager/ViewManager.py" line="2885"/>
         <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;Buscar&lt;/b&gt;&lt;p&gt;Buscar texto en el editor. En el diálogo muestra opciones e indica el texto de búsqueda.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2897"/>
+        <location filename="../ViewManager/ViewManager.py" line="2895"/>
         <source>Search next</source>
         <translation>Buscar siguiente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2897"/>
+        <location filename="../ViewManager/ViewManager.py" line="2895"/>
         <source>Search &amp;next</source>
         <translation>Buscar &amp;Siguiente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2897"/>
+        <location filename="../ViewManager/ViewManager.py" line="2895"/>
         <source>F3</source>
         <comment>Search|Search next</comment>
         <translation>F3</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2918"/>
+        <location filename="../ViewManager/ViewManager.py" line="2916"/>
         <source>Search previous</source>
         <translation>Buscar anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2918"/>
+        <location filename="../ViewManager/ViewManager.py" line="2916"/>
         <source>Search &amp;previous</source>
         <translation>Buscar a&amp;nterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2918"/>
+        <location filename="../ViewManager/ViewManager.py" line="2916"/>
         <source>Shift+F3</source>
         <comment>Search|Search previous</comment>
         <translation>Shift+F3</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3003"/>
+        <location filename="../ViewManager/ViewManager.py" line="3001"/>
         <source>Replace</source>
         <translation>Reemplazar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3003"/>
+        <location filename="../ViewManager/ViewManager.py" line="3001"/>
         <source>&amp;Replace...</source>
         <translation>&amp;Reemplazar...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3003"/>
+        <location filename="../ViewManager/ViewManager.py" line="3001"/>
         <source>Ctrl+R</source>
         <comment>Search|Replace</comment>
         <translation>Ctrl+R</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3008"/>
+        <source>Replace some text</source>
+        <translation>Reemplazar un texto</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3010"/>
-        <source>Replace some text</source>
-        <translation>Reemplazar un texto</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3012"/>
         <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;Reemplazar&lt;/b&gt;&lt;p&gt;Buscar un texto en el editor actual y reemplazarlo. Se muestra un diálogo para introducir el texto de búsqueda, el texto de reemplazo y las opciones para buscar y reemplazar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3389"/>
+        <location filename="../ViewManager/ViewManager.py" line="3387"/>
         <source>Quicksearch</source>
         <translation>Búsqueda rápida</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3090"/>
+        <location filename="../ViewManager/ViewManager.py" line="3088"/>
         <source>&amp;Quicksearch</source>
         <translation>Búsqueda &amp;rápida</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3090"/>
+        <location filename="../ViewManager/ViewManager.py" line="3088"/>
         <source>Ctrl+Shift+K</source>
         <comment>Search|Quicksearch</comment>
         <translation>Ctrl+Shift+K</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3098"/>
+        <location filename="../ViewManager/ViewManager.py" line="3096"/>
         <source>Perform a quicksearch</source>
         <translation>Llevar a cabo búsqueda rápida</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3111"/>
+        <location filename="../ViewManager/ViewManager.py" line="3109"/>
         <source>Quicksearch backwards</source>
         <translation>Búsqueda rápida hacia atras</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3111"/>
+        <location filename="../ViewManager/ViewManager.py" line="3109"/>
         <source>Quicksearch &amp;backwards</source>
         <translation>Búsqueda rápida hacia &amp;atras</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3111"/>
+        <location filename="../ViewManager/ViewManager.py" line="3109"/>
         <source>Ctrl+Shift+J</source>
         <comment>Search|Quicksearch backwards</comment>
         <translation>Ctrl+Shift+J</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3121"/>
+        <location filename="../ViewManager/ViewManager.py" line="3119"/>
         <source>Perform a quicksearch backwards</source>
         <translation>Llevar a cabo búsqueda rápida hacia atrás</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3133"/>
+        <location filename="../ViewManager/ViewManager.py" line="3131"/>
         <source>Quicksearch extend</source>
         <translation>Extender Búsqueda Rápida</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3133"/>
+        <location filename="../ViewManager/ViewManager.py" line="3131"/>
         <source>Quicksearch e&amp;xtend</source>
         <translation>E&amp;xtender Búsqueda Rápida</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3133"/>
+        <location filename="../ViewManager/ViewManager.py" line="3131"/>
         <source>Ctrl+Shift+H</source>
         <comment>Search|Quicksearch extend</comment>
         <translation>Ctrl+Shift+H</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3141"/>
+        <location filename="../ViewManager/ViewManager.py" line="3139"/>
         <source>Extend the quicksearch to the end of the current word</source>
         <translation>Extender la búsqueda rápida al final de la palabra actual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3144"/>
+        <location filename="../ViewManager/ViewManager.py" line="3142"/>
         <source>&lt;b&gt;Quicksearch extend&lt;/b&gt;&lt;p&gt;This extends the quicksearch text to the end of the word currently found.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Extender búsqueda rápida&lt;/b&gt;&lt;p&gt;Extiende la búsqueda rápida al final de la palabra actual.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3160"/>
+        <source>Goto Line</source>
+        <translation>Ir a línea</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3152"/>
+        <source>&amp;Goto Line...</source>
+        <translation>&amp;Ir a Linea...</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3152"/>
+        <source>Ctrl+G</source>
+        <comment>Search|Goto Line</comment>
+        <translation>Ctrl+G</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3162"/>
-        <source>Goto Line</source>
-        <translation>Ir a línea</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3154"/>
-        <source>&amp;Goto Line...</source>
-        <translation>&amp;Ir a Linea...</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3154"/>
-        <source>Ctrl+G</source>
-        <comment>Search|Goto Line</comment>
-        <translation>Ctrl+G</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3164"/>
         <source>&lt;b&gt;Goto Line&lt;/b&gt;&lt;p&gt;Go to a specific line of text in the current editor. A dialog is shown to enter the linenumber.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ir la la línea&lt;/b&gt;&lt;p&gt;Ir a una línea específica del texto en el editor actual. Se muestra un diálogo para introducir el número de línea.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3179"/>
+        <source>Goto Brace</source>
+        <translation>Ir a paréntesis</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3171"/>
+        <source>Goto &amp;Brace</source>
+        <translation>Ir al Parén&amp;tesis</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3171"/>
+        <source>Ctrl+L</source>
+        <comment>Search|Goto Brace</comment>
+        <translation>Ctrl+L</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3181"/>
-        <source>Goto Brace</source>
-        <translation>Ir a paréntesis</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3173"/>
-        <source>Goto &amp;Brace</source>
-        <translation>Ir al Parén&amp;tesis</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3173"/>
-        <source>Ctrl+L</source>
-        <comment>Search|Goto Brace</comment>
-        <translation>Ctrl+L</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3183"/>
         <source>&lt;b&gt;Goto Brace&lt;/b&gt;&lt;p&gt;Go to the matching brace in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ir a llave (&apos;{&apos; o &apos;}&apos;)&lt;/b&gt;&lt;p&gt;Ir a la llave correspondiente en el editor actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3261"/>
+        <location filename="../ViewManager/ViewManager.py" line="3259"/>
         <source>Search in Files</source>
         <translation>Buscar en archivos</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3261"/>
+        <location filename="../ViewManager/ViewManager.py" line="3259"/>
         <source>Search in &amp;Files...</source>
         <translation>Buscar en arc&amp;hivos...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3261"/>
+        <location filename="../ViewManager/ViewManager.py" line="3259"/>
         <source>Shift+Ctrl+F</source>
         <comment>Search|Search Files</comment>
         <translation>Shift+Ctrl+F</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3267"/>
+        <source>Search for a text in files</source>
+        <translation>Buscar texto en archivos</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3269"/>
-        <source>Search for a text in files</source>
-        <translation>Buscar texto en archivos</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3271"/>
         <source>&lt;b&gt;Search in Files&lt;/b&gt;&lt;p&gt;Search for some text in the files of a directory tree or the project. A dialog is shown to enter the searchtext and options for the search and to display the result.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Buscar en Archivos&lt;/b&gt;&lt;p&gt;Buscar un texto en los archivos de un árbol de directorios o en el proyecto. Se muestra un diálogo para introducir el texto de búsqueda y opciones para búsqueda y visualización del resultado.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3487"/>
         <source>Zoom in</source>
         <translation>Aumentar zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3487"/>
         <source>Zoom &amp;in</source>
         <translation>A&amp;umentar Zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3487"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation>Ctrl++</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3496"/>
+        <source>Zoom in on the text</source>
+        <translation>Zoom sobre el texto</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3498"/>
-        <source>Zoom in on the text</source>
-        <translation>Zoom sobre el texto</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3500"/>
         <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;Aumentar zoom&lt;/b&gt;&lt;p&gt;Aumentar zoom sobre el texto. Hace que el texto sea de mayor tamaño.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3508"/>
+        <location filename="../ViewManager/ViewManager.py" line="3506"/>
         <source>Zoom out</source>
         <translation>Disminuir Zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3508"/>
+        <location filename="../ViewManager/ViewManager.py" line="3506"/>
         <source>Zoom &amp;out</source>
         <translation>Dismi&amp;nuir Zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3508"/>
+        <location filename="../ViewManager/ViewManager.py" line="3506"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation>Ctrl+-</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3515"/>
+        <source>Zoom out on the text</source>
+        <translation>Disminuir zoom en el texto</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3517"/>
-        <source>Zoom out on the text</source>
-        <translation>Disminuir zoom en el texto</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3519"/>
         <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;Disminuir zoom&lt;/b&gt;&lt;p&gt;Disminuir zoom sobre el texto. Hace que el texto sea de menor tamaño.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3546"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>Zoom</source>
         <translation>Zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3546"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>&amp;Zoom</source>
         <translation>&amp;Zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3546"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>Ctrl+#</source>
         <comment>View|Zoom</comment>
         <translation>Ctrl+#</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3554"/>
+        <location filename="../ViewManager/ViewManager.py" line="3552"/>
         <source>Zoom the text</source>
         <translation>Zoom sobre el texto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3556"/>
+        <location filename="../ViewManager/ViewManager.py" line="3554"/>
         <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 sobre el texto. Abre un diálogo donde se puede introducir el tamaño deseado.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3567"/>
+        <source>Toggle all folds</source>
+        <translation>Recoger/Desplegar los anidamientos</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3563"/>
+        <source>&amp;Toggle all folds</source>
+        <translation>Recoger/Desplegar los &amp;anidamientos</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3569"/>
-        <source>Toggle all folds</source>
-        <translation>Recoger/Desplegar los anidamientos</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3565"/>
-        <source>&amp;Toggle all folds</source>
-        <translation>Recoger/Desplegar los &amp;anidamientos</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3571"/>
         <source>&lt;b&gt;Toggle all folds&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Recoger/desplegar todos los anidamientos&lt;/b&gt;&lt;p&gt;Recoge/despliega todos los anidamientos en el editor actual.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3583"/>
+        <source>Toggle all folds (including children)</source>
+        <translation>Recoger/Desplegar todos los anidamientos (inc. hijos)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3577"/>
+        <source>Toggle all &amp;folds (including children)</source>
+        <translation>Recoger/Desplegar todos los a&amp;nidamientos (inc. hijos)</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3585"/>
-        <source>Toggle all folds (including children)</source>
-        <translation>Recoger/Desplegar todos los anidamientos (inc. hijos)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3579"/>
-        <source>Toggle all &amp;folds (including children)</source>
-        <translation>Recoger/Desplegar todos los a&amp;nidamientos (inc. hijos)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3587"/>
         <source>&lt;b&gt;Toggle all folds (including children)&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor including all children.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Recoger/desplegar todos los anidamientos (incluyendo hijos)&lt;/b&gt;&lt;p&gt;Recoge/despliega todos los anidamientos en el editor actual, incluyendo todos los hijos.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3599"/>
+        <source>Toggle current fold</source>
+        <translation>Recoger/Desplegar el anidamiento actual</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3595"/>
+        <source>Toggle &amp;current fold</source>
+        <translation>Recoger/Desplega&amp;r el anidamiento actual</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3601"/>
-        <source>Toggle current fold</source>
-        <translation>Recoger/Desplegar el anidamiento actual</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3597"/>
-        <source>Toggle &amp;current fold</source>
-        <translation>Recoger/Desplega&amp;r el anidamiento actual</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3603"/>
         <source>&lt;b&gt;Toggle current fold&lt;/b&gt;&lt;p&gt;Toggle the folds of the current line of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Recoger/desplegar anidamiento actual&lt;/b&gt;&lt;p&gt;Recoge/despliega el anidamiento de la línea actual en el editor actual.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3631"/>
+        <source>Remove all highlights</source>
+        <translation>Quitar todos los resaltes</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3633"/>
-        <source>Remove all highlights</source>
-        <translation>Quitar todos los resaltes</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3635"/>
         <source>&lt;b&gt;Remove all highlights&lt;/b&gt;&lt;p&gt;Remove the highlights of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Eliminar todos los resaltes de texto&lt;/b&gt;&lt;p&gt;Elimina todos los resaltes de texto en todos los editories.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3681"/>
+        <location filename="../ViewManager/ViewManager.py" line="3679"/>
         <source>Split view</source>
         <translation>Dividir vista</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3681"/>
+        <location filename="../ViewManager/ViewManager.py" line="3679"/>
         <source>&amp;Split view</source>
         <translation>&amp;Dividir vista</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3684"/>
+        <source>Add a split to the view</source>
+        <translation>Agregar una división a la vista</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3686"/>
-        <source>Add a split to the view</source>
-        <translation>Agregar una división a la vista</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3688"/>
         <source>&lt;b&gt;Split view&lt;/b&gt;&lt;p&gt;Add a split to the view.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Dividir vista&lt;/b&gt;&lt;p&gt;Añade una nueva división a la vista.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3696"/>
+        <location filename="../ViewManager/ViewManager.py" line="3694"/>
         <source>Arrange horizontally</source>
         <translation>Organizar horizontalmente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3696"/>
+        <location filename="../ViewManager/ViewManager.py" line="3694"/>
         <source>Arrange &amp;horizontally</source>
         <translation>Or&amp;ganizar horizontalmente</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3698"/>
+        <source>Arrange the splitted views horizontally</source>
+        <translation>Organizar las vistas divididas horizontalmente</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3700"/>
-        <source>Arrange the splitted views horizontally</source>
-        <translation>Organizar las vistas divididas horizontalmente</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3702"/>
         <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Organizar horizontalmente&lt;/b&gt;&lt;p&gt;Organiza las vistas divididas horizontalmente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3711"/>
+        <location filename="../ViewManager/ViewManager.py" line="3709"/>
         <source>Remove split</source>
         <translation>Quitar división</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3711"/>
+        <location filename="../ViewManager/ViewManager.py" line="3709"/>
         <source>&amp;Remove split</source>
         <translation>&amp;Quitar división</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3714"/>
+        <source>Remove the current split</source>
+        <translation>Eliminar división actual</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3716"/>
-        <source>Remove the current split</source>
-        <translation>Eliminar división actual</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3718"/>
         <source>&lt;b&gt;Remove split&lt;/b&gt;&lt;p&gt;Remove the current split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Eliminar división&lt;/b&gt;&lt;p&gt;Elimina la división actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3726"/>
+        <location filename="../ViewManager/ViewManager.py" line="3724"/>
         <source>Next split</source>
         <translation>Próxima división</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3726"/>
+        <location filename="../ViewManager/ViewManager.py" line="3724"/>
         <source>&amp;Next split</source>
         <translation>Pró&amp;xima división</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3726"/>
+        <location filename="../ViewManager/ViewManager.py" line="3724"/>
         <source>Ctrl+Alt+N</source>
         <comment>View|Next split</comment>
         <translation>Ctrl+Alt+N</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3731"/>
+        <source>Move to the next split</source>
+        <translation>Mover a la siguiente división</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3733"/>
-        <source>Move to the next split</source>
-        <translation>Mover a la siguiente división</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3735"/>
         <source>&lt;b&gt;Next split&lt;/b&gt;&lt;p&gt;Move to the next split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Siguiente división&lt;/b&gt;&lt;p&gt;Mover a la siguiente división.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3743"/>
+        <location filename="../ViewManager/ViewManager.py" line="3741"/>
         <source>Previous split</source>
         <translation>División anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3743"/>
+        <location filename="../ViewManager/ViewManager.py" line="3741"/>
         <source>&amp;Previous split</source>
         <translation>Divi&amp;sión anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3743"/>
+        <location filename="../ViewManager/ViewManager.py" line="3741"/>
         <source>Ctrl+Alt+P</source>
         <comment>View|Previous split</comment>
         <translation>Ctrl+Alt+P</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3747"/>
+        <source>Move to the previous split</source>
+        <translation>Mover a la división anterior</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3749"/>
-        <source>Move to the previous split</source>
-        <translation>Mover a la división anterior</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3751"/>
         <source>&lt;b&gt;Previous split&lt;/b&gt;&lt;p&gt;Move to the previous split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;División anterior&lt;/b&gt;&lt;p&gt;Mover a la división anterior.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3835"/>
+        <location filename="../ViewManager/ViewManager.py" line="3833"/>
         <source>&amp;View</source>
         <translation>&amp;Ver</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3872"/>
+        <location filename="../ViewManager/ViewManager.py" line="3870"/>
         <source>View</source>
         <translation>Ver</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3906"/>
+        <source>Start Macro Recording</source>
+        <translation>Comenzar grabación de macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3900"/>
+        <source>S&amp;tart Macro Recording</source>
+        <translation>Comenzar &amp;grabación de macro</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3908"/>
-        <source>Start Macro Recording</source>
-        <translation>Comenzar grabación de macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3902"/>
-        <source>S&amp;tart Macro Recording</source>
-        <translation>Comenzar &amp;grabación de macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3910"/>
         <source>&lt;b&gt;Start Macro Recording&lt;/b&gt;&lt;p&gt;Start recording editor commands into a new macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Comenzar Grabación de Macro&lt;/b&gt;&lt;p&gt;Comenzar grabación de comandos de editor como una nueva macro.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3920"/>
+        <source>Stop Macro Recording</source>
+        <translation>Detener Grabación de Macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3916"/>
+        <source>Sto&amp;p Macro Recording</source>
+        <translation>Detene&amp;r grabación de macro</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3922"/>
-        <source>Stop Macro Recording</source>
-        <translation>Detener Grabación de Macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3918"/>
-        <source>Sto&amp;p Macro Recording</source>
-        <translation>Detene&amp;r grabación de macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3924"/>
         <source>&lt;b&gt;Stop Macro Recording&lt;/b&gt;&lt;p&gt;Stop recording editor commands into a new macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Detener Grabación de Macro&lt;/b&gt;&lt;p&gt;Detener grabación de comandos de editor a una nueva macro.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3934"/>
+        <source>Run Macro</source>
+        <translation>Ejecutar macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3930"/>
+        <source>&amp;Run Macro</source>
+        <translation>Ejecuta&amp;r macro</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3936"/>
-        <source>Run Macro</source>
-        <translation>Ejecutar macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3932"/>
-        <source>&amp;Run Macro</source>
-        <translation>Ejecuta&amp;r macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3938"/>
         <source>&lt;b&gt;Run Macro&lt;/b&gt;&lt;p&gt;Run a previously recorded editor macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ejecutar Macro&lt;/b&gt;&lt;p&gt;Ejecutar una macro de editor grabada anteriormente.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3948"/>
+        <source>Delete Macro</source>
+        <translation>Borrar macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3944"/>
+        <source>&amp;Delete Macro</source>
+        <translation>&amp;Borrar macro</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3950"/>
-        <source>Delete Macro</source>
-        <translation>Borrar macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3946"/>
-        <source>&amp;Delete Macro</source>
-        <translation>&amp;Borrar macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3952"/>
         <source>&lt;b&gt;Delete Macro&lt;/b&gt;&lt;p&gt;Delete a previously recorded editor macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Eliminar Macro&lt;/b&gt;&lt;p&gt;Eliminar una macro de editor grabada anteriormente.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3962"/>
+        <source>Load Macro</source>
+        <translation>Cargar macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3958"/>
+        <source>&amp;Load Macro</source>
+        <translation>&amp;Cargar macro</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3964"/>
-        <source>Load Macro</source>
-        <translation>Cargar macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3960"/>
-        <source>&amp;Load Macro</source>
-        <translation>&amp;Cargar macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3966"/>
         <source>&lt;b&gt;Load Macro&lt;/b&gt;&lt;p&gt;Load an editor macro from a file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Cargar Macro&lt;/b&gt;&lt;p&gt;Cargar desde archivo una macro de editor grabada anteriormente.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3976"/>
+        <source>Save Macro</source>
+        <translation>Guardar macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3972"/>
+        <source>&amp;Save Macro</source>
+        <translation>&amp;Guardar macro</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3978"/>
-        <source>Save Macro</source>
-        <translation>Guardar macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3974"/>
-        <source>&amp;Save Macro</source>
-        <translation>&amp;Guardar macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3980"/>
         <source>&lt;b&gt;Save Macro&lt;/b&gt;&lt;p&gt;Save a previously recorded editor macro to a file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Guardar Macro&lt;/b&gt;&lt;p&gt;Guarda en un archivo una macro de editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3996"/>
+        <location filename="../ViewManager/ViewManager.py" line="3994"/>
         <source>&amp;Macros</source>
         <translation>&amp;Macros</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4022"/>
+        <location filename="../ViewManager/ViewManager.py" line="4020"/>
         <source>Toggle Bookmark</source>
         <translation>Alternar Marcador</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4014"/>
+        <location filename="../ViewManager/ViewManager.py" line="4012"/>
         <source>&amp;Toggle Bookmark</source>
         <translation>Al&amp;ternar marcador</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4014"/>
+        <location filename="../ViewManager/ViewManager.py" line="4012"/>
         <source>Alt+Ctrl+T</source>
         <comment>Bookmark|Toggle</comment>
         <translation>Alt+Ctrl+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4024"/>
+        <location filename="../ViewManager/ViewManager.py" line="4022"/>
         <source>&lt;b&gt;Toggle Bookmark&lt;/b&gt;&lt;p&gt;Toggle a bookmark at the current line of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Alternar Marcador&lt;/b&gt;&lt;p&gt;Alterna un marcador en la línea actual del editor actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4041"/>
+        <location filename="../ViewManager/ViewManager.py" line="4039"/>
         <source>Next Bookmark</source>
         <translation>Siguiente marcador</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4033"/>
+        <location filename="../ViewManager/ViewManager.py" line="4031"/>
         <source>&amp;Next Bookmark</source>
         <translation>Siguie&amp;nte marcador</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4033"/>
+        <location filename="../ViewManager/ViewManager.py" line="4031"/>
         <source>Ctrl+PgDown</source>
         <comment>Bookmark|Next</comment>
         <translation>Ctrl+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4043"/>
+        <location filename="../ViewManager/ViewManager.py" line="4041"/>
         <source>&lt;b&gt;Next Bookmark&lt;/b&gt;&lt;p&gt;Go to next bookmark of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Siguiente Marcador&lt;/b&gt;&lt;p&gt;Avanzar al siguiente marcador del editor actual.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4057"/>
+        <source>Previous Bookmark</source>
+        <translation>Marcador anterior</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4049"/>
+        <source>&amp;Previous Bookmark</source>
+        <translation>Marcador an&amp;terior</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4049"/>
+        <source>Ctrl+PgUp</source>
+        <comment>Bookmark|Previous</comment>
+        <translation>Ctrl+PgUp</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4059"/>
-        <source>Previous Bookmark</source>
-        <translation>Marcador anterior</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4051"/>
-        <source>&amp;Previous Bookmark</source>
-        <translation>Marcador an&amp;terior</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4051"/>
-        <source>Ctrl+PgUp</source>
-        <comment>Bookmark|Previous</comment>
-        <translation>Ctrl+PgUp</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4061"/>
         <source>&lt;b&gt;Previous Bookmark&lt;/b&gt;&lt;p&gt;Go to previous bookmark of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Anterior Marcador&lt;/b&gt;&lt;p&gt;Retroceder al anterior marcador del editor actual.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4074"/>
+        <source>Clear Bookmarks</source>
+        <translation>Borrar todos los marcadores</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <source>&amp;Clear Bookmarks</source>
+        <translation>Borrar todos los mar&amp;cadores</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <source>Alt+Ctrl+C</source>
+        <comment>Bookmark|Clear</comment>
+        <translation>Alt+Ctrl+C</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4076"/>
-        <source>Clear Bookmarks</source>
-        <translation>Borrar todos los marcadores</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4069"/>
-        <source>&amp;Clear Bookmarks</source>
-        <translation>Borrar todos los mar&amp;cadores</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4069"/>
-        <source>Alt+Ctrl+C</source>
-        <comment>Bookmark|Clear</comment>
-        <translation>Alt+Ctrl+C</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4078"/>
         <source>&lt;b&gt;Clear Bookmarks&lt;/b&gt;&lt;p&gt;Clear bookmarks of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Borrar todos los marcadores&lt;/b&gt;&lt;p&gt;Borra todos los marcadores de todos los editores.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4090"/>
+        <source>Goto Syntax Error</source>
+        <translation>Ir al error de sintaxis</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4084"/>
+        <source>&amp;Goto Syntax Error</source>
+        <translation>&amp;Ir al error de sintaxis</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4092"/>
-        <source>Goto Syntax Error</source>
-        <translation>Ir al error de sintaxis</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4086"/>
-        <source>&amp;Goto Syntax Error</source>
-        <translation>&amp;Ir al error de sintaxis</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4094"/>
         <source>&lt;b&gt;Goto Syntax Error&lt;/b&gt;&lt;p&gt;Go to next syntax error of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ir al Error de Sintaxis&lt;/b&gt;&lt;p&gt;Ir al siguiente error de sintaxis del editor actual.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4105"/>
+        <source>Clear Syntax Errors</source>
+        <translation>Borrar Errores de Sintaxis</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4100"/>
+        <source>Clear &amp;Syntax Errors</source>
+        <translation>Borrar Errores de &amp;Sintaxis</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4107"/>
-        <source>Clear Syntax Errors</source>
-        <translation>Borrar Errores de Sintaxis</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4102"/>
-        <source>Clear &amp;Syntax Errors</source>
-        <translation>Borrar Errores de &amp;Sintaxis</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4109"/>
         <source>&lt;b&gt;Clear Syntax Errors&lt;/b&gt;&lt;p&gt;Clear syntax errors of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Borrar Errores de Sintaxis&lt;/b&gt;&lt;p&gt;Borra los errores de sintaxis de todos los editores.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4175"/>
+        <source>Next uncovered line</source>
+        <translation>Siguiente línea sin cobertura</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4169"/>
+        <source>&amp;Next uncovered line</source>
+        <translation>Siguie&amp;nte línea sin cobertura</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4177"/>
-        <source>Next uncovered line</source>
-        <translation>Siguiente línea sin cobertura</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4171"/>
-        <source>&amp;Next uncovered line</source>
-        <translation>Siguie&amp;nte línea sin cobertura</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4179"/>
         <source>&lt;b&gt;Next uncovered line&lt;/b&gt;&lt;p&gt;Go to next line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Siguiente línea sin cobertura&lt;/b&gt;&lt;p&gt;Ir a la siguiente línea del editor actual marcada como sin cobertura.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4194"/>
+        <source>Previous uncovered line</source>
+        <translation>Anterior línea sin cobertura</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4186"/>
+        <source>&amp;Previous uncovered line</source>
+        <translation>Anteri&amp;or línea sin cobertura</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4196"/>
-        <source>Previous uncovered line</source>
-        <translation>Anterior línea sin cobertura</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4188"/>
-        <source>&amp;Previous uncovered line</source>
-        <translation>Anteri&amp;or línea sin cobertura</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4198"/>
         <source>&lt;b&gt;Previous uncovered line&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Anterior línea sin cobertura&lt;/b&gt;&lt;p&gt;Ir a la anterior línea del editor actual marcada como sin cobertura.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4212"/>
+        <source>Next Task</source>
+        <translation>Siguiente Tarea</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4206"/>
+        <source>&amp;Next Task</source>
+        <translation>Siguie&amp;nte Tarea</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4214"/>
-        <source>Next Task</source>
-        <translation>Siguiente Tarea</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4208"/>
-        <source>&amp;Next Task</source>
-        <translation>Siguie&amp;nte Tarea</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4216"/>
         <source>&lt;b&gt;Next Task&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a task.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Siguiente Tarea&lt;/b&gt;&lt;p&gt;Ir a la siguiente línea en el editor actual que tiene una tarea.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4229"/>
+        <source>Previous Task</source>
+        <translation>Tarea anterior</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4222"/>
+        <source>&amp;Previous Task</source>
+        <translation>Tarea anteri&amp;or</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4231"/>
-        <source>Previous Task</source>
-        <translation>Tarea anterior</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4224"/>
-        <source>&amp;Previous Task</source>
-        <translation>Tarea anteri&amp;or</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4233"/>
         <source>&lt;b&gt;Previous Task&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a task.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Tarea Anterior&lt;/b&gt;&lt;p&gt;Ir a la línea anterior en el editor actual que tiene una tarea.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4287"/>
+        <location filename="../ViewManager/ViewManager.py" line="4285"/>
         <source>&amp;Bookmarks</source>
         <translation>&amp;Marcadores</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4333"/>
+        <location filename="../ViewManager/ViewManager.py" line="4331"/>
         <source>Bookmarks</source>
         <translation>Marcadores</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4485"/>
+        <location filename="../ViewManager/ViewManager.py" line="4483"/>
         <source>Open files</source>
         <translation>Abrir Archivos</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4529"/>
+        <location filename="../ViewManager/ViewManager.py" line="4527"/>
         <source>File Modified</source>
         <translation>Archivo Modificado</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5373"/>
+        <location filename="../ViewManager/ViewManager.py" line="5371"/>
         <source>&amp;Clear</source>
         <translation>&amp;Limpiar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5367"/>
+        <location filename="../ViewManager/ViewManager.py" line="5365"/>
         <source>&amp;Add</source>
         <translation>&amp;Agregar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5370"/>
+        <location filename="../ViewManager/ViewManager.py" line="5368"/>
         <source>&amp;Edit...</source>
         <translation>&amp;Editar...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3435"/>
+        <location filename="../ViewManager/ViewManager.py" line="3433"/>
         <source>Quicksearch Textedit</source>
         <translation>Editor de texto de Búsqueda Rápida</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2938"/>
+        <location filename="../ViewManager/ViewManager.py" line="2936"/>
         <source>Clear search markers</source>
         <translation>Limpiar marcadores de búsqueda</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2938"/>
+        <location filename="../ViewManager/ViewManager.py" line="2936"/>
         <source>Ctrl+3</source>
         <comment>Search|Clear search markers</comment>
         <translation>Ctrl+3</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2946"/>
+        <location filename="../ViewManager/ViewManager.py" line="2944"/>
         <source>Clear all displayed search markers</source>
         <translation>Limpiar todos los marcadores de texto mostrados</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2948"/>
+        <location filename="../ViewManager/ViewManager.py" line="2946"/>
         <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;Limpiar marcadores de búsqueda&lt;/b&gt;&lt;p&gt;Limpiar todos los marcadores de búsqueda mostrados.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="2904"/>
+        <source>Search next occurrence of text</source>
+        <translation>Buscar siguiente ocurrencia del texto</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="2906"/>
-        <source>Search next occurrence of text</source>
-        <translation>Buscar siguiente ocurrencia del texto</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2908"/>
         <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;Buscar siguiente&lt;/b&gt;&lt;p&gt;Buscar la siguiente ocurrencia de un texto en el editor actual. Se reutilizan el texto de búsqueda introducido anteriormente y sus opciones.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="2924"/>
+        <source>Search previous occurrence of text</source>
+        <translation>Buscar anterior ocurrencia del texto</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="2926"/>
-        <source>Search previous occurrence of text</source>
-        <translation>Buscar anterior ocurrencia del texto</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2928"/>
         <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;Buscar anterior&lt;/b&gt;&lt;p&gt;Buscar la anterior ocurrencia de un texto en el editor actual. Se reutilizan el texto de búsqueda introducido anteriormente y sus opciones.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3100"/>
+        <location filename="../ViewManager/ViewManager.py" line="3098"/>
         <source>&lt;b&gt;Quicksearch&lt;/b&gt;&lt;p&gt;This activates the quicksearch function of the IDE by giving focus to the quicksearch entry field. If this field is already active and contains text, it searches for the next occurrence of this text.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Búsqueda Rápida&lt;/b&gt;&lt;p&gt;Activa la función de busqueda rápida de la IDE, dando el foco al campo de entrada de búsqueda rápida. Si este campo ya está activo y contiene texto, busca la siguiente ocurerncia de este texto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3124"/>
+        <location filename="../ViewManager/ViewManager.py" line="3122"/>
         <source>&lt;b&gt;Quicksearch backwards&lt;/b&gt;&lt;p&gt;This searches the previous occurrence of the quicksearch text.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Búsqueda rápida hacia atras&lt;/b&gt;&lt;p&gt;Busca la ocurrencia anterior del texto de búsqueda rapida.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3408"/>
+        <location filename="../ViewManager/ViewManager.py" line="3406"/>
         <source>&lt;p&gt;Enter the searchtext directly into this field. The search will be performed case insensitive. The quicksearch function is activated upon activation of the quicksearch next action (default key Ctrl+Shift+K), if this entry field does not have the input focus. Otherwise it searches for the next occurrence of the text entered. The quicksearch backwards action (default key Ctrl+Shift+J) searches backward. Activating the &apos;quicksearch extend&apos; action (default key Ctrl+Shift+H) extends the current searchtext to the end of the currently found word. The quicksearch can be ended by pressing the Return key while the quicksearch entry has the the input focus.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Introduzca el texto de búsqueda directamente en este campo. La búsqueda se llevará a cabo sin tener en cuenta mayúsculas/minúsculas. La búsqueda rápida se activa a partir de la acción de siguiente búsqueda rapida (tecla por defecto Ctrl+Shift+K), si este campo de entrada no tiene el foco de input. En cualquier otro caso, busca la siguiente ocurrencia del texto introducido. La acción de búsqueda rápida hacia atrás (tecla por defecto Ctrl+Shift+J) busca hacia atrás. Activando la opción &apos;extender búsqueda rápida&apos; (tecla por defecto Ctrl+Shift+H) extiende la busqueda de texto actual hasta el final de la palabra actual. La búsqueda rápida se puede finalizar pulsando la tecla de retorno mientras la entrada de búsqueda rápida  tiene el foco de input.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1414"/>
+        <location filename="../ViewManager/ViewManager.py" line="1413"/>
         <source>Calltip</source>
         <translation>Consejo de llamada (calltip)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1414"/>
+        <location filename="../ViewManager/ViewManager.py" line="1413"/>
         <source>&amp;Calltip</source>
         <translation>&amp;Consejo de llamada (calltip)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1421"/>
+        <location filename="../ViewManager/ViewManager.py" line="1420"/>
         <source>Show Calltips</source>
         <translation>Mostrar Consejos de llamada (calltips)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1423"/>
+        <location filename="../ViewManager/ViewManager.py" line="1422"/>
         <source>&lt;b&gt;Calltip&lt;/b&gt;&lt;p&gt;Show calltips based on the characters immediately to the left of the cursor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Consejo de llamada (calltip)&lt;/b&gt;&lt;p&gt;Muestra consejos de llamada basándose en los caracteres inmediatamente a la izquierda del cursor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="799"/>
+        <location filename="../ViewManager/ViewManager.py" line="798"/>
         <source>Print Preview</source>
         <translation>Presentación preliminar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="804"/>
+        <location filename="../ViewManager/ViewManager.py" line="803"/>
         <source>Print preview of the current file</source>
         <translation>Presentación preliminar del archivo actual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="806"/>
+        <location filename="../ViewManager/ViewManager.py" line="805"/>
         <source>&lt;b&gt;Print Preview&lt;/b&gt;&lt;p&gt;Print preview of the current editor window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Presentación Preliminar&lt;/b&gt;&lt;p&gt;Presentación preliminar de la ventana del editor actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2103"/>
+        <location filename="../ViewManager/ViewManager.py" line="2102"/>
         <source>Insert new line below current line</source>
         <translation>Insertar nueva línea debajo de la línea actual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2103"/>
+        <location filename="../ViewManager/ViewManager.py" line="2102"/>
         <source>Shift+Return</source>
         <translation>Shift+Return</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2103"/>
+        <location filename="../ViewManager/ViewManager.py" line="2102"/>
         <source>Shift+Enter</source>
         <translation>Shift+Entrar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3281"/>
+        <location filename="../ViewManager/ViewManager.py" line="3279"/>
         <source>Replace in Files</source>
         <translation>Reemplazar en Archivos</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3281"/>
+        <location filename="../ViewManager/ViewManager.py" line="3279"/>
         <source>Replace in F&amp;iles...</source>
         <translation>Reemplazar en Arch&amp;ivos...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3281"/>
+        <location filename="../ViewManager/ViewManager.py" line="3279"/>
         <source>Shift+Ctrl+R</source>
         <comment>Search|Replace in Files</comment>
         <translation>Shift+Ctrl+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3288"/>
+        <location filename="../ViewManager/ViewManager.py" line="3286"/>
         <source>Search for a text in files and replace it</source>
         <translation>Buscar un texto en archivos y reemplazarlo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3290"/>
+        <location filename="../ViewManager/ViewManager.py" line="3288"/>
         <source>&lt;b&gt;Replace in Files&lt;/b&gt;&lt;p&gt;Search for some text in the files of a directory tree or the project and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and to display the result.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Reemplazar en Archivos&lt;/b&gt;&lt;p&gt;Buscar un texto en los archivos de un árbol de directorios o en el proyecto y reemplazarlo. Se muestra un diálogo para introducir el texto de búsqueda, el texto de reemplazo y opciones para búsqueda y visualización del resultado.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4366"/>
+        <location filename="../ViewManager/ViewManager.py" line="4364"/>
         <source>Shift+F7</source>
         <comment>Spelling|Spell Check</comment>
         <translation>Shift+F7</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4375"/>
+        <location filename="../ViewManager/ViewManager.py" line="4373"/>
         <source>Perform spell check of current editor</source>
         <translation>Lleva a cabo la corrección ortográfica del editor actual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4385"/>
+        <location filename="../ViewManager/ViewManager.py" line="4383"/>
         <source>Automatic spell checking</source>
         <translation>Corrección ortográfica automática</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4385"/>
+        <location filename="../ViewManager/ViewManager.py" line="4383"/>
         <source>&amp;Automatic spell checking</source>
         <translation>Corrección ortográfica &amp;automática</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4391"/>
+        <source>(De-)Activate automatic spell checking</source>
+        <translation>(Des-)Activar la corrección ortográfica automática</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4393"/>
-        <source>(De-)Activate automatic spell checking</source>
-        <translation>(Des-)Activar la corrección ortográfica automática</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4395"/>
         <source>&lt;b&gt;Automatic spell checking&lt;/b&gt;&lt;p&gt;Activate or deactivate the automatic spell checking function of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Corrección ortografica automática&lt;/b&gt;&lt;p&gt;Activar o desactivar la corrección ortográfica automática en todos los editores.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4462"/>
+        <location filename="../ViewManager/ViewManager.py" line="4460"/>
         <source>Spelling</source>
         <translation>Corrección ortográfica</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4529"/>
+        <location filename="../ViewManager/ViewManager.py" line="4527"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has unsaved changes.&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; tiene cambios sin guardar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4928"/>
+        <location filename="../ViewManager/ViewManager.py" line="4926"/>
         <source>Line: {0:5}</source>
         <translation>Línea: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4934"/>
+        <location filename="../ViewManager/ViewManager.py" line="4932"/>
         <source>Pos: {0:5}</source>
         <translation>Pos: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4124"/>
+        <location filename="../ViewManager/ViewManager.py" line="4122"/>
         <source>Next warning message</source>
         <translation>Siguiente mensaje de advertencia</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4118"/>
+        <location filename="../ViewManager/ViewManager.py" line="4116"/>
         <source>&amp;Next warning message</source>
         <translation>Siguie&amp;nte mensaje de advertencia</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4143"/>
+        <location filename="../ViewManager/ViewManager.py" line="4141"/>
         <source>Previous warning message</source>
         <translation>Mensaje de advertencia anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4135"/>
+        <location filename="../ViewManager/ViewManager.py" line="4133"/>
         <source>&amp;Previous warning message</source>
         <translation>&amp;Mensaje de advertencia anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4161"/>
+        <location filename="../ViewManager/ViewManager.py" line="4159"/>
         <source>Clear Warning Messages</source>
         <translation>Limpiar Mensajes de Advertencia</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4154"/>
+        <location filename="../ViewManager/ViewManager.py" line="4152"/>
         <source>Clear &amp;Warning Messages</source>
         <translation>&amp;Limpiar Mensajes de Advertencia</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1082"/>
+        <location filename="../ViewManager/ViewManager.py" line="1081"/>
         <source>Join Lines</source>
         <translation>Unir Líneas</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1075"/>
+        <location filename="../ViewManager/ViewManager.py" line="1074"/>
         <source>Ctrl+J</source>
         <comment>Edit|Join Lines</comment>
         <translation>Ctrl+J</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1084"/>
+        <location filename="../ViewManager/ViewManager.py" line="1083"/>
         <source>&lt;b&gt;Join Lines&lt;/b&gt;&lt;p&gt;Join the current and the next lines.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Unir Lineas&lt;/b&gt;&lt;p&gt;Unir las líneas actual y siguiente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3202"/>
+        <location filename="../ViewManager/ViewManager.py" line="3200"/>
         <source>Goto Last Edit Location</source>
         <translation>Ir a la Última Posición de Edición</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3191"/>
+        <location filename="../ViewManager/ViewManager.py" line="3189"/>
         <source>Goto Last &amp;Edit Location</source>
         <translation>Ir a la Última Posición de &amp;Edición</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3191"/>
+        <location filename="../ViewManager/ViewManager.py" line="3189"/>
         <source>Ctrl+Shift+G</source>
         <comment>Search|Goto Last Edit Location</comment>
         <translation>Ctrl+Shift+G</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3205"/>
+        <location filename="../ViewManager/ViewManager.py" line="3203"/>
         <source>&lt;b&gt;Goto Last Edit Location&lt;/b&gt;&lt;p&gt;Go to the location of the last edit in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ir a la Última Posición de Edición&lt;/b&gt;&lt;p&gt;Ir a la posición de la última edición en el editor actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3214"/>
+        <location filename="../ViewManager/ViewManager.py" line="3212"/>
         <source>Goto Previous Method or Class</source>
         <translation>Ir al Anterior Método o Clase</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3214"/>
+        <location filename="../ViewManager/ViewManager.py" line="3212"/>
         <source>Ctrl+Shift+Up</source>
         <comment>Search|Goto Previous Method or Class</comment>
         <translation>Ctrl+Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3224"/>
+        <location filename="../ViewManager/ViewManager.py" line="3222"/>
         <source>Go to the previous method or class definition</source>
         <translation>Ir a la anterior definición de método o clase</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3228"/>
+        <location filename="../ViewManager/ViewManager.py" line="3226"/>
         <source>&lt;b&gt;Goto Previous Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the previous method or class definition and highlights the name.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ir al Anterior Método o Clase&lt;/b&gt;&lt;p&gt;Va a la línea de la anterior definición de método o clase y resalta el nombre.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3238"/>
+        <location filename="../ViewManager/ViewManager.py" line="3236"/>
         <source>Goto Next Method or Class</source>
         <translation>Ir al Siguiente Método o Clase</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3238"/>
+        <location filename="../ViewManager/ViewManager.py" line="3236"/>
         <source>Ctrl+Shift+Down</source>
         <comment>Search|Goto Next Method or Class</comment>
         <translation>Ctrl+Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3248"/>
+        <location filename="../ViewManager/ViewManager.py" line="3246"/>
         <source>Go to the next method or class definition</source>
         <translation>Ir a la siguiente definición de método o clase</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3250"/>
+        <location filename="../ViewManager/ViewManager.py" line="3248"/>
         <source>&lt;b&gt;Goto Next Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the next method or class definition and highlights the name.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ir al Siguiente Método o Clase&lt;/b&gt;&lt;p&gt;Va a la línea de la siguiente definición de método o clase y resalta el nombre.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3759"/>
+        <location filename="../ViewManager/ViewManager.py" line="3757"/>
         <source>Preview</source>
         <translation>Vista Previa</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3762"/>
+        <source>Preview the current file in the web browser</source>
+        <translation>Vista previa del archivo actual en el navegador web</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3764"/>
-        <source>Preview the current file in the web browser</source>
-        <translation>Vista previa del archivo actual en el navegador web</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3766"/>
         <source>&lt;b&gt;Preview&lt;/b&gt;&lt;p&gt;This opens the web browser with a preview of the current file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vista Previa&lt;/b&gt;&lt;p&gt;Abre el navegador web con una vista previa del archivo actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1490"/>
+        <location filename="../ViewManager/ViewManager.py" line="1489"/>
         <source>Meta+B</source>
         <translation>Meta+B</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1503"/>
+        <location filename="../ViewManager/ViewManager.py" line="1502"/>
         <source>Meta+F</source>
         <translation>Meta+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1515"/>
+        <location filename="../ViewManager/ViewManager.py" line="1514"/>
         <source>Meta+P</source>
         <translation>Meta+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1527"/>
+        <location filename="../ViewManager/ViewManager.py" line="1526"/>
         <source>Meta+N</source>
         <translation>Meta+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1588"/>
+        <location filename="../ViewManager/ViewManager.py" line="1587"/>
         <source>Move to first visible character in document line</source>
         <translation>Mover al primer carácter visible en la línea de documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1604"/>
+        <location filename="../ViewManager/ViewManager.py" line="1603"/>
         <source>Move to start of display line</source>
         <translation>Mover al principio de la línea mostrada</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1621"/>
+        <location filename="../ViewManager/ViewManager.py" line="1620"/>
         <source>Move to end of document line</source>
         <translation>Mover al final de la línea de documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1629"/>
+        <location filename="../ViewManager/ViewManager.py" line="1628"/>
         <source>Meta+E</source>
         <translation>Meta+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1697"/>
+        <location filename="../ViewManager/ViewManager.py" line="1696"/>
         <source>Meta+V</source>
         <translation>Meta+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1703"/>
+        <location filename="../ViewManager/ViewManager.py" line="1702"/>
         <source>Move to start of document</source>
         <translation>Mover al principio del documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1720"/>
+        <location filename="../ViewManager/ViewManager.py" line="1719"/>
         <source>Move to end of document</source>
         <translation>Mover al final del documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1765"/>
+        <location filename="../ViewManager/ViewManager.py" line="1764"/>
         <source>Meta+Shift+B</source>
         <translation>Meta+Shift+B</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1780"/>
+        <location filename="../ViewManager/ViewManager.py" line="1779"/>
         <source>Meta+Shift+F</source>
         <translation>Meta+Shift+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1795"/>
+        <location filename="../ViewManager/ViewManager.py" line="1794"/>
         <source>Meta+Shift+P</source>
         <translation>Meta+Shift+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1810"/>
+        <location filename="../ViewManager/ViewManager.py" line="1809"/>
         <source>Meta+Shift+N</source>
         <translation>Meta+Shift+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1878"/>
+        <location filename="../ViewManager/ViewManager.py" line="1877"/>
         <source>Extend selection to first visible character in document line</source>
         <translation>Extender selección al primer carácter visible en la línea de documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1896"/>
+        <location filename="../ViewManager/ViewManager.py" line="1895"/>
         <source>Extend selection to end of document line</source>
         <translation>Extender selección hasta el final de la línea de documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1904"/>
+        <location filename="../ViewManager/ViewManager.py" line="1903"/>
         <source>Meta+Shift+E</source>
         <translation>Meta+Shift+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1961"/>
+        <location filename="../ViewManager/ViewManager.py" line="1960"/>
         <source>Meta+Shift+V</source>
         <translation>Meta+Shift+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1967"/>
+        <location filename="../ViewManager/ViewManager.py" line="1966"/>
         <source>Extend selection to start of document</source>
         <translation>Extender selección al principio del documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1975"/>
+        <location filename="../ViewManager/ViewManager.py" line="1974"/>
         <source>Ctrl+Shift+Up</source>
         <translation>Ctrl+Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1984"/>
+        <location filename="../ViewManager/ViewManager.py" line="1983"/>
         <source>Extend selection to end of document</source>
         <translation>Extender selección al final del documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1992"/>
+        <location filename="../ViewManager/ViewManager.py" line="1991"/>
         <source>Ctrl+Shift+Down</source>
         <translation>Ctrl+Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2010"/>
+        <location filename="../ViewManager/ViewManager.py" line="2009"/>
         <source>Meta+H</source>
         <translation>Meta+H</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2019"/>
+        <location filename="../ViewManager/ViewManager.py" line="2018"/>
         <source>Delete previous character if not at start of line</source>
         <translation>Borrar carácter anterior si no se está al principio de la línea</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2040"/>
+        <location filename="../ViewManager/ViewManager.py" line="2039"/>
         <source>Meta+D</source>
         <translation>Meta+D</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2084"/>
+        <location filename="../ViewManager/ViewManager.py" line="2083"/>
         <source>Meta+K</source>
         <translation>Meta+K</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2194"/>
+        <location filename="../ViewManager/ViewManager.py" line="2192"/>
         <source>Move to end of display line</source>
         <translation>Mover al final de la línea mostrada</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2211"/>
+        <location filename="../ViewManager/ViewManager.py" line="2209"/>
         <source>Extend selection to end of display line</source>
         <translation>Extender selección hasta el final de la línea mostrada</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2253"/>
+        <location filename="../ViewManager/ViewManager.py" line="2251"/>
         <source>Meta+Alt+Shift+N</source>
         <translation>Meta+Alt+Shift+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2268"/>
+        <location filename="../ViewManager/ViewManager.py" line="2266"/>
         <source>Meta+Alt+Shift+P</source>
         <translation>Meta+Alt+Shift+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2286"/>
+        <location filename="../ViewManager/ViewManager.py" line="2284"/>
         <source>Meta+Alt+Shift+B</source>
         <translation>Meta+Alt+Shift+B</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2304"/>
+        <location filename="../ViewManager/ViewManager.py" line="2302"/>
         <source>Meta+Alt+Shift+F</source>
         <translation>Meta+Alt+Shift+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2310"/>
+        <location filename="../ViewManager/ViewManager.py" line="2308"/>
         <source>Extend rectangular selection to first visible character in document line</source>
         <translation>Extender selección rectangular al primer carácter visible en la línea de documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2329"/>
+        <location filename="../ViewManager/ViewManager.py" line="2327"/>
         <source>Extend rectangular selection to end of document line</source>
         <translation>Extender selección rectangular hasta el final de la línea de documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2339"/>
+        <location filename="../ViewManager/ViewManager.py" line="2337"/>
         <source>Meta+Alt+Shift+E</source>
         <translation>Meta+Alt+Shift+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2342"/>
+        <location filename="../ViewManager/ViewManager.py" line="2340"/>
         <source>Alt+Shift+End</source>
         <translation>Alt+Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2363"/>
+        <location filename="../ViewManager/ViewManager.py" line="2361"/>
         <source>Alt+Shift+PgDown</source>
         <translation>Alt+Shift+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2375"/>
+        <location filename="../ViewManager/ViewManager.py" line="2373"/>
         <source>Meta+Alt+Shift+V</source>
         <translation>Meta+Alt+Shift+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2395"/>
+        <location filename="../ViewManager/ViewManager.py" line="2393"/>
         <source>Scroll to start of document</source>
         <translation>Desplazamiento hasta el principio del documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2410"/>
+        <location filename="../ViewManager/ViewManager.py" line="2408"/>
         <source>Scroll to end of document</source>
         <translation>Desplazamiento hasta el final del documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2425"/>
+        <location filename="../ViewManager/ViewManager.py" line="2423"/>
         <source>Scroll vertically to center current line</source>
         <translation>Desplazamiento vertical para centrar la línea actual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2433"/>
+        <location filename="../ViewManager/ViewManager.py" line="2431"/>
         <source>Meta+L</source>
         <translation>Meta+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2440"/>
+        <location filename="../ViewManager/ViewManager.py" line="2438"/>
         <source>Move to end of next word</source>
         <translation>Mover al final de la palabra siguiente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2455"/>
+        <location filename="../ViewManager/ViewManager.py" line="2453"/>
         <source>Extend selection to end of next word</source>
         <translation>Extender selección al final de la siguiente palabra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2471"/>
+        <location filename="../ViewManager/ViewManager.py" line="2469"/>
         <source>Move to end of previous word</source>
         <translation>Mover al final de la palabra anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2483"/>
+        <location filename="../ViewManager/ViewManager.py" line="2481"/>
         <source>Extend selection to end of previous word</source>
         <translation>Extender selección al final de la palabra anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2495"/>
+        <location filename="../ViewManager/ViewManager.py" line="2493"/>
         <source>Move to start of document line</source>
         <translation>Mover al principio de la línea de documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2503"/>
+        <location filename="../ViewManager/ViewManager.py" line="2501"/>
         <source>Meta+A</source>
         <translation>Meta+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2510"/>
+        <location filename="../ViewManager/ViewManager.py" line="2508"/>
         <source>Extend selection to start of document line</source>
         <translation>Extender selección hasta el inicio de la línea documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2521"/>
+        <location filename="../ViewManager/ViewManager.py" line="2519"/>
         <source>Meta+Shift+A</source>
         <translation>/media/110106_1117</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2528"/>
+        <location filename="../ViewManager/ViewManager.py" line="2526"/>
         <source>Extend rectangular selection to start of document line</source>
         <translation>Extender selección rectangular hasta el principio de la línea de documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2538"/>
+        <location filename="../ViewManager/ViewManager.py" line="2536"/>
         <source>Meta+Alt+Shift+A</source>
         <translation>Meta+Alt+Shift+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2546"/>
+        <location filename="../ViewManager/ViewManager.py" line="2544"/>
         <source>Extend selection to start of display line</source>
         <translation>Extender selección hasta el principio de la línea mostrada</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2565"/>
+        <location filename="../ViewManager/ViewManager.py" line="2563"/>
         <source>Move to start of display or document line</source>
         <translation>Mover al principio de línea mostrada o de documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2579"/>
+        <location filename="../ViewManager/ViewManager.py" line="2577"/>
         <source>Extend selection to start of display or document line</source>
         <translation>Extender selección hasta el inicio de la línea mostrada o de documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2594"/>
+        <location filename="../ViewManager/ViewManager.py" line="2592"/>
         <source>Move to first visible character in display or document line</source>
         <translation>Mover al primer carácter visible en la línea mostrada o de documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2611"/>
+        <location filename="../ViewManager/ViewManager.py" line="2609"/>
         <source>Extend selection to first visible character in display or document line</source>
         <translation>Extender selección al primer carácter visible en la línea mostrada o de documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2628"/>
+        <location filename="../ViewManager/ViewManager.py" line="2626"/>
         <source>Move to end of display or document line</source>
         <translation>Mover al final de la línea mostrada o de documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2642"/>
+        <location filename="../ViewManager/ViewManager.py" line="2640"/>
         <source>Extend selection to end of display or document line</source>
         <translation>Extender selección al final de la línea mostrada o de documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2657"/>
+        <location filename="../ViewManager/ViewManager.py" line="2655"/>
         <source>Stuttered move up one page</source>
         <translation>Mover progresivamente hacia arriba una página</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2669"/>
+        <location filename="../ViewManager/ViewManager.py" line="2667"/>
         <source>Stuttered extend selection up one page</source>
         <translation>Extender progresivamente la selección arriba una página</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2682"/>
+        <location filename="../ViewManager/ViewManager.py" line="2680"/>
         <source>Stuttered move down one page</source>
         <translation>Mover progresivamente hacia abajo una página</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2694"/>
+        <location filename="../ViewManager/ViewManager.py" line="2692"/>
         <source>Stuttered extend selection down one page</source>
         <translation>Extender progresivamente la selección abajo una página</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2707"/>
+        <location filename="../ViewManager/ViewManager.py" line="2705"/>
         <source>Delete right to end of next word</source>
         <translation>Borrar a la derecha hasta el final de la siguiente palabra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2715"/>
+        <location filename="../ViewManager/ViewManager.py" line="2713"/>
         <source>Alt+Del</source>
         <translation>Alt+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2722"/>
+        <location filename="../ViewManager/ViewManager.py" line="2720"/>
         <source>Move selected lines up one line</source>
         <translation>Mover las líneas seleccionadas arriba una línea</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2734"/>
+        <location filename="../ViewManager/ViewManager.py" line="2732"/>
         <source>Move selected lines down one line</source>
         <translation>Mover las líneas seleccionadas abajo una línea</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2348"/>
+        <location filename="../ViewManager/ViewManager.py" line="2346"/>
         <source>Alt+Shift+PgUp</source>
         <translation>Alt+Shift+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1185"/>
+        <location filename="../ViewManager/ViewManager.py" line="1184"/>
         <source>Toggle Comment</source>
         <translation>Alternar Comentario</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1185"/>
+        <location filename="../ViewManager/ViewManager.py" line="1184"/>
         <source>Ctrl+Shift+M</source>
         <comment>Edit|Toggle Comment</comment>
         <translation>Ctrl+Shift+M</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1193"/>
+        <location filename="../ViewManager/ViewManager.py" line="1192"/>
         <source>Toggle the comment of the current line, selection or comment block</source>
         <translation>Alternar el comentario de la línea actual, selección o bloque de comentario</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1197"/>
+        <location filename="../ViewManager/ViewManager.py" line="1196"/>
         <source>&lt;b&gt;Toggle Comment&lt;/b&gt;&lt;p&gt;If the current line does not start with a block comment, the current line or selection is commented. If it is already commented, this comment block is uncommented. &lt;/p&gt;</source>
         <translation>&lt;b&gt;Alternar Comentario&lt;/b&gt;&lt;p&gt;Si la línea actual no empieza con un bloque de comentario, la línea actual o la selección se comenta. Si ya está comentada, este bloque de comentario se descomenta.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3525"/>
         <source>Zoom reset</source>
         <translation>Restablecer zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3525"/>
         <source>Zoom &amp;reset</source>
         <translation>&amp;Restablecer zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3525"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation>Ctrl+0</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3533"/>
+        <source>Reset the zoom of the text</source>
+        <translation>Restablecer el zoom aplicado al texto</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3535"/>
-        <source>Reset the zoom of the text</source>
-        <translation>Restablecer el zoom aplicado al texto</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3537"/>
         <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;Restablecer zoom&lt;/b&gt;&lt;p&gt;Restablece el zoom aplicado al texto. Establece el factor de zoom a 100%.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3487"/>
         <source>Zoom In</source>
         <comment>View|Zoom in</comment>
         <translation>Aumentar Zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3508"/>
+        <location filename="../ViewManager/ViewManager.py" line="3506"/>
         <source>Zoom Out</source>
         <comment>View|Zoom out</comment>
         <translation>Disminuir Zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="764"/>
+        <location filename="../ViewManager/ViewManager.py" line="763"/>
         <source>Save a&amp;ll</source>
         <translation>Guardar a&amp;ll</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4246"/>
+        <source>Next Change</source>
+        <translation>Siguiente Cambio</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4240"/>
+        <source>&amp;Next Change</source>
+        <translation>Siguie&amp;nte Cambio</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4248"/>
-        <source>Next Change</source>
-        <translation>Siguiente Cambio</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4242"/>
-        <source>&amp;Next Change</source>
-        <translation>Siguie&amp;nte Cambio</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4250"/>
         <source>&lt;b&gt;Next Change&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Siguiente Cambio&lt;/b&gt;&lt;p&gt;Ir a la siguiente línea del editor actual que tiene un marcador de cambios.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4264"/>
+        <source>Previous Change</source>
+        <translation>Cambio Anterior</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4257"/>
+        <source>&amp;Previous Change</source>
+        <translation>Cambio &amp;Anterior</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4266"/>
-        <source>Previous Change</source>
-        <translation>Cambio Anterior</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4259"/>
-        <source>&amp;Previous Change</source>
-        <translation>Cambio &amp;Anterior</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4268"/>
         <source>&lt;b&gt;Previous Change&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Cambio Anterior&lt;/b&gt;&lt;p&gt;Ir a la anterior línea del editor actual que tiene un marcador de cambios.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4366"/>
+        <location filename="../ViewManager/ViewManager.py" line="4364"/>
         <source>Check spelling</source>
         <translation>Corrección ortográfica</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4366"/>
+        <location filename="../ViewManager/ViewManager.py" line="4364"/>
         <source>Check &amp;spelling...</source>
         <translation>Corrección &amp;ortográfica...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4377"/>
+        <location filename="../ViewManager/ViewManager.py" line="4375"/>
         <source>&lt;b&gt;Check spelling&lt;/b&gt;&lt;p&gt;Perform a spell check of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Corrección ortográfica&lt;/b&gt;&lt;p&gt;Lleva a cabo la corrección ortográfica del editor actual.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4424"/>
+        <source>Edit Dictionary</source>
+        <translation>Editar Diccionario</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4426"/>
-        <source>Edit Dictionary</source>
-        <translation>Editar Diccionario</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4428"/>
         <source>Project Word List</source>
         <translation>Lista de Palabras del Proyecto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4431"/>
+        <location filename="../ViewManager/ViewManager.py" line="4429"/>
         <source>Project Exception List</source>
         <translation>Lista de Excepciones del Proyecto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4436"/>
+        <location filename="../ViewManager/ViewManager.py" line="4434"/>
         <source>User Word List</source>
         <translation>Lista de Palabras del Usuario</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4439"/>
+        <location filename="../ViewManager/ViewManager.py" line="4437"/>
         <source>User Exception List</source>
         <translation>Lista de Excepciones del Usuario</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6639"/>
+        <location filename="../ViewManager/ViewManager.py" line="6637"/>
         <source>Edit Spelling Dictionary</source>
         <translation>Editar Diccionario Ortográfico</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6614"/>
+        <location filename="../ViewManager/ViewManager.py" line="6612"/>
         <source>Editing {0}</source>
         <translation>Editando {0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6596"/>
+        <location filename="../ViewManager/ViewManager.py" line="6594"/>
         <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo de diccionario ortográfico &lt;b&gt;{0}&lt;/b&gt; no se puede leer.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6626"/>
+        <location filename="../ViewManager/ViewManager.py" line="6624"/>
         <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo de diccionario ortográfico &lt;b&gt;{0}&lt;/b&gt; no se puede escribir.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6639"/>
+        <location filename="../ViewManager/ViewManager.py" line="6637"/>
         <source>The spelling dictionary was saved successfully.</source>
         <translation>El diccionario ortográfico se ha guardado con éxito.</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2957"/>
+        <location filename="../ViewManager/ViewManager.py" line="2955"/>
         <source>Search current word forward</source>
         <translation>Buscar palabra actual hacia adelante</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2957"/>
+        <location filename="../ViewManager/ViewManager.py" line="2955"/>
         <source>Ctrl+.</source>
         <comment>Search|Search current word forward</comment>
         <translation>Ctrl+.</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2968"/>
+        <location filename="../ViewManager/ViewManager.py" line="2966"/>
         <source>Search next occurrence of the current word</source>
         <translation>Buscar siguiente ocurrencia de la palabra actual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2971"/>
+        <location filename="../ViewManager/ViewManager.py" line="2969"/>
         <source>&lt;b&gt;Search current word forward&lt;/b&gt;&lt;p&gt;Search the next occurrence of the current word of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Buscar palabra actual hacia adelante&lt;/b&gt;&lt;p&gt;Buscar la siguiente ocurrencia de la palabra actual en el editor actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2980"/>
+        <location filename="../ViewManager/ViewManager.py" line="2978"/>
         <source>Search current word backward</source>
         <translation>Buscar palabra actual hacia atrás</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2980"/>
+        <location filename="../ViewManager/ViewManager.py" line="2978"/>
         <source>Ctrl+,</source>
         <comment>Search|Search current word backward</comment>
         <translation>Ctrl+,</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2991"/>
+        <location filename="../ViewManager/ViewManager.py" line="2989"/>
         <source>Search previous occurrence of the current word</source>
         <translation>Buscar ocurrencia anterior de la palabra actual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2994"/>
+        <location filename="../ViewManager/ViewManager.py" line="2992"/>
         <source>&lt;b&gt;Search current word backward&lt;/b&gt;&lt;p&gt;Search the previous occurrence of the current word of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Buscar palabra actual hacia atrás&lt;/b&gt;&lt;p&gt;Buscar la ocurrencia anterior de la palabra actual en el editor actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3301"/>
+        <location filename="../ViewManager/ViewManager.py" line="3299"/>
         <source>Search in Open Files</source>
         <translation>Buscar en los Archivos Abiertos</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3301"/>
+        <location filename="../ViewManager/ViewManager.py" line="3299"/>
         <source>Search in Open Files...</source>
         <translation>Buscar en los Archivos Abiertos...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3301"/>
+        <location filename="../ViewManager/ViewManager.py" line="3299"/>
         <source>Meta+Ctrl+Alt+F</source>
         <comment>Search|Search Open Files</comment>
         <translation>Meta+Ctrl+Alt+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3312"/>
+        <location filename="../ViewManager/ViewManager.py" line="3310"/>
         <source>Search for a text in open files</source>
         <translation>Buscar un texto en los archivos abiertos</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3314"/>
+        <location filename="../ViewManager/ViewManager.py" line="3312"/>
         <source>&lt;b&gt;Search in Open Files&lt;/b&gt;&lt;p&gt;Search for some text in the currently opened files. A dialog is shown to enter the searchtext and options for the search and to display the result.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Buscar en los Archivos Abiertos&lt;/b&gt;&lt;p&gt;Buscar un texto en los archivos actualmente abiertos. Se muestra un diálogo para introducir el texto de búsqueda y opciones de búsqueda, y para mostrar el resultado.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3324"/>
+        <location filename="../ViewManager/ViewManager.py" line="3322"/>
         <source>Replace in Open Files</source>
         <translation>Reemplazar en los Archivos Abiertos</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3324"/>
+        <location filename="../ViewManager/ViewManager.py" line="3322"/>
         <source>Meta+Ctrl+Alt+R</source>
         <comment>Search|Replace in Open Files</comment>
         <translation>Meta+Ctrl+Alt+R</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3332"/>
+        <source>Search for a text in open files and replace it</source>
+        <translation>Buscar un texto en los archivos abiertos y reemplazarlo</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3334"/>
-        <source>Search for a text in open files and replace it</source>
-        <translation>Buscar un texto en los archivos abiertos y reemplazarlo</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3336"/>
         <source>&lt;b&gt;Replace in Open Files&lt;/b&gt;&lt;p&gt;Search for some text in the currently opened files and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and to display the result.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Reemplazar en los Archivos Abiertos&lt;/b&gt;&lt;p&gt;Buscar un texto en los archivos actualmente abiertos y reemplazarlo. Se muestra un diálogo para introducir el texto de búsqueda, el texto de reemplazo y opciones para la búsqueda y visualización del resultado.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3324"/>
+        <location filename="../ViewManager/ViewManager.py" line="3322"/>
         <source>Replace in Open Files...</source>
         <translation>Reemplazar en los Archivos Abiertos...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1450"/>
+        <location filename="../ViewManager/ViewManager.py" line="1449"/>
         <source>Sort</source>
         <translation>Ordenar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1450"/>
+        <location filename="../ViewManager/ViewManager.py" line="1449"/>
         <source>Ctrl+Alt+S</source>
         <comment>Edit|Sort</comment>
         <translation>Ctrl+Alt+S</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1457"/>
+        <location filename="../ViewManager/ViewManager.py" line="1456"/>
         <source>Sort the lines containing the rectangular selection</source>
         <translation>Ordenar las líneas que contienen la selección rectangular</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1460"/>
+        <location filename="../ViewManager/ViewManager.py" line="1459"/>
         <source>&lt;b&gt;Sort&lt;/b&gt;&lt;p&gt;Sort the lines spanned by a rectangular selection based on the selection ignoring leading and trailing whitespace.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ordenar&lt;/b&gt;&lt;p&gt;Ordenar las líneas contenidas en una selección rectangular basada en la selección, ignorando espacios en blanco delante y detrás.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4955"/>
+        <location filename="../ViewManager/ViewManager.py" line="4953"/>
         <source>Language: {0}</source>
         <translation>Lenguaje: {0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4962"/>
+        <location filename="../ViewManager/ViewManager.py" line="4960"/>
         <source>EOL Mode: {0}</source>
         <translation>Modo de EOL: {0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3643"/>
+        <location filename="../ViewManager/ViewManager.py" line="3641"/>
         <source>New Document View</source>
         <translation>Nueva Vista de Documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3643"/>
+        <location filename="../ViewManager/ViewManager.py" line="3641"/>
         <source>New &amp;Document View</source>
         <translation>Nueva Vista de &amp;Documento</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3646"/>
+        <source>Open a new view of the current document</source>
+        <translation>Abrir una nueva vista del documento actual</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3648"/>
-        <source>Open a new view of the current document</source>
-        <translation>Abrir una nueva vista del documento actual</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3650"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nueva Vista de Documento&lt;/b&gt;&lt;p&gt;Abre una nueva vista del documento actual. Ambas vistas muestran el mismo documento. Sin embargo, los cursores pueden estar ubicados de manera independiente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3660"/>
+        <location filename="../ViewManager/ViewManager.py" line="3658"/>
         <source>New Document View (with new split)</source>
         <translation>Nueva Vista de Documento (con nueva división)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3667"/>
+        <location filename="../ViewManager/ViewManager.py" line="3665"/>
         <source>Open a new view of the current document in a new split</source>
         <translation>Abrir una nueva vista del documento actual en una nueva división</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3670"/>
+        <location filename="../ViewManager/ViewManager.py" line="3668"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document in a new split. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nueva Vista de Documento&lt;/b&gt;&lt;p&gt;Abre una nueva vista del documento actual en una nueva división. Ambas vistas muestran el mismo documento. Sin embargo, los cursores pueden estar ubicados de manera independiente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4126"/>
+        <location filename="../ViewManager/ViewManager.py" line="4124"/>
         <source>&lt;b&gt;Next warning message&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Siguiente mensaje de advertencia&lt;/b&gt;&lt;p&gt;Ir a la siguiente línea en el editor actual que contenga una advertencia de pyflakes.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4145"/>
+        <location filename="../ViewManager/ViewManager.py" line="4143"/>
         <source>&lt;b&gt;Previous warning message&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Anterior mensaje de advertencia&lt;/b&gt;&lt;p&gt;Ir a la anterior línea en el editor actual que contenga una advertencia de pyflakes.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4163"/>
+        <location filename="../ViewManager/ViewManager.py" line="4161"/>
         <source>&lt;b&gt;Clear Warning Messages&lt;/b&gt;&lt;p&gt;Clear pyflakes warning messages of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Limpiar Mensajes de Advertencia&lt;/b&gt;&lt;p&gt;Limpiar mensajes de advertencia de pyflakes en todos los editores.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2778"/>
+        <location filename="../ViewManager/ViewManager.py" line="2776"/>
         <source>Complete</source>
         <translation>Completar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1327"/>
+        <location filename="../ViewManager/ViewManager.py" line="1326"/>
         <source>&amp;Complete</source>
         <translation>&amp;Completar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1327"/>
+        <location filename="../ViewManager/ViewManager.py" line="1326"/>
         <source>Ctrl+Space</source>
         <comment>Edit|Complete</comment>
         <translation>Ctrl+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1334"/>
+        <location filename="../ViewManager/ViewManager.py" line="1333"/>
         <source>Complete current word</source>
         <translation>Completar la palabra actual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1336"/>
+        <location filename="../ViewManager/ViewManager.py" line="1335"/>
         <source>&lt;b&gt;Complete&lt;/b&gt;&lt;p&gt;Performs a completion of the word containing the cursor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Completar&lt;/b&gt;&lt;p&gt;Lleva a cabo un completado de la palabra que contiene el cursor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1345"/>
+        <location filename="../ViewManager/ViewManager.py" line="1344"/>
         <source>Complete from Document</source>
         <translation>Completar desde documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1345"/>
+        <location filename="../ViewManager/ViewManager.py" line="1344"/>
         <source>Ctrl+Shift+Space</source>
         <comment>Edit|Complete from Document</comment>
         <translation>Ctrl+Shift+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1355"/>
+        <location filename="../ViewManager/ViewManager.py" line="1354"/>
         <source>Complete current word from Document</source>
         <translation>Completar palabra actual desde Documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1358"/>
+        <location filename="../ViewManager/ViewManager.py" line="1357"/>
         <source>&lt;b&gt;Complete from Document&lt;/b&gt;&lt;p&gt;Performs a completion from document of the word containing the cursor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Completar desde Documento&lt;/b&gt;&lt;p&gt;Lleva a cabo un completado de la palabra que contiene el cursor a partir del documento.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1368"/>
+        <location filename="../ViewManager/ViewManager.py" line="1367"/>
         <source>Complete from APIs</source>
         <translation>Completar desde APIs</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1368"/>
+        <location filename="../ViewManager/ViewManager.py" line="1367"/>
         <source>Ctrl+Alt+Space</source>
         <comment>Edit|Complete from APIs</comment>
         <translation>Ctrl+Alt+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1378"/>
+        <location filename="../ViewManager/ViewManager.py" line="1377"/>
         <source>Complete current word from APIs</source>
         <translation>Completar palabra actual desde APIs</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1381"/>
+        <location filename="../ViewManager/ViewManager.py" line="1380"/>
         <source>&lt;b&gt;Complete from APIs&lt;/b&gt;&lt;p&gt;Performs a completion from APIs of the word containing the cursor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Completar desde APIs&lt;/b&gt;&lt;p&gt;Lleva a cabo un completado de la palabra que contiene el cursor a partir de las APIs.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1391"/>
+        <location filename="../ViewManager/ViewManager.py" line="1390"/>
         <source>Complete from Document and APIs</source>
         <translation>Completar desde Documento y de APIs</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1391"/>
+        <location filename="../ViewManager/ViewManager.py" line="1390"/>
         <source>Alt+Shift+Space</source>
         <comment>Edit|Complete from Document and APIs</comment>
         <translation>Alt+Shift+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1401"/>
+        <location filename="../ViewManager/ViewManager.py" line="1400"/>
         <source>Complete current word from Document and APIs</source>
         <translation>Completar palabra actual desde Documento y  APIs</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1404"/>
+        <location filename="../ViewManager/ViewManager.py" line="1403"/>
         <source>&lt;b&gt;Complete from Document and APIs&lt;/b&gt;&lt;p&gt;Performs a completion from document and APIs of the word containing the cursor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Completar desde Documento y APIs&lt;/b&gt;&lt;p&gt;Lleva a cabo un completado de la palabra que contiene el cursor a partir del documento y de las APIs.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1414"/>
+        <location filename="../ViewManager/ViewManager.py" line="1413"/>
         <source>Meta+Alt+Space</source>
         <comment>Edit|Calltip</comment>
         <translation>Meta+Alt+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="748"/>
+        <location filename="../ViewManager/ViewManager.py" line="747"/>
         <source>Save Copy</source>
         <translation>Guardar Copia</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="748"/>
+        <location filename="../ViewManager/ViewManager.py" line="747"/>
         <source>Save &amp;Copy...</source>
         <translation>Guardar &amp;Copia...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="753"/>
+        <location filename="../ViewManager/ViewManager.py" line="752"/>
         <source>Save a copy of the current file</source>
         <translation>Guardar una copia del archivo actual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="755"/>
+        <location filename="../ViewManager/ViewManager.py" line="754"/>
         <source>&lt;b&gt;Save Copy&lt;/b&gt;&lt;p&gt;Save a copy of the contents of current editor window. The file can be entered in a file selection dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Guardar Copia&lt;/b&gt;&lt;p&gt;Guardar una copia del contenido de la ventana de editor actual. El archivo puede ser introducido usando un diálogo de selección de archivo.&lt;/p&gt;</translation>
     </message>
@@ -81480,143 +81453,143 @@
         <translation>Ctrl+G</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3022"/>
+        <location filename="../ViewManager/ViewManager.py" line="3020"/>
         <source>Replace and Search</source>
         <translation>Buscar y Reemplazar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3022"/>
+        <location filename="../ViewManager/ViewManager.py" line="3020"/>
         <source>Meta+R</source>
         <comment>Search|Replace and Search</comment>
         <translation>Meta+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3032"/>
+        <location filename="../ViewManager/ViewManager.py" line="3030"/>
         <source>Replace the found text and search the next occurrence</source>
         <translation>Reemplazar el texto encontrado y buscar siguiente ocurrencia</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3035"/>
+        <location filename="../ViewManager/ViewManager.py" line="3033"/>
         <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;Buscar y Reemplazar&lt;/b&gt;&lt;p&gt;Reemplazar la ocurrencia de texto en editor actual y buscar la siguiente. Se reusan el texto y las opciones de búsqueda introducidas previamente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3046"/>
+        <location filename="../ViewManager/ViewManager.py" line="3044"/>
         <source>Replace Occurrence</source>
         <translation>Reemplazar Ocurrencia</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3046"/>
+        <location filename="../ViewManager/ViewManager.py" line="3044"/>
         <source>Ctrl+Meta+R</source>
         <comment>Search|Replace Occurrence</comment>
         <translation>Ctrl+Meta+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3056"/>
+        <location filename="../ViewManager/ViewManager.py" line="3054"/>
         <source>Replace the found text</source>
         <translation>Reemplazar el texto encontrado</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3058"/>
+        <location filename="../ViewManager/ViewManager.py" line="3056"/>
         <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;Reemplazar Ocurrencia&lt;/b&gt;&lt;p&gt;Reemplazar la ocurrencia del texto de búsqueda hallado en el editor actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3068"/>
+        <location filename="../ViewManager/ViewManager.py" line="3066"/>
         <source>Replace All</source>
         <translation>Reemplazar Todo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3068"/>
+        <location filename="../ViewManager/ViewManager.py" line="3066"/>
         <source>Shift+Meta+R</source>
         <comment>Search|Replace All</comment>
         <translation>Shift+Meta+R</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3076"/>
+        <source>Replace search text occurrences</source>
+        <translation>Reemplazar ocurrencias de texto de búsqueda</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3078"/>
-        <source>Replace search text occurrences</source>
-        <translation>Reemplazar ocurrencias de texto de búsqueda</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3080"/>
         <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;Reemplazar Todo&lt;/b&gt;&lt;p&gt;Reemplazar todas las ocurrencias del texto de búsqueda en el editor actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1432"/>
+        <location filename="../ViewManager/ViewManager.py" line="1431"/>
         <source>Code Info</source>
         <translation>Info del Código</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1432"/>
+        <location filename="../ViewManager/ViewManager.py" line="1431"/>
         <source>Ctrl+Alt+I</source>
         <comment>Edit|Code Info</comment>
         <translation>Ctrl+Alt+I</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1440"/>
+        <location filename="../ViewManager/ViewManager.py" line="1439"/>
         <source>Show Code Info</source>
         <translation>Mostrar Info del Código</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1442"/>
+        <location filename="../ViewManager/ViewManager.py" line="1441"/>
         <source>&lt;b&gt;Code Info&lt;/b&gt;&lt;p&gt;Show code information based on the cursor position.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Info del Código&lt;/b&gt;&lt;p&gt;Mostrar información del código basado en la posición del cursor.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3614"/>
+        <source>Clear all folds</source>
+        <translation>Limpiar todos los anidamientos</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3610"/>
+        <source>Clear &amp;all folds</source>
+        <translation>Limpiar todos los anid&amp;amientos</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3616"/>
-        <source>Clear all folds</source>
-        <translation>Limpiar todos los anidamientos</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3612"/>
-        <source>Clear &amp;all folds</source>
-        <translation>Limpiar todos los anid&amp;amientos</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3618"/>
         <source>&lt;b&gt;Clear all folds&lt;/b&gt;&lt;p&gt;Clear all folds of the current editor, i.e. ensure that all lines are displayed unfolded.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Limpiar todos los anidamientos&lt;/b&gt;&lt;p&gt;Limpiar todos los anidamientos en el editor actual, asegurando que todas las líneas se muestran sin plegar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2150"/>
+        <location filename="../ViewManager/ViewManager.py" line="2148"/>
         <source>Reverse selected lines</source>
         <translation>Revertir líneas seleccionadas</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2150"/>
+        <location filename="../ViewManager/ViewManager.py" line="2148"/>
         <source>Meta+Alt+R</source>
         <translation>Meta+Alt+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3776"/>
+        <location filename="../ViewManager/ViewManager.py" line="3774"/>
         <source>Python AST Viewer</source>
         <translation>Visor AST de Python</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3779"/>
+        <source>Show the AST for the current Python file</source>
+        <translation>Mostrar el AST para el archivo de Python actual</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3781"/>
-        <source>Show the AST for the current Python file</source>
-        <translation>Mostrar el AST para el archivo de Python actual</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3783"/>
         <source>&lt;b&gt;Python AST Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the AST of the current Python source file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Visor AST de Python&lt;/b&gt;&lt;p&gt;Abre una vista de árbol del AST del archivo actual de código fuente Python.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3793"/>
+        <location filename="../ViewManager/ViewManager.py" line="3791"/>
         <source>Python Disassembly Viewer</source>
-        <translation>Visor de Desensamblado de Python</translation>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3798"/>
+        <source>Show the Disassembly for the current Python file</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3800"/>
-        <source>Show the Disassembly for the current Python file</source>
-        <translation>Mostrar el desensamblado para el archivo actual de Python</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3802"/>
         <source>&lt;b&gt;Python Disassembly Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the Disassembly of the current Python source file.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Visor de Desensamblado de Python&lt;/b&gt;&lt;p&gt;Abre una vista de árbol del Desensamblado del archivo actual de código fuente Python.&lt;/p&gt;</translation>
+        <translation type="unfinished"></translation>
     </message>
 </context>
 <context>
@@ -81698,77 +81671,77 @@
 <context>
     <name>ViewmanagerPage</name>
     <message>
-        <location filename="../Preferences/ConfigurationPages/ViewmanagerPage.ui" line="16"/>
+        <location filename="../Preferences/ConfigurationPages/ViewmanagerPage.ui" line="17"/>
         <source>&lt;b&gt;Configure viewmanager&lt;/b&gt;</source>
         <translation>&lt;b&gt;Configurar gestor de vistas&lt;/b&gt;</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/ViewmanagerPage.ui" line="45"/>
+        <location filename="../Preferences/ConfigurationPages/ViewmanagerPage.ui" line="46"/>
         <source>Window view:</source>
         <translation>Ventana de Vista:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/ViewmanagerPage.ui" line="61"/>
+        <location filename="../Preferences/ConfigurationPages/ViewmanagerPage.ui" line="62"/>
         <source>Select the window view type.</source>
         <translation>Seleccionar el tipo de ventana de vista.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/ViewmanagerPage.ui" line="64"/>
+        <location filename="../Preferences/ConfigurationPages/ViewmanagerPage.ui" line="65"/>
         <source>The kind of window view can be selected from this list. The picture below gives an example of the selected view type.</source>
         <translation>El tipo de ventana de vista puede seleccionarse en esta lista. La imagen debajo da un ejemplo del tipo de vista seleccionado.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/ViewmanagerPage.ui" line="73"/>
+        <location filename="../Preferences/ConfigurationPages/ViewmanagerPage.ui" line="74"/>
         <source>Preview of selected window view</source>
         <translation>Vista preliminar de la ventana de vista seleccionada</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/ViewmanagerPage.ui" line="76"/>
+        <location filename="../Preferences/ConfigurationPages/ViewmanagerPage.ui" line="77"/>
         <source>This displays a small preview of the selected window view. This is the way the source windows are displayed in the application.</source>
         <translation>Muestra una pequeña presentación preliminar de la ventana de vista seleccionada. Este es el modo en que las ventanas de codigo se muestran en la aplicación.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/ViewmanagerPage.ui" line="102"/>
+        <location filename="../Preferences/ConfigurationPages/ViewmanagerPage.ui" line="103"/>
         <source>Tabbed View</source>
         <translation>Vista con Pestañas</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/ViewmanagerPage.ui" line="110"/>
+        <location filename="../Preferences/ConfigurationPages/ViewmanagerPage.ui" line="111"/>
         <source>Filename Length of Tab:</source>
         <translation>Longitud de nombre de archivo en la pestaña:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/ViewmanagerPage.ui" line="117"/>
+        <location filename="../Preferences/ConfigurationPages/ViewmanagerPage.ui" line="118"/>
         <source>Enter the number of characters to be shown in the tab.</source>
         <translation>Introduzca el número de caracteres a mostrar en la pestaña.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/ViewmanagerPage.ui" line="148"/>
+        <location filename="../Preferences/ConfigurationPages/ViewmanagerPage.ui" line="149"/>
         <source>Select to display the filename only</source>
         <translation>Seleccionar para mostrar el nombre de archivo unicamente</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/ViewmanagerPage.ui" line="151"/>
+        <location filename="../Preferences/ConfigurationPages/ViewmanagerPage.ui" line="152"/>
         <source>Show filename only</source>
         <translation>Mostrar nombre de archivo unicamente</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/ViewmanagerPage.ui" line="36"/>
+        <location filename="../Preferences/ConfigurationPages/ViewmanagerPage.ui" line="37"/>
         <source>&lt;font color=&quot;#FF0000&quot;&gt;&lt;b&gt;Note:&lt;/b&gt; This setting is activated at the next startup of the application.&lt;/font&gt;</source>
         <translation>&lt;font color=&quot;#FF0000&quot;&gt;&lt;b&gt;Nota:&lt;/b&gt; Estas opciones de configuración serán activadas la siguiente vez que se inicie la aplicación.&lt;/font&gt;</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/ViewmanagerPage.ui" line="161"/>
+        <location filename="../Preferences/ConfigurationPages/ViewmanagerPage.ui" line="162"/>
         <source>Recent Files</source>
         <translation>Archivos recientes</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/ViewmanagerPage.ui" line="167"/>
+        <location filename="../Preferences/ConfigurationPages/ViewmanagerPage.ui" line="168"/>
         <source>Number of recent files:</source>
         <translation>Número de archivos recientes:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/ViewmanagerPage.ui" line="174"/>
+        <location filename="../Preferences/ConfigurationPages/ViewmanagerPage.ui" line="175"/>
         <source>Enter the number of recent files to remember</source>
         <translation>Introduzca el número de archivos recientes a recordar</translation>
     </message>
@@ -84510,7 +84483,7 @@
 <context>
     <name>WebBrowserTools</name>
     <message>
-        <location filename="../WebBrowser/Tools/WebBrowserTools.py" line="249"/>
+        <location filename="../WebBrowser/Tools/WebBrowserTools.py" line="251"/>
         <source>&lt;unknown&gt;</source>
         <translation>&lt;desconocido&gt;</translation>
     </message>
@@ -84804,7 +84777,7 @@
     </message>
     <message>
         <location filename="../WebBrowser/WebBrowserView.py" line="676"/>
-        <source>Open Link in New Tab	Ctrl+LMB</source>
+        <source>Open Link in New Tab<byte value="x9"/>Ctrl+LMB</source>
         <translation>Abrir enlace en nueva pestaña Tab\tCtrl+LMB (botón izquierdo del ratón)</translation>
     </message>
     <message>
@@ -87179,58 +87152,58 @@
     <name>YandexEngine</name>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="38"/>
-        <source>Invalid API key.</source>
-        <translation>API key no válida.</translation>
+        <source>Yandex: Invalid API key.</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="39"/>
-        <source>API key has been blocked.</source>
-        <translation>la API key ha sido bloqueada.</translation>
+        <source>Yandex: API key has been blocked.</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="40"/>
-        <source>Daily limit for requests has been reached.</source>
-        <translation>Se ha alcanzado el límite diario de solicitudes.</translation>
+        <source>Yandex: Daily limit for requests has been reached.</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="41"/>
-        <source>Daily limit for the volume of translated text reached.</source>
-        <translation>Se ha alcanzado el límite diario de volumen de texto traducido.</translation>
+        <source>Yandex: Daily limit for the volume of translated text reached.</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="43"/>
-        <source>Text size exceeds the maximum.</source>
-        <translation>El tamaño del texto supera el máximo.</translation>
+        <source>Yandex: Text size exceeds the maximum.</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="44"/>
-        <source>Text could not be translated.</source>
-        <translation>El texto no se ha podido traducir.</translation>
+        <source>Yandex: Text could not be translated.</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="45"/>
-        <source>The specified translation direction is not supported.</source>
-        <translation>La dirección de traducción especificada no está soportada.</translation>
+        <source>Yandex: The specified translation direction is not supported.</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="86"/>
-        <source>Only texts up to {0} characters are allowed.</source>
-        <translation>Solamente se permiten textos hasta {0} carácteres.</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="91"/>
-        <source>A valid Yandex key is required.</source>
-        <translation>Se necesita una clave válida de Yandex.</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="106"/>
-        <source>Invalid response received</source>
-        <translation>Recibida respuesta no válida</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="112"/>
-        <source>Unknown error code ({0}) received.</source>
-        <translation>Se ha recibido un código de error ({0}) desconocido.</translation>
+        <source>Yandex: Only texts up to {0} characters are allowed.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="109"/>
+        <source>Yandex: Invalid response received</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="115"/>
+        <source>Yandex: Unknown error code ({0}) received.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="94"/>
+        <source>Yandex: A valid key is required.</source>
+        <translation type="unfinished"></translation>
     </message>
 </context>
 <context>
@@ -87636,11 +87609,6 @@
         <translation>&apos;...&apos; % ... tiene un carácter de formato no soportado {0!r}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/pyflakes/translations.py" line="147"/>
-        <source>&apos;...&apos; % ... has {0!d} placeholder(s) but {1!d} substitution(s)</source>
-        <translation type="obsolete">&apos;...&apos; % ... tiene {0!d} placeholder(s) pero {1!d} substitución(es)</translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/SyntaxChecker/pyflakes/translations.py" line="150"/>
         <source>&apos;...&apos; % ... has unused named argument(s): {0}</source>
         <translation>&apos;...&apos; % ... tiene argumento(s) con nombre sin utilizar: {0}</translation>
@@ -87673,423 +87641,423 @@
     <message>
         <location filename="../Plugins/CheckerPlugins/SyntaxChecker/pyflakes/translations.py" line="147"/>
         <source>&apos;...&apos; % ... has {0:d} placeholder(s) but {1:d} substitution(s)</source>
-        <translation>&apos;...&apos; % ... tiene {0:d} espacio(s) reservado(s) pero {1:d} substitución(es)</translation>
+        <translation type="unfinished"></translation>
     </message>
 </context>
 <context>
     <name>pycodestyle</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="24"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="22"/>
         <source>indentation contains mixed spaces and tabs</source>
         <translation>la indentación contiene espacios y tabuladores mezclados</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="27"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="25"/>
         <source>indentation is not a multiple of four</source>
         <translation>la indentación no es un múltiplo de cuatro</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="30"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="28"/>
         <source>expected an indented block</source>
         <translation>se esperaba un bloque indentado</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="33"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="31"/>
         <source>unexpected indentation</source>
         <translation>indentación inesperada</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="36"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="34"/>
         <source>indentation is not a multiple of four (comment)</source>
         <translation>la indentación no es un múltiplo de cuatro (comentario)</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="39"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="37"/>
         <source>expected an indented block (comment)</source>
         <translation>se esperaba un bloque indentado (comentario)</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="42"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="40"/>
         <source>unexpected indentation (comment)</source>
         <translation>indentación inesperada (comentario)</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="48"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="46"/>
         <source>continuation line indentation is not a multiple of four</source>
         <translation>indentación de línea de continuación no es múltiplo de cuatro</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="51"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="49"/>
         <source>continuation line missing indentation or outdented</source>
         <translation>línea de continuación sin indentación o bien con indentación inversa</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="54"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="52"/>
         <source>closing bracket does not match indentation of opening bracket&apos;s line</source>
         <translation>llave de cierre no coincide con la indentación de la línea de la llave de apertura</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="58"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="56"/>
         <source>closing bracket does not match visual indentation</source>
         <translation>llave de cierre no coincide con indentación visual</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="61"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="59"/>
         <source>continuation line with same indent as next logical line</source>
         <translation>indentación de línea de continuación como la siguiente línea lógica</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="64"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="62"/>
         <source>continuation line over-indented for hanging indent</source>
         <translation>línea de continuación sobre-indentada por indentación colgada</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="67"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="65"/>
         <source>continuation line over-indented for visual indent</source>
         <translation>línea de continuación sobre indentada para indentación visual</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="70"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="68"/>
         <source>continuation line under-indented for visual indent</source>
         <translation>línea de continuación poco indentada para indentación visual</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="73"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="71"/>
         <source>visually indented line with same indent as next logical line</source>
         <translation>línea visualmente indentada con la misma indentación que la siguiente línea lógica</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="76"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="74"/>
         <source>continuation line unaligned for hanging indent</source>
         <translation>línea de continuación sin alinear debido a indentación pendiente</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="79"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="77"/>
         <source>closing bracket is missing indentation</source>
         <translation>llave de cierre a la que falta indentación</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="82"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="80"/>
         <source>indentation contains tabs</source>
         <translation>la indentación contiene tabuladores</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="85"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="83"/>
         <source>whitespace after &apos;{0}&apos;</source>
         <translation>espacio en blanco después de&apos;{0}&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="94"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="92"/>
         <source>whitespace before &apos;{0}&apos;</source>
         <translation>espacio en blanco antes de&apos;{0}&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="97"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="95"/>
         <source>multiple spaces before operator</source>
         <translation>múltiples espacios antes de operador</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="100"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="98"/>
         <source>multiple spaces after operator</source>
         <translation>múltiples espacios después de operador</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="103"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="101"/>
         <source>tab before operator</source>
         <translation>tabulador antes de operador</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="106"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="104"/>
         <source>tab after operator</source>
         <translation>tabulador después de operador</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="109"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="107"/>
         <source>missing whitespace around operator</source>
         <translation>falta espacio en blanco alrededor de un operador</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="112"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="110"/>
         <source>missing whitespace around arithmetic operator</source>
         <translation>falta espacio en blanco alrededor de operador aritmético</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="115"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="113"/>
         <source>missing whitespace around bitwise or shift operator</source>
         <translation>falta espacio en blanco alrededor de operador a nivel de bit o shift</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="118"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="116"/>
         <source>missing whitespace around modulo operator</source>
         <translation>falta espacio en blanco alrededor de operador módulo</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="121"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="119"/>
         <source>missing whitespace after &apos;{0}&apos;</source>
         <translation>falta espacio en blanco después de {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="124"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="122"/>
         <source>multiple spaces after &apos;{0}&apos;</source>
         <translation>múltiples espacios en blanco después de &apos;{0}&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="127"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="125"/>
         <source>tab after &apos;{0}&apos;</source>
         <translation>tabulador después de &apos;{0}&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="130"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="128"/>
         <source>unexpected spaces around keyword / parameter equals</source>
         <translation>espacios inesperados alrededor de palabra clave / parámetro igual a</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="136"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="134"/>
         <source>at least two spaces before inline comment</source>
         <translation>al menos dos espacios antes de comentario inline</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="139"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="137"/>
         <source>inline comment should start with &apos;# &apos;</source>
         <translation>un comentario inline debe comenzar con &apos;#&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="142"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="140"/>
         <source>block comment should start with &apos;# &apos;</source>
         <translation>comentarios de bloque debería comenzar con &apos;# &apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="145"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="143"/>
         <source>too many leading &apos;#&apos; for block comment</source>
         <translation>demasiados &apos;#&apos; al principio para comentario de bloque</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="148"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="146"/>
         <source>multiple spaces after keyword</source>
         <translation>múltiples espacios después de palabra clave</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="151"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="149"/>
         <source>multiple spaces before keyword</source>
         <translation>múltiples espacios antes de palabra clave</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="154"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="152"/>
         <source>tab after keyword</source>
         <translation>tabulador despues de palabra clave</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="157"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="155"/>
         <source>tab before keyword</source>
         <translation>tabulador antes de palabra clave</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="160"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="158"/>
         <source>missing whitespace after keyword</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="163"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="161"/>
         <source>trailing whitespace</source>
         <translation>espacio en blanco por detrás</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="166"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="164"/>
         <source>no newline at end of file</source>
         <translation>no hay carácter de nueva línea al final del archivo</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="169"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="167"/>
         <source>blank line contains whitespace</source>
         <translation>línea en blanco con espacios en blanco</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="194"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="192"/>
         <source>too many blank lines ({0})</source>
         <translation>demasiadas líneas en blanco ({0})</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="181"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="179"/>
         <source>blank lines found after function decorator</source>
         <translation>líneas en blanco encontradas después de decorador de función</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="197"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="195"/>
         <source>blank line at end of file</source>
         <translation>línea en blanco al final del archivo</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="200"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="198"/>
         <source>multiple imports on one line</source>
         <translation>múltiples import en una línea</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="203"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="201"/>
         <source>module level import not at top of file</source>
         <translation>import a nivel de módulo no al principio del archivo</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="206"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="204"/>
         <source>line too long ({0} &gt; {1} characters)</source>
         <translation>línea demasiado larga ({0} &gt; {1} caracteres)</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="209"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="207"/>
         <source>the backslash is redundant between brackets</source>
         <translation>el backslash es redundante entre llaves</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="212"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="210"/>
         <source>line break before binary operator</source>
         <translation>nueva línea antes de operador binario</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="221"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="219"/>
         <source>.has_key() is deprecated, use &apos;in&apos;</source>
         <translation>.has_key()está obsoleto, use &apos;in&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="224"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="222"/>
         <source>deprecated form of raising exception</source>
         <translation>forma obsoleta de lanzar una excepción</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="227"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="225"/>
         <source>&apos;&lt;&gt;&apos; is deprecated, use &apos;!=&apos;</source>
         <translation>&apos;&lt;&gt;&apos; está obsoleto, use &apos;!=&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="230"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="228"/>
         <source>backticks are deprecated, use &apos;repr()&apos;</source>
         <translation>las comillas hacia atrás están obsoletas, use &apos;repr()&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="239"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="237"/>
         <source>multiple statements on one line (colon)</source>
         <translation>múltiples sentencias en una línea (dos puntos)</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="242"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="240"/>
         <source>multiple statements on one line (semicolon)</source>
         <translation>múltiples sentencias en una línea (punto y coma)</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="245"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="243"/>
         <source>statement ends with a semicolon</source>
         <translation>sentencia termina en punto y coma</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="248"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="246"/>
         <source>multiple statements on one line (def)</source>
         <translation>múltiples sentencias en una línea (def)</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="254"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="252"/>
         <source>comparison to {0} should be {1}</source>
         <translation>comparación con {0} debe ser {1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="257"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="255"/>
         <source>test for membership should be &apos;not in&apos;</source>
         <translation>comprobación de &apos;miembro de&apos; debería ser &apos;not in&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="260"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="258"/>
         <source>test for object identity should be &apos;is not&apos;</source>
         <translation>comprobación para identidad del objeto debería ser &apos;is not&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="263"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="261"/>
         <source>do not compare types, use &apos;isinstance()&apos;</source>
         <translation>no comparar tipos, usar &apos;isinstance()&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="269"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="267"/>
         <source>do not assign a lambda expression, use a def</source>
         <translation>no asignar una expresión lambda, utilizar un def</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="272"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="270"/>
         <source>ambiguous variable name &apos;{0}&apos;</source>
         <translation>nombre de variable ambiguo &apos;{0}&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="275"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="273"/>
         <source>ambiguous class definition &apos;{0}&apos;</source>
         <translation>definición ambigua de clase &apos;{0}&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="278"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="276"/>
         <source>ambiguous function definition &apos;{0}&apos;</source>
         <translation>definición ambigua de función &apos;{0}&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="281"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="279"/>
         <source>{0}: {1}</source>
         <translation>{0}: {1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="284"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="282"/>
         <source>{0}</source>
         <translation>{0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="266"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="264"/>
         <source>do not use bare except</source>
         <translation>no usar except sin tipo</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="184"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="182"/>
         <source>expected {0} blank lines after class or function definition, found {1}</source>
         <translation>se esperaban {0} líneas en blanco después de definición de clase o función, se han encontrado {1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="236"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="234"/>
         <source>&apos;async&apos; and &apos;await&apos; are reserved keywords starting with Python 3.7</source>
         <translation>&apos;async&apos; y &apos;await&apos; son palabras reservadas a partir de Python 3.7</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="133"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="131"/>
         <source>missing whitespace around parameter equals</source>
         <translation>faltan espacios en blanco alrededor de igual en parámetros</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="175"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="173"/>
         <source>expected {0} blank lines, found {1}</source>
         <translation>se esperaban {0} líneas en blanco, se han encontrado {1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="188"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="186"/>
         <source>expected {0} blank lines before a nested definition, found {1}</source>
         <translation>se esperaban {0} líneas en blanco antes de una definición anidada, se han encontrado {1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="215"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="213"/>
         <source>line break after binary operator</source>
         <translation>nueva línea después de operador binario</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="233"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="231"/>
         <source>invalid escape sequence &apos;\{0}&apos;</source>
         <translation>secuencia de escape no válida&apos;\{0}&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="191"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="189"/>
         <source>too many blank lines ({0}) before a nested definition, expected {1}</source>
         <translation>demasiadas líneas en blanco ({0}) antes de definición anidada, se esperaban {1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="178"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="176"/>
         <source>too many blank lines ({0}), expected {1}</source>
         <translation>demasiadas líneas en blanco ({0}), se esperaban {1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="45"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="43"/>
         <source>over-indented</source>
         <translation>sobre-indentado</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="218"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="216"/>
         <source>doc line too long ({0} &gt; {1} characters)</source>
         <translation>doc line demasiado larga ({0} &gt; {1} carácteres)</translation>
     </message>
--- a/eric6/i18n/eric6_fr.ts	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/i18n/eric6_fr.ts	Sun Oct 04 16:28:51 2020 +0200
@@ -1139,72 +1139,72 @@
 <context>
     <name>AnnotationsChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="808"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="806"/>
         <source>missing type annotation for function argument &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="811"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="809"/>
         <source>missing type annotation for &apos;*{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="814"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="812"/>
         <source>missing type annotation for &apos;**{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="823"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="821"/>
         <source>missing return type annotation for public function</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="826"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="824"/>
         <source>missing return type annotation for protected function</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="829"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="827"/>
         <source>missing return type annotation for private function</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="832"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="830"/>
         <source>missing return type annotation for special method</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="835"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="833"/>
         <source>missing return type annotation for staticmethod</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="838"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="836"/>
         <source>missing return type annotation for classmethod</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="850"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="848"/>
         <source>{0}: {1}</source>
         <translation>{0}: {1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="817"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="815"/>
         <source>missing type annotation for &apos;self&apos; in method</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="820"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="818"/>
         <source>missing type annotation for &apos;cls&apos; in classmethod</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="842"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="840"/>
         <source>type annotation coverage of {0}% is too low</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="846"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="844"/>
         <source>type annotation is too complex ({0} &gt; {1})</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3447,7 +3447,7 @@
 <context>
     <name>CodeStyleChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="1130"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="1128"/>
         <source>No message defined for code &apos;{0}&apos;.</source>
         <translation>Pas de message défini pour le code &apos;{0}&apos;.</translation>
     </message>
@@ -4159,142 +4159,142 @@
 <context>
     <name>CodeStyleFixer</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="858"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="856"/>
         <source>Triple single quotes converted to triple double quotes.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="861"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="859"/>
         <source>Introductory quotes corrected to be {0}&quot;&quot;&quot;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="864"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="862"/>
         <source>Single line docstring put on one line.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="867"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="865"/>
         <source>Period added to summary line.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="894"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="892"/>
         <source>Blank line before function/method docstring removed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="873"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="871"/>
         <source>Blank line inserted before class docstring.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="876"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="874"/>
         <source>Blank line inserted after class docstring.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="879"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="877"/>
         <source>Blank line inserted after docstring summary.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="882"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="880"/>
         <source>Blank line inserted after last paragraph of docstring.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="885"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="883"/>
         <source>Leading quotes put on separate line.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="888"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="886"/>
         <source>Trailing quotes put on separate line.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="891"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="889"/>
         <source>Blank line before class docstring removed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="897"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="895"/>
         <source>Blank line after class docstring removed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="900"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="898"/>
         <source>Blank line after function/method docstring removed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="903"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="901"/>
         <source>Blank line after last paragraph removed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="906"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="904"/>
         <source>Tab converted to 4 spaces.</source>
         <translation>Tabulation convertie en 4 espaces.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="909"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="907"/>
         <source>Indentation adjusted to be a multiple of four.</source>
         <translation>Indentation ajustée pour être un multiple de quatre.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="912"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="910"/>
         <source>Indentation of continuation line corrected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="915"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="913"/>
         <source>Indentation of closing bracket corrected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="918"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="916"/>
         <source>Missing indentation of continuation line corrected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="921"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="919"/>
         <source>Closing bracket aligned to opening bracket.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="924"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="922"/>
         <source>Indentation level changed.</source>
         <translation>Niveau d&apos;indentation modifié.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="927"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="925"/>
         <source>Indentation level of hanging indentation changed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="930"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="928"/>
         <source>Visual indentation corrected.</source>
         <translation>Indentation visuel corrigée.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="945"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="943"/>
         <source>Extraneous whitespace removed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="942"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="940"/>
         <source>Missing whitespace added.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="948"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="946"/>
         <source>Whitespace around comment sign corrected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="952"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="950"/>
         <source>%n blank line(s) inserted.</source>
         <translation>
             <numerusform>%n ligne vide insérée.</numerusform>
@@ -4302,7 +4302,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="955"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="953"/>
         <source>%n superfluous lines removed</source>
         <translation>
             <numerusform>%n ligne superflue supprimée</numerusform>
@@ -4310,72 +4310,72 @@
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="959"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="957"/>
         <source>Superfluous blank lines removed.</source>
         <translation>Lignes superflues vides supprimées.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="962"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="960"/>
         <source>Superfluous blank lines after function decorator removed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="965"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="963"/>
         <source>Imports were put on separate lines.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="968"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="966"/>
         <source>Long lines have been shortened.</source>
         <translation>Les longues lignes ont été raccourcies.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="971"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="969"/>
         <source>Redundant backslash in brackets removed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="977"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="975"/>
         <source>Compound statement corrected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="980"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="978"/>
         <source>Comparison to None/True/False corrected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="983"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="981"/>
         <source>&apos;{0}&apos; argument added.</source>
         <translation>&apos;{0}&apos; argument ajouté.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="986"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="984"/>
         <source>&apos;{0}&apos; argument removed.</source>
         <translation>&apos;{0}&apos; argument supprimé.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="989"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="987"/>
         <source>Whitespace stripped from end of line.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="992"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="990"/>
         <source>newline added to end of file.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="995"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="993"/>
         <source>Superfluous trailing blank lines removed from end of file.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="998"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="996"/>
         <source>&apos;&lt;&gt;&apos; replaced by &apos;!=&apos;.</source>
         <translation>&apos;&lt;&gt;&apos; remplacé par &apos;!=&apos;.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="1002"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="1000"/>
         <source>Could not save the file! Skipping it. Reason: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -4876,22 +4876,22 @@
 <context>
     <name>ComplexityChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="479"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="477"/>
         <source>&apos;{0}&apos; is too complex ({1})</source>
         <translation>&apos;{0}&apos; est trop complexe ({1})</translation>
     </message>
     <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="479"/>
+        <source>source code line is too complex ({0})</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="481"/>
-        <source>source code line is too complex ({0})</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="483"/>
         <source>overall source code line complexity is too high ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="486"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="484"/>
         <source>{0}: {1}</source>
         <translation>{0}: {1}</translation>
     </message>
@@ -8365,28 +8365,38 @@
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="73"/>
         <source>Text to be translated exceeds the translation limit of {0} characters.</source>
-        <translation>Le texte à traduire dépasse la limite des {0} caractères.</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="95"/>
-        <source>Invalid response received from DeepL</source>
-        <translation>Réponse non valide reçu de DeepL</translation>
+        <translation type="obsolete">Le texte à traduire dépasse la limite des {0} caractères.</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="98"/>
+        <source>Invalid response received from DeepL</source>
+        <translation>Réponse non valide reçu de DeepL</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="101"/>
         <source>DeepL call returned an unknown result</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="102"/>
         <source>&lt;p&gt;No translation found&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Pas de traduction trouvée&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="79"/>
+        <translation type="obsolete">&lt;p&gt;Pas de traduction trouvée&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="82"/>
         <source>A valid DeepL Pro key is required.</source>
         <translation>Une clef Deepl Pro est nécessaire.</translation>
     </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="73"/>
+        <source>DeepL: Text to be translated exceeds the translation limit of {0} characters.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="105"/>
+        <source>&lt;p&gt;DeepL: No translation found&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>DeleteFilesConfirmationDialog</name>
@@ -8652,237 +8662,237 @@
 <context>
     <name>DocStyleChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="291"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="289"/>
         <source>module is missing a docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="293"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="291"/>
         <source>public function/method is missing a docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="296"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="294"/>
         <source>private function/method may be missing a docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="297"/>
+        <source>public class is missing a docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="299"/>
-        <source>public class is missing a docstring</source>
+        <source>private class may be missing a docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="301"/>
-        <source>private class may be missing a docstring</source>
+        <source>docstring not surrounded by &quot;&quot;&quot;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="303"/>
-        <source>docstring not surrounded by &quot;&quot;&quot;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="305"/>
         <source>docstring containing \ not surrounded by r&quot;&quot;&quot;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="306"/>
+        <source>one-liner docstring on multiple lines</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="308"/>
-        <source>one-liner docstring on multiple lines</source>
-        <translation type="unfinished"></translation>
+        <source>docstring has wrong indentation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="357"/>
+        <source>docstring summary does not end with a period</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="314"/>
+        <source>docstring summary is not in imperative mood (Does instead of Do)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="318"/>
+        <source>docstring summary looks like a function&apos;s/method&apos;s signature</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="321"/>
+        <source>docstring does not mention the return value type</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="324"/>
+        <source>function/method docstring is separated by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="327"/>
+        <source>class docstring is not preceded by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="330"/>
+        <source>class docstring is not followed by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="391"/>
+        <source>docstring summary is not followed by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="336"/>
+        <source>last paragraph of docstring is not followed by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="344"/>
+        <source>private function/method is missing a docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="347"/>
+        <source>private class is missing a docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="351"/>
+        <source>leading quotes of docstring not on separate line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="354"/>
+        <source>trailing quotes of docstring not on separate line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="361"/>
+        <source>docstring does not contain a @return line but function/method returns something</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="365"/>
+        <source>docstring contains a @return line but function/method doesn&apos;t return anything</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="369"/>
+        <source>docstring does not contain enough @param/@keyparam lines</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="372"/>
+        <source>docstring contains too many @param/@keyparam lines</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="375"/>
+        <source>keyword only arguments must be documented with @keyparam lines</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="378"/>
+        <source>order of @param/@keyparam lines does not match the function/method signature</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="381"/>
+        <source>class docstring is preceded by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="383"/>
+        <source>class docstring is followed by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="385"/>
+        <source>function/method docstring is preceded by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="388"/>
+        <source>function/method docstring is followed by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="394"/>
+        <source>last paragraph of docstring is followed by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="397"/>
+        <source>docstring does not contain a @exception line but function/method raises an exception</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="401"/>
+        <source>docstring contains a @exception line but function/method doesn&apos;t raise an exception</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="424"/>
+        <source>{0}: {1}</source>
+        <translation>{0}: {1}</translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="310"/>
-        <source>docstring has wrong indentation</source>
+        <source>docstring does not contain a summary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="359"/>
-        <source>docstring summary does not end with a period</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="316"/>
-        <source>docstring summary is not in imperative mood (Does instead of Do)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="320"/>
-        <source>docstring summary looks like a function&apos;s/method&apos;s signature</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="323"/>
-        <source>docstring does not mention the return value type</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="326"/>
-        <source>function/method docstring is separated by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="329"/>
-        <source>class docstring is not preceded by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="332"/>
-        <source>class docstring is not followed by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="393"/>
-        <source>docstring summary is not followed by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="338"/>
-        <source>last paragraph of docstring is not followed by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="346"/>
-        <source>private function/method is missing a docstring</source>
+        <source>docstring summary does not start with &apos;{0}&apos;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="405"/>
+        <source>raised exception &apos;{0}&apos; is not documented in docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="408"/>
+        <source>documented exception &apos;{0}&apos; is not raised</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="411"/>
+        <source>docstring does not contain a @signal line but class defines signals</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="414"/>
+        <source>docstring contains a @signal line but class doesn&apos;t define signals</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="417"/>
+        <source>defined signal &apos;{0}&apos; is not documented in docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="420"/>
+        <source>documented signal &apos;{0}&apos; is not defined</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="349"/>
-        <source>private class is missing a docstring</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="353"/>
-        <source>leading quotes of docstring not on separate line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="356"/>
-        <source>trailing quotes of docstring not on separate line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="363"/>
-        <source>docstring does not contain a @return line but function/method returns something</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="367"/>
-        <source>docstring contains a @return line but function/method doesn&apos;t return anything</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="371"/>
-        <source>docstring does not contain enough @param/@keyparam lines</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="374"/>
-        <source>docstring contains too many @param/@keyparam lines</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="377"/>
-        <source>keyword only arguments must be documented with @keyparam lines</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="380"/>
-        <source>order of @param/@keyparam lines does not match the function/method signature</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="383"/>
-        <source>class docstring is preceded by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="385"/>
-        <source>class docstring is followed by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="387"/>
-        <source>function/method docstring is preceded by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="390"/>
-        <source>function/method docstring is followed by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="396"/>
-        <source>last paragraph of docstring is followed by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="399"/>
-        <source>docstring does not contain a @exception line but function/method raises an exception</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="403"/>
-        <source>docstring contains a @exception line but function/method doesn&apos;t raise an exception</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="426"/>
-        <source>{0}: {1}</source>
-        <translation>{0}: {1}</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="312"/>
-        <source>docstring does not contain a summary</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="361"/>
-        <source>docstring summary does not start with &apos;{0}&apos;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="407"/>
-        <source>raised exception &apos;{0}&apos; is not documented in docstring</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="410"/>
-        <source>documented exception &apos;{0}&apos; is not raised</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="413"/>
-        <source>docstring does not contain a @signal line but class defines signals</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="416"/>
-        <source>docstring contains a @signal line but class doesn&apos;t define signals</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="419"/>
-        <source>defined signal &apos;{0}&apos; is not documented in docstring</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="422"/>
-        <source>documented signal &apos;{0}&apos; is not defined</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="351"/>
         <source>class docstring is still a default string</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="344"/>
-        <source>function docstring is still a default string</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="342"/>
+        <source>function docstring is still a default string</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="340"/>
         <source>module docstring is still a default string</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11308,7 +11318,7 @@
         <translation>Éditer le point d&apos;arrêt...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5605"/>
+        <location filename="../QScintilla/Editor.py" line="5604"/>
         <source>Enable breakpoint</source>
         <translation>Activer le point d&apos;arrêt</translation>
     </message>
@@ -11373,97 +11383,97 @@
         <translation>Fichier Modifié</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4767"/>
+        <location filename="../QScintilla/Editor.py" line="4766"/>
         <source>Autocompletion</source>
         <translation>Autocompletion</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4767"/>
+        <location filename="../QScintilla/Editor.py" line="4766"/>
         <source>Autocompletion is not available because there is no autocompletion source set.</source>
         <translation>L&apos;autocompletion n&apos;est pas disponible car aucune source d&apos;autocomplétion n&apos;est définie.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5608"/>
+        <location filename="../QScintilla/Editor.py" line="5607"/>
         <source>Disable breakpoint</source>
         <translation>Désactiver le point d&apos;arrêt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5983"/>
+        <location filename="../QScintilla/Editor.py" line="5982"/>
         <source>Code Coverage</source>
         <translation>Code Coverage</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5983"/>
+        <location filename="../QScintilla/Editor.py" line="5982"/>
         <source>Please select a coverage file</source>
         <translation>Sélectionner un fichier coverage</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6163"/>
+        <location filename="../QScintilla/Editor.py" line="6162"/>
         <source>Profile Data</source>
         <translation>Profiler de données</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6163"/>
+        <location filename="../QScintilla/Editor.py" line="6162"/>
         <source>Please select a profile file</source>
         <translation>Sélectionner un fichier profile</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6714"/>
+        <location filename="../QScintilla/Editor.py" line="6713"/>
         <source>Macro Name</source>
         <translation>Nom de la macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6714"/>
+        <location filename="../QScintilla/Editor.py" line="6713"/>
         <source>Select a macro name:</source>
         <translation>Sélectionner un nom de macro:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6785"/>
+        <location filename="../QScintilla/Editor.py" line="6784"/>
         <source>Macro files (*.macro)</source>
         <translation>Fichier Macro (*.macro)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6742"/>
+        <location filename="../QScintilla/Editor.py" line="6741"/>
         <source>Load macro file</source>
         <translation>Charger un fichier macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6765"/>
+        <location filename="../QScintilla/Editor.py" line="6764"/>
         <source>Error loading macro</source>
         <translation>Erreur lors du chargement de la macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6785"/>
+        <location filename="../QScintilla/Editor.py" line="6784"/>
         <source>Save macro file</source>
         <translation>Enregistrer le fichier macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6802"/>
+        <location filename="../QScintilla/Editor.py" line="6801"/>
         <source>Save macro</source>
         <translation>Enregistrer la macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6818"/>
+        <location filename="../QScintilla/Editor.py" line="6817"/>
         <source>Error saving macro</source>
         <translation>Erreur lors de l&apos;enregistrement de la macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6831"/>
+        <location filename="../QScintilla/Editor.py" line="6830"/>
         <source>Start Macro Recording</source>
         <translation>Démarrer l&apos;enregistrement de la macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6857"/>
+        <location filename="../QScintilla/Editor.py" line="6856"/>
         <source>Macro Recording</source>
         <translation>Enregistrement de macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6857"/>
+        <location filename="../QScintilla/Editor.py" line="6856"/>
         <source>Enter name of the macro:</source>
         <translation>Entrer le nom de la macro:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6997"/>
+        <location filename="../QScintilla/Editor.py" line="6996"/>
         <source>File changed</source>
         <translation>Fichier modifié</translation>
     </message>
@@ -11483,7 +11493,7 @@
         <translation>Supprimer les flags d&apos;erreurs de syntaxe</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7308"/>
+        <location filename="../QScintilla/Editor.py" line="7307"/>
         <source>Drop Error</source>
         <translation>Erreur de suppression</translation>
     </message>
@@ -11493,12 +11503,12 @@
         <translation>Afficher le message d&apos;erreur de syntaxe</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6325"/>
+        <location filename="../QScintilla/Editor.py" line="6324"/>
         <source>Syntax Error</source>
         <translation>Erreur de syntaxe</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6325"/>
+        <location filename="../QScintilla/Editor.py" line="6324"/>
         <source>No syntax error message available.</source>
         <translation>Aucun message d&apos;erreur de syntaxe..</translation>
     </message>
@@ -11528,17 +11538,17 @@
         <translation>Ligne non executée précédente</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6046"/>
+        <location filename="../QScintilla/Editor.py" line="6045"/>
         <source>Show Code Coverage Annotations</source>
         <translation>Afficher les annotations de Code Coverage</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6039"/>
+        <location filename="../QScintilla/Editor.py" line="6038"/>
         <source>All lines have been covered.</source>
         <translation>Toutes les lignes ont été executées.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6046"/>
+        <location filename="../QScintilla/Editor.py" line="6045"/>
         <source>There is no coverage file available.</source>
         <translation>Impossible de trouver le fichier de coverage.</translation>
     </message>
@@ -11573,72 +11583,72 @@
         <translation>Pas de langage</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7329"/>
+        <location filename="../QScintilla/Editor.py" line="7328"/>
         <source>Resources</source>
         <translation>Ressources</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7331"/>
+        <location filename="../QScintilla/Editor.py" line="7330"/>
         <source>Add file...</source>
         <translation>Ajouter un fichier...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7333"/>
+        <location filename="../QScintilla/Editor.py" line="7332"/>
         <source>Add files...</source>
         <translation>Ajouter des fichiers...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7335"/>
+        <location filename="../QScintilla/Editor.py" line="7334"/>
         <source>Add aliased file...</source>
         <translation>Ajouter un fichier alias...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7338"/>
+        <location filename="../QScintilla/Editor.py" line="7337"/>
         <source>Add localized resource...</source>
         <translation>Ajouter une ressource localisée...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7361"/>
+        <location filename="../QScintilla/Editor.py" line="7360"/>
         <source>Add file resource</source>
         <translation>Ajoute un fichier ressource</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7377"/>
+        <location filename="../QScintilla/Editor.py" line="7376"/>
         <source>Add file resources</source>
         <translation>Ajoute des fichiers ressources</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7404"/>
+        <location filename="../QScintilla/Editor.py" line="7403"/>
         <source>Add aliased file resource</source>
         <translation>Ajoute un alias de fichier ressource</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7470"/>
+        <location filename="../QScintilla/Editor.py" line="7469"/>
         <source>Package Diagram</source>
         <translation>Diagramme de package</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7470"/>
+        <location filename="../QScintilla/Editor.py" line="7469"/>
         <source>Include class attributes?</source>
         <translation>Inclure les attributs de classes ?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7506"/>
+        <location filename="../QScintilla/Editor.py" line="7505"/>
         <source>Application Diagram</source>
         <translation>Diagramme de l&apos;application</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7506"/>
+        <location filename="../QScintilla/Editor.py" line="7505"/>
         <source>Include module names?</source>
         <translation>Inclure les noms de modules ?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7342"/>
+        <location filename="../QScintilla/Editor.py" line="7341"/>
         <source>Add resource frame</source>
         <translation>Ajouter un cadre ressource</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6831"/>
+        <location filename="../QScintilla/Editor.py" line="6830"/>
         <source>Macro recording is already active. Start new?</source>
         <translation>L&apos;enregistrement de macro est déjà actif. En démarrer une nouvelle ?</translation>
     </message>
@@ -11683,12 +11693,12 @@
         <translation>Aucun format d&apos;exportation indiqué. Abandon...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7492"/>
+        <location filename="../QScintilla/Editor.py" line="7491"/>
         <source>Imports Diagram</source>
         <translation>Diagramme des modules</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7492"/>
+        <location filename="../QScintilla/Editor.py" line="7491"/>
         <source>Include imports from external modules?</source>
         <translation>Inclure l&apos;importation de modules externes?</translation>
     </message>
@@ -11758,7 +11768,7 @@
         <translation>Sélectionne l&apos;analyseur Pygments à appliquer.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7835"/>
+        <location filename="../QScintilla/Editor.py" line="7834"/>
         <source>Check spelling...</source>
         <translation>Correction orthographique...</translation>
     </message>
@@ -11768,12 +11778,12 @@
         <translation>Correction orthographique de la sélection...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7838"/>
+        <location filename="../QScintilla/Editor.py" line="7837"/>
         <source>Add to dictionary</source>
         <translation>Ajouter au dictionnaire</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7840"/>
+        <location filename="../QScintilla/Editor.py" line="7839"/>
         <source>Ignore All</source>
         <translation>Tout ignorer</translation>
     </message>
@@ -11813,32 +11823,32 @@
         <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="6756"/>
+        <location filename="../QScintilla/Editor.py" line="6755"/>
         <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="6765"/>
+        <location filename="../QScintilla/Editor.py" line="6764"/>
         <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="6818"/>
+        <location filename="../QScintilla/Editor.py" line="6817"/>
         <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="7167"/>
+        <location filename="../QScintilla/Editor.py" line="7166"/>
         <source>{0} (ro)</source>
         <translation type="unfinished">{0} (ro)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7308"/>
+        <location filename="../QScintilla/Editor.py" line="7307"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; n&apos;est pas un fichier.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7404"/>
+        <location filename="../QScintilla/Editor.py" line="7403"/>
         <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11868,22 +11878,22 @@
         <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="6802"/>
+        <location filename="../QScintilla/Editor.py" line="6801"/>
         <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="6602"/>
+        <location filename="../QScintilla/Editor.py" line="6601"/>
         <source>Warning: {0}</source>
         <translation>Alerte : {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6609"/>
+        <location filename="../QScintilla/Editor.py" line="6608"/>
         <source>Error: {0}</source>
         <translation>Erreur : {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6993"/>
+        <location filename="../QScintilla/Editor.py" line="6992"/>
         <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>
@@ -11908,27 +11918,27 @@
         <translation>Modification précédente</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8256"/>
+        <location filename="../QScintilla/Editor.py" line="8255"/>
         <source>Sort Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8256"/>
+        <location filename="../QScintilla/Editor.py" line="8255"/>
         <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="6537"/>
+        <location filename="../QScintilla/Editor.py" line="6536"/>
         <source>Warning</source>
         <translation>Warning</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6537"/>
+        <location filename="../QScintilla/Editor.py" line="6536"/>
         <source>No warning messages available.</source>
         <translation>Pas de message d&apos;alerte disponible.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6599"/>
+        <location filename="../QScintilla/Editor.py" line="6598"/>
         <source>Style: {0}</source>
         <translation>Style : {0}</translation>
     </message>
@@ -11953,7 +11963,7 @@
         <translation>Réouvrir avec encodage</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6987"/>
+        <location filename="../QScintilla/Editor.py" line="6986"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric6. Reread it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; a été modifié depuis l&apos;ouverture dans eric6. Le relire ?&lt;/p&gt;</translation>
     </message>
@@ -11968,32 +11978,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4897"/>
+        <location filename="../QScintilla/Editor.py" line="4896"/>
         <source>Auto-Completion Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4897"/>
+        <location filename="../QScintilla/Editor.py" line="4896"/>
         <source>The completion list provider &apos;{0}&apos; was already registered. Ignoring duplicate request.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5176"/>
+        <location filename="../QScintilla/Editor.py" line="5175"/>
         <source>Call-Tips Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5176"/>
+        <location filename="../QScintilla/Editor.py" line="5175"/>
         <source>The call-tips provider &apos;{0}&apos; was already registered. Ignoring duplicate request.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8345"/>
+        <location filename="../QScintilla/Editor.py" line="8344"/>
         <source>Register Mouse Click Handler</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8345"/>
+        <location filename="../QScintilla/Editor.py" line="8344"/>
         <source>A mouse click handler for &quot;{0}&quot; was already registered by &quot;{1}&quot;. Aborting request by &quot;{2}&quot;...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -12023,12 +12033,12 @@
         <translation>Exécuter la sélection en console</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8466"/>
+        <location filename="../QScintilla/Editor.py" line="8465"/>
         <source>EditorConfig Properties</source>
         <translation>Propriétés d&apos;EditorConfig</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8466"/>
+        <location filename="../QScintilla/Editor.py" line="8465"/>
         <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&apos;EditorConfig du fichier &lt;b&gt;{0}&lt;/b&gt; n&apos;ont pas pu être chargées.&lt;/p&gt;</translation>
     </message>
@@ -13848,27 +13858,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="681"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="685"/>
         <source>Delete Sub-Style</source>
         <translation>Supprimer le sous-style</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="681"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="685"/>
         <source>&lt;p&gt;Shall the sub-style &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Faut-il vraiment supprimer le sous-style &lt;b&gt;{0}&lt;/b&gt; ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="721"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="725"/>
         <source>{0} - Copy</source>
         <translation>{0} - Copie</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="749"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="753"/>
         <source>Reset Sub-Styles to Default</source>
         <translation>Réinitialiser les sous-styles</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="749"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="753"/>
         <source>&lt;p&gt;Do you really want to reset all defined sub-styles of &lt;b&gt;{0}&lt;/b&gt; to the default values?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Voulez-vous vraiment réinitialiser les sous-styles de &lt;b&gt;{0}&lt;/b&gt; aux valeurs par défaut ?&lt;/p&gt;</translation>
     </message>
@@ -17691,7 +17701,7 @@
 <context>
     <name>EricdocPlugin</name>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="102"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="81"/>
         <source>Qt Help Tools</source>
         <translation>Outils QtHelp</translation>
     </message>
@@ -17701,22 +17711,22 @@
         <translation>Générateur de documentation Eric6</translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="145"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="124"/>
         <source>Generate documentation (eric6_doc)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="145"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="124"/>
         <source>Generate &amp;documentation (eric6_doc)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="149"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="128"/>
         <source>Generate API documentation using eric6_doc</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="151"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="130"/>
         <source>&lt;b&gt;Generate documentation&lt;/b&gt;&lt;p&gt;Generate API documentation using eric6_doc.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -26599,27 +26609,27 @@
 <context>
     <name>Globals</name>
     <message>
-        <location filename="../Globals/__init__.py" line="452"/>
+        <location filename="../Globals/__init__.py" line="421"/>
         <source>{0:4.2f} Bytes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Globals/__init__.py" line="456"/>
+        <location filename="../Globals/__init__.py" line="425"/>
         <source>{0:4.2f} KiB</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Globals/__init__.py" line="460"/>
+        <location filename="../Globals/__init__.py" line="429"/>
         <source>{0:4.2f} MiB</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Globals/__init__.py" line="464"/>
+        <location filename="../Globals/__init__.py" line="433"/>
         <source>{0:4.2f} GiB</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Globals/__init__.py" line="468"/>
+        <location filename="../Globals/__init__.py" line="437"/>
         <source>{0:4.2f} TiB</source>
         <translation type="unfinished"></translation>
     </message>
@@ -26629,12 +26639,22 @@
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GlosbeEngine.py" line="85"/>
         <source>Invalid response received</source>
-        <translation>Réponse invalide reçue</translation>
+        <translation type="obsolete">Réponse invalide reçue</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GlosbeEngine.py" line="99"/>
         <source>No translation found.</source>
-        <translation>Pas de traduction trouvée.</translation>
+        <translation type="obsolete">Pas de traduction trouvée.</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GlosbeEngine.py" line="85"/>
+        <source>Glosbe: Invalid response received</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GlosbeEngine.py" line="99"/>
+        <source>Glosbe: No translation found.</source>
+        <translation type="unfinished"></translation>
     </message>
 </context>
 <context>
@@ -26642,35 +26662,60 @@
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV1Engine.py" line="98"/>
         <source>Invalid response received</source>
-        <translation>Réponse invalide reçue</translation>
+        <translation type="obsolete">Réponse invalide reçue</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV1Engine.py" line="135"/>
         <source>No translation found.</source>
-        <translation>Pas de traduction trouvée.</translation>
+        <translation type="obsolete">Pas de traduction trouvée.</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV1Engine.py" line="165"/>
         <source>Only texts up to {0} characters are allowed.</source>
-        <translation>Uniquement les texte de moins de {0} caractères autorisés.</translation>
+        <translation type="obsolete">Uniquement les texte de moins de {0} caractères autorisés.</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV1Engine.py" line="98"/>
+        <source>Google V1: Invalid response received</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV1Engine.py" line="135"/>
+        <source>Google V1: No translation found.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV1Engine.py" line="165"/>
+        <source>Google V1: Only texts up to {0} characters are allowed.</source>
+        <translation type="unfinished"></translation>
     </message>
 </context>
 <context>
     <name>GoogleV2Engine</name>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="72"/>
-        <source>A valid Google Translate key is required.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="83"/>
         <source>Invalid response received</source>
-        <translation>Réponse reçue invalide</translation>
+        <translation type="obsolete">Réponse reçue invalide</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="89"/>
         <source>No translation available.</source>
-        <translation>Pas de traduction disponible.</translation>
+        <translation type="obsolete">Pas de traduction disponible.</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="72"/>
+        <source>Google V2: A valid Google Translate key is required.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="84"/>
+        <source>Google V2: Invalid response received</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="90"/>
+        <source>Google V2: No translation available.</source>
+        <translation type="unfinished"></translation>
     </message>
 </context>
 <context>
@@ -38356,24 +38401,14 @@
 <context>
     <name>IbmWatsonEngine</name>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="183"/>
-        <source>A valid IBM Watson Language Translator key is required.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="192"/>
-        <source>A valid IBM Watson Language Translator URL is required.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="244"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="147"/>
         <source>Invalid response received</source>
-        <translation>Réponse invalide reçue</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
+        <translation type="obsolete">Réponse invalide reçue</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="150"/>
         <source>No translation available.</source>
-        <translation>Pas de traduction disponible.</translation>
+        <translation type="obsolete">Pas de traduction disponible.</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
@@ -38384,9 +38419,35 @@
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="232"/>
         <source>The server sent an error indication.
 Error: {0}</source>
-        <translation>Le serveur a envoyé une indication d&apos;erreur.
+        <translation type="obsolete">Le serveur a envoyé une indication d&apos;erreur.
 Erreur : {0}</translation>
     </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
+        <source>IBM Watson: No translation available.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="183"/>
+        <source>IBM Watson: A valid Language Translator key is required.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="192"/>
+        <source>IBM Watson: A valid Language Translator URL is required.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="244"/>
+        <source>IBM Watson: Invalid response received</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="232"/>
+        <source>IBM Watson: The server sent an error indication.
+ Error: {0}</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>IconEditorGrid</name>
@@ -44210,467 +44271,467 @@
 <context>
     <name>Lexers</name>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="86"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="84"/>
         <source>Bash</source>
         <translation>Bash</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="86"/>
+        <source>Batch</source>
+        <translation>Batch</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="88"/>
-        <source>Batch</source>
-        <translation>Batch</translation>
+        <source>C/C++</source>
+        <translation>C/C++</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="90"/>
-        <source>C/C++</source>
-        <translation>C/C++</translation>
+        <source>C#</source>
+        <translation>C#</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="92"/>
-        <source>C#</source>
-        <translation>C#</translation>
+        <source>CMake</source>
+        <translation>CMake</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="94"/>
-        <source>CMake</source>
-        <translation>CMake</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="96"/>
         <source>CSS</source>
         <translation>CSS</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="98"/>
+        <source>D</source>
+        <translation>D</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="100"/>
-        <source>D</source>
-        <translation>D</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="102"/>
         <source>Diff</source>
         <translation>Diff</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="106"/>
+        <source>HTML/PHP/XML</source>
+        <translation>HTML/PHP/XML</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="108"/>
-        <source>HTML/PHP/XML</source>
-        <translation>HTML/PHP/XML</translation>
+        <source>IDL</source>
+        <translation>IDL</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="110"/>
-        <source>IDL</source>
-        <translation>IDL</translation>
+        <source>Java</source>
+        <translation>Java</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="112"/>
-        <source>Java</source>
-        <translation>Java</translation>
+        <source>JavaScript</source>
+        <translation>JavaScript</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="114"/>
-        <source>JavaScript</source>
-        <translation>JavaScript</translation>
+        <source>Lua</source>
+        <translation>Lua</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="116"/>
-        <source>Lua</source>
-        <translation>Lua</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="118"/>
         <source>Makefile</source>
         <translation>Makefile</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="126"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="124"/>
         <source>Perl</source>
         <translation>Perl</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="128"/>
+        <source>Povray</source>
+        <translation>Povray</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="130"/>
-        <source>Povray</source>
-        <translation>Povray</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="132"/>
         <source>Properties</source>
         <translation>Propriétés</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="141"/>
+        <source>Ruby</source>
+        <translation>Ruby</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="143"/>
-        <source>Ruby</source>
-        <translation>Ruby</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="145"/>
         <source>SQL</source>
         <translation>SQL</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="147"/>
+        <source>TeX</source>
+        <translation>TeX</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="149"/>
-        <source>TeX</source>
-        <translation>TeX</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="151"/>
         <source>VHDL</source>
         <translation>VHDL</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="575"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="562"/>
         <source>Quixote Template Files (*.ptl)</source>
         <translation>Fichiers gabarits Quixote (*.ptl)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="578"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="565"/>
         <source>Ruby Files (*.rb)</source>
         <translation>Fichiers Ruby (*.rb)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="581"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="568"/>
         <source>IDL Files (*.idl)</source>
         <translation>Fichiers IDL (*.idl)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="408"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="398"/>
         <source>C Files (*.h *.c)</source>
         <translation>Fichiers C (*.h *.c)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="411"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="401"/>
         <source>C++ Files (*.h *.hpp *.hh *.cxx *.cpp *.cc)</source>
         <translation>Fichiers C++ (*.h *.hpp *.hh *.cxx *.cpp *.cc)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="596"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="583"/>
         <source>C# Files (*.cs)</source>
         <translation>Fichiers C# (*.cs)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="417"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="407"/>
         <source>HTML Files (*.html *.htm *.asp *.shtml)</source>
         <translation>Fichiers HTML (*.html *.htm *.asp *.shtml)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="608"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="595"/>
         <source>CSS Files (*.css)</source>
         <translation>Fichiers CSS (*.css)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="611"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="598"/>
         <source>QSS Files (*.qss)</source>
         <translation>Fichiers QSS (*.qss)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="426"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="416"/>
         <source>PHP Files (*.php *.php3 *.php4 *.php5 *.phtml)</source>
         <translation>Fichiers PHP (*.php *.php3 *.php4 *.php5 *.phtml)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="623"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="610"/>
         <source>Qt Resource Files (*.qrc)</source>
         <translation>Fichiers Qt Resource (*.qrc)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="435"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="425"/>
         <source>D Files (*.d *.di)</source>
         <translation>Fichiers D (*.d *.di)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="632"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="619"/>
         <source>Java Files (*.java)</source>
         <translation>Fichiers Java (*.java)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="635"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="622"/>
         <source>JavaScript Files (*.js)</source>
         <translation>Fichiers JavaScript (*.js)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="638"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="625"/>
         <source>SQL Files (*.sql)</source>
         <translation>Fichiers SQL (*.sql)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="641"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="628"/>
         <source>Docbook Files (*.docbook)</source>
         <translation>Fichiers Docbook (*.docbook)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="450"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="440"/>
         <source>Perl Files (*.pl *.pm *.ph)</source>
         <translation>Fichiers Perl (*.pl *.pm *.ph)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="650"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="637"/>
         <source>Lua Files (*.lua)</source>
         <translation>Fichiers Lua (*.lua)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="456"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="446"/>
         <source>Tex Files (*.tex *.sty *.aux *.toc *.idx)</source>
         <translation>Fichiers Tex (*.tex *.sty *.aux *.toc *.idx)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="653"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="640"/>
         <source>Shell Files (*.sh)</source>
         <translation>Fichiers Shell (*.sh)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="462"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="452"/>
         <source>Batch Files (*.bat *.cmd)</source>
         <translation>Fichiers Batch (*.bat *.cmd)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="465"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="455"/>
         <source>Diff Files (*.diff *.patch)</source>
         <translation>Fichiers Diff (*.diff *.patch)</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="458"/>
+        <source>Makefiles (*makefile Makefile *.mak)</source>
+        <translation>Makefiles (*makefile Makefile *.mak)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="461"/>
+        <source>Properties Files (*.properties *.ini *.inf *.reg *.cfg *.cnf *.rc)</source>
+        <translation>Fichiers de configuration (*.properties *.ini *.inf *.reg *.cfg *.cnf *.rc)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="664"/>
+        <source>Povray Files (*.pov)</source>
+        <translation>Fichiers Povray (*.pov)</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="468"/>
-        <source>Makefiles (*makefile Makefile *.mak)</source>
-        <translation>Makefiles (*makefile Makefile *.mak)</translation>
+        <source>CMake Files (CMakeLists.txt *.cmake *.ctest)</source>
+        <translation>Fichiers CMake (CMakeLists.txt *.cmake *.ctest)</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="471"/>
-        <source>Properties Files (*.properties *.ini *.inf *.reg *.cfg *.cnf *.rc)</source>
-        <translation>Fichiers de configuration (*.properties *.ini *.inf *.reg *.cfg *.cnf *.rc)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="677"/>
-        <source>Povray Files (*.pov)</source>
-        <translation>Fichiers Povray (*.pov)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="478"/>
-        <source>CMake Files (CMakeLists.txt *.cmake *.ctest)</source>
-        <translation>Fichiers CMake (CMakeLists.txt *.cmake *.ctest)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="481"/>
         <source>VHDL Files (*.vhd *.vhdl)</source>
         <translation>Fichiers VHDL (*.vhd *.vhdl)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="746"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="730"/>
         <source>All Files (*)</source>
         <translation>Tous fichiers (*)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="147"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="145"/>
         <source>TCL</source>
         <translation>TCL</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="484"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="474"/>
         <source>TCL/Tk Files (*.tcl *.tk)</source>
         <translation>Fichiers TCL/Tk (*.tcl *.tk)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="587"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="574"/>
         <source>C Files (*.c)</source>
         <translation>Fichiers C (*.c)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="590"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="577"/>
         <source>C++ Files (*.cpp)</source>
         <translation>Fichiers C++ (*.cpp)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="593"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="580"/>
         <source>C++/C Header Files (*.h)</source>
         <translation>Fichiers headers C++/C (*.h)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="599"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="586"/>
         <source>HTML Files (*.html)</source>
         <translation>Fichiers HTML (*.html)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="602"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="589"/>
         <source>PHP Files (*.php)</source>
         <translation>Fichiers PHP (*.php)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="605"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="592"/>
         <source>ASP Files (*.asp)</source>
         <translation>Fichiers ASP (*.asp)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="614"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="601"/>
         <source>XML Files (*.xml)</source>
         <translation>Fichiers XML (*.xml)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="617"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="604"/>
         <source>XSL Files (*.xsl)</source>
         <translation>Fichiers XSL (*.xsl)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="620"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="607"/>
         <source>DTD Files (*.dtd)</source>
         <translation>Fichiers DTD (*.dtd)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="626"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="613"/>
         <source>D Files (*.d)</source>
         <translation>Fichiers D (*.d)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="629"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="616"/>
         <source>D Interface Files (*.di)</source>
         <translation>Fichiers Interface D (*.di)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="644"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="631"/>
         <source>Perl Files (*.pl)</source>
         <translation>Fichiers Perl (*.pl)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="647"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="634"/>
         <source>Perl Module Files (*.pm)</source>
         <translation>Fichiers module Perl (*.pm)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="656"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="643"/>
         <source>Batch Files (*.bat)</source>
         <translation>Fichiers Batch (*.bat)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="659"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="646"/>
         <source>TeX Files (*.tex)</source>
         <translation>Fichiers TeX (*.tex)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="662"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="649"/>
         <source>TeX Template Files (*.sty)</source>
         <translation>Fichiers Template TeX (*.sty)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="665"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="652"/>
         <source>Diff Files (*.diff)</source>
         <translation>Fichiers Diff (*.diff)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="668"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="655"/>
         <source>Make Files (*.mak)</source>
         <translation>Fichiers Make (*.mak)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="671"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="658"/>
         <source>Properties Files (*.ini)</source>
         <translation>Fichiers de propriétés (*.ini)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="674"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="661"/>
         <source>Configuration Files (*.cfg)</source>
         <translation>Fichiers de configuration (*.cfg)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="680"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="667"/>
         <source>CMake Files (CMakeLists.txt)</source>
         <translation>Fichiers CMake (CMakeLists.txt)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="683"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="670"/>
         <source>CMake Macro Files (*.cmake)</source>
         <translation>Fichiers Macro CMake (*.cmake)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="686"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="673"/>
         <source>VHDL Files (*.vhd)</source>
         <translation>Fichiers VHDL (*.vhd)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="689"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="676"/>
         <source>TCL Files (*.tcl)</source>
         <translation>Fichiers TCL (*.tcl)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="692"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="679"/>
         <source>Tk Files (*.tk)</source>
         <translation>Fichiers Tk (*.tk)</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="102"/>
+        <source>Fortran</source>
+        <translation>Fortran</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="104"/>
-        <source>Fortran</source>
-        <translation>Fortran</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="106"/>
         <source>Fortran77</source>
         <translation>Fortran77</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="124"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="122"/>
         <source>Pascal</source>
         <translation>Pascal</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="128"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="126"/>
         <source>PostScript</source>
         <translation>PostScript</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="151"/>
+        <source>XML</source>
+        <translation>XML</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="153"/>
-        <source>XML</source>
-        <translation>XML</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="155"/>
         <source>YAML</source>
         <translation>YAML</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="429"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="419"/>
         <source>XML Files (*.xml *.xsl *.xslt *.dtd *.svg *.xul *.xsd)</source>
         <translation>Fichiers XML (*.xml *.xsl *.xslt *.dtd *.svg *.xul *.xsd)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="487"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="477"/>
         <source>Fortran Files (*.f90 *.f95 *.f2k)</source>
         <translation>Fichiers Fortran (*.f90 *.f95 *.f2k)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="490"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="480"/>
         <source>Fortran77 Files (*.f *.for)</source>
         <translation>Fichiers Fortran77 (*.f *.for)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="493"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="483"/>
         <source>Pascal Files (*.dpr *.dpk *.pas *.dfm *.inc *.pp)</source>
         <translation>Fichiers Pascal (*.dpr *.dpk *.pas *.dfm *.inc *.pp)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="704"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="691"/>
         <source>PostScript Files (*.ps)</source>
         <translation>Fichiers PostScript (*.ps)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="499"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="489"/>
         <source>YAML Files (*.yaml *.yml)</source>
         <translation>Fichiers YAML (*.yaml *.yml)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="695"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="682"/>
         <source>Fortran Files (*.f95)</source>
         <translation>Fichiers Fortran (*.f95)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="698"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="685"/>
         <source>Fortran77 Files (*.f)</source>
         <translation>Fichiers Fortran77 (*.f)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="701"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="688"/>
         <source>Pascal Files (*.pas)</source>
         <translation>Fichiers Pascal (*.pas)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="707"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="694"/>
         <source>YAML Files (*.yml)</source>
         <translation>Fichiers YAML (*.yml)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="183"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="173"/>
         <source>Pygments</source>
         <translation>Pygments</translation>
     </message>
@@ -44685,145 +44746,150 @@
         <translation type="obsolete">Fichiers Python GUI (*.pyw *.pyw2 *.pyw3)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="560"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="547"/>
         <source>Python3 Files (*.py)</source>
         <translation>Fichiers Python3 (*.py)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="563"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="550"/>
         <source>Python3 GUI Files (*.pyw)</source>
         <translation>Fichier Python3 GUI (*.pyw)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="137"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="135"/>
         <source>Python3</source>
         <translation>Python3</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="118"/>
+        <source>Matlab</source>
+        <translation>Matlab</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="120"/>
-        <source>Matlab</source>
-        <translation>Matlab</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="122"/>
         <source>Octave</source>
         <translation>Octave</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="502"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="495"/>
         <source>Matlab Files (*.m *.m.matlab)</source>
         <translation>Fichiers Matlab (*.m *.m.matlab)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="710"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="700"/>
         <source>Matlab Files (*.m)</source>
         <translation>Fichiers Matlab (*.m)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="713"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="703"/>
         <source>Octave Files (*.m.octave)</source>
         <translation>Fichiers Octave (*.m.octave)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="505"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="498"/>
         <source>Octave Files (*.m *.m.octave)</source>
         <translation>Fichiers Octave (*.m *.m.octave)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="141"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="139"/>
         <source>QSS</source>
         <translation>QSS</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="155"/>
+        <source>Gettext</source>
+        <translation>Gettext</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="706"/>
+        <source>Gettext Files (*.po)</source>
+        <translation>Fichier Gettext (*.po)</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="157"/>
-        <source>Gettext</source>
-        <translation>Gettext</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="716"/>
-        <source>Gettext Files (*.po)</source>
-        <translation>Fichier Gettext (*.po)</translation>
+        <source>CoffeeScript</source>
+        <translation>CoffeeScript</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="709"/>
+        <source>CoffeeScript Files (*.coffee)</source>
+        <translation>Fichier CoffeeScript (*.coffee)</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="159"/>
-        <source>CoffeeScript</source>
-        <translation>CoffeeScript</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="719"/>
-        <source>CoffeeScript Files (*.coffee)</source>
-        <translation>Fichier CoffeeScript (*.coffee)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="165"/>
         <source>JSON</source>
         <translation>JSON</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="725"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="712"/>
         <source>JSON Files (*.json)</source>
         <translation>Fichier JSON (*.json)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="170"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="161"/>
         <source>Markdown</source>
         <translation>Markdown</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="730"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="715"/>
         <source>Markdown Files (*.md)</source>
         <translation>Fichiers Markdown (*.md)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="134"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="132"/>
         <source>Protocol (protobuf)</source>
         <translation>Protocole (protobuf)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="584"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="571"/>
         <source>Protocol Files (*.proto)</source>
         <translation>Fichiers Protocole (*.proto)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="98"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="96"/>
         <source>Cython</source>
         <translation>Cython</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="393"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="383"/>
         <source>Cython Files (*.pyx *.pxd *.pxi)</source>
         <translation>Fichiers Cython (*.pyx *.pxd *.pxi)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="566"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="553"/>
         <source>Cython Files (*.pyx)</source>
         <translation>Fichiers Cython (*.pyx)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="569"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="556"/>
         <source>Cython Declaration Files (*.pxd)</source>
         <translation>Fichier de déclaration Cython (*.pxd)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="572"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="559"/>
         <source>Cython Include Files (*.pxi)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="139"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="137"/>
         <source>MicroPython</source>
         <translation>MicroPython</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="387"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="377"/>
         <source>Python Files (*.py *.py3)</source>
         <translation>Fichiers Python (*.py *.py3)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="390"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="380"/>
         <source>Python GUI Files (*.pyw *.pyw3)</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="697"/>
+        <source>TOML Files (*.toml)</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>LfConvertDataDialog</name>
@@ -46842,23 +46908,28 @@
 <context>
     <name>MicrosoftEngine</name>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="187"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="190"/>
         <source>You have not registered for the Microsoft Translation service.</source>
         <translation>Vous devez vous enregistrer au service de traduction Microsoft.</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="193"/>
-        <source>No valid access token available.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="170"/>
         <source>No translation available.</source>
-        <translation>Pas de traduction disponible.</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="205"/>
-        <source>No Text-to-Speech for the selected language available.</source>
+        <translation type="obsolete">Pas de traduction disponible.</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="196"/>
+        <source>MS Translator: No valid access token available.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="173"/>
+        <source>MS Translator: No translation available.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="211"/>
+        <source>MS Translator: No Text-to-Speech for the selected language available.</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -47208,168 +47279,168 @@
         <translation>&lt;b&gt;Effacer&lt;/b&gt;&lt;p&gt;Supprime tout le texte de l&apos;éditeur courant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2176"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2175"/>
         <source>About</source>
         <translation>À propos de</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2176"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2175"/>
         <source>&amp;About</source>
         <translation>&amp;À propos de </translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2180"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2179"/>
         <source>Display information about this software</source>
         <translation>Affiche les informations concernant le logiciel</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2182"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2181"/>
         <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="2188"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2187"/>
         <source>About Qt</source>
         <translation>À propos de Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2188"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2187"/>
         <source>About &amp;Qt</source>
         <translation>À propos de &amp;Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2192"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2191"/>
         <source>Display information about the Qt toolkit</source>
         <translation>Affiche les informations concernant Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2194"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2193"/>
         <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="2224"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2223"/>
         <source>&amp;File</source>
         <translation>&amp;Fichier</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2236"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2235"/>
         <source>&amp;Edit</source>
         <translation>&amp;Edition</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2256"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2255"/>
         <source>&amp;Help</source>
         <translation>A&amp;ide</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2318"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2317"/>
         <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&apos;état affiche le numéro de ligne de l&apos;éditeur.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2325"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2324"/>
         <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&apos;état affiche la position du curseur.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2330"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2329"/>
         <source>Ready</source>
         <translation>Prêt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2415"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2414"/>
         <source>File loaded</source>
         <translation>Fichier chargé</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2851"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2849"/>
         <source>Untitled</source>
         <translation>SansTitre</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2533"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2532"/>
         <source>Mini Editor</source>
         <translation>Mini éditeur</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2892"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2890"/>
         <source>Select all</source>
         <translation>Tout sélectionner</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2893"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2891"/>
         <source>Deselect all</source>
         <translation>Tout déselectionner</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2907"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2905"/>
         <source>Languages</source>
         <translation>Langages</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2910"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2908"/>
         <source>No Language</source>
         <translation>Pas de langage</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2386"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2385"/>
         <source>Open File</source>
         <translation>Ouvrir Fichier</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2504"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2503"/>
         <source>File saved</source>
         <translation>Fichier enregistré</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2311"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2310"/>
         <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&apos;état affiche une indication sur les droits d&apos;écriture des fichiers.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2201"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2200"/>
         <source>What&apos;s This?</source>
         <translation>Qu&apos;est-ce que c&apos;est ?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2201"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2200"/>
         <source>&amp;What&apos;s This?</source>
         <translation>&amp;Qu&apos;est-ce que c&apos;est?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2201"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2200"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation>Shift+F1</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2207"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2206"/>
         <source>Context sensitive help</source>
         <translation>Aide contextuelle</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2208"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2207"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Affiche l&apos;aide contextuelle&lt;/b&gt;&lt;p&gt;Dans le mode &quot;Qu&apos;est-ce que c&apos;est?&quot;, la souris est affichée avec un point d&apos;interrogation, et on peut cliquer sur les éléments de  l&apos;interface pour obtenir une courte description de l&apos;élément. Cette fonction peut être obtenue avec le bouton d&apos;aide contextuelle de la barre principale.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2268"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2267"/>
         <source>File</source>
         <translation>Fichier</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2281"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2280"/>
         <source>Edit</source>
         <translation>Editer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2291"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2290"/>
         <source>Find</source>
         <translation>Rechercher</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2298"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2297"/>
         <source>Help</source>
         <translation>Aide</translation>
     </message>
@@ -47395,22 +47466,22 @@
         <translation>Imprime le fichier courant</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2814"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2812"/>
         <source>Printing...</source>
         <translation>Impression....</translation>
     </message>
     <message>
+        <location filename="../QScintilla/MiniEditor.py" line="2830"/>
+        <source>Printing completed</source>
+        <translation>Impression terminée</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/MiniEditor.py" line="2832"/>
-        <source>Printing completed</source>
-        <translation>Impression terminée</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2834"/>
         <source>Error while printing</source>
         <translation>Erreur durant l&apos;impression</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2837"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2835"/>
         <source>Printing aborted</source>
         <translation>Impression abandonnée</translation>
     </message>
@@ -47435,22 +47506,22 @@
         <translation>&lt;b&gt;Aperçu avant impression&lt;/b&gt;&lt;p&gt;Aperçu avant impression du fichier courant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2934"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2932"/>
         <source>Guessed</source>
         <translation>Suggestion</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2956"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2954"/>
         <source>Alternatives</source>
         <translation>Alternatives</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2972"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2970"/>
         <source>Pygments Lexer</source>
         <translation>Analyseur Pygments</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2972"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2970"/>
         <source>Select the Pygments lexer to apply.</source>
         <translation>Sélectionne l&apos;analyseur Pygments à appliquer.</translation>
     </message>
@@ -47465,32 +47536,32 @@
         <translation>Position : {0:5}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2386"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2385"/>
         <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="2496"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2495"/>
         <source>Save File</source>
         <translation>Enregistrer le fichier</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2496"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2495"/>
         <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="2533"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2532"/>
         <source>{0}[*] - {1}</source>
         <translation>{0}[*] - {1}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2952"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2950"/>
         <source>Alternatives ({0})</source>
         <translation>Alternatives ({0})</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2357"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2356"/>
         <source>The document has unsaved changes.</source>
         <translation>Le document a des modifications non enregistrées.</translation>
     </message>
@@ -47505,7 +47576,7 @@
         <translation>Le mini-éditeur eric6 est un éditeur basé sur QScintilla. Il peut être utilisé pour des tâches simples, qui ne nécessitent pas toutes les options de l&apos;éditeur.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2357"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2356"/>
         <source>eric6 Mini Editor</source>
         <translation>Mini-éditeur eric6</translation>
     </message>
@@ -47530,17 +47601,17 @@
         <translation>&lt;b&gt;Enregistrer une copie&lt;/b&gt;&lt;p&gt;Enregistre une copie du contenu de l&apos;éditeur courant. Le fichier peut être entré dans un sélectionneur de fichiers.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3490"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3488"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished">Propriétés d&apos;EditorConfig</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3490"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3488"/>
         <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&apos;EditorConfig du fichier &lt;b&gt;{0}&lt;/b&gt; n&apos;ont pas pu être chargées.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2516"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2515"/>
         <source>[*] - {0}</source>
         <translation>[*] - {0}</translation>
     </message>
@@ -47548,463 +47619,463 @@
 <context>
     <name>MiscellaneousChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="492"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="490"/>
         <source>coding magic comment not found</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="495"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="493"/>
         <source>unknown encoding ({0}) found in coding magic comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="498"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="496"/>
         <source>copyright notice not present</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="501"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="499"/>
         <source>copyright notice contains invalid author</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="702"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="700"/>
         <source>found {0} formatter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="705"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="703"/>
         <source>format string does contain unindexed parameters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="708"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="706"/>
         <source>docstring does contain unindexed parameters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="711"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="709"/>
         <source>other string does contain unindexed parameters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="714"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="712"/>
         <source>format call uses too large index ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="717"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="715"/>
         <source>format call uses missing keyword ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="720"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="718"/>
         <source>format call uses keyword arguments but no named entries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="723"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="721"/>
         <source>format call uses variable arguments but no numbered entries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="726"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="724"/>
         <source>format call uses implicit and explicit indexes together</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="729"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="727"/>
         <source>format call provides unused index ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="732"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="730"/>
         <source>format call provides unused keyword ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="751"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="749"/>
         <source>expected these __future__ imports: {0}; but only got: {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="754"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="752"/>
         <source>expected these __future__ imports: {0}; but got none</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="761"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="759"/>
         <source>print statement found</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="764"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="762"/>
         <source>one element tuple found</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="800"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="798"/>
         <source>{0}: {1}</source>
         <translation type="unfinished">{0}: {1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="504"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="502"/>
         <source>&quot;{0}&quot; is a Python builtin and is being shadowed; consider renaming the variable</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="508"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="506"/>
         <source>&quot;{0}&quot; is used as an argument and thus shadows a Python builtin; consider renaming the argument</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="512"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="510"/>
         <source>unnecessary generator - rewrite as a list comprehension</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="515"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="513"/>
         <source>unnecessary generator - rewrite as a set comprehension</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="518"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="516"/>
         <source>unnecessary generator - rewrite as a dict comprehension</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="521"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="519"/>
         <source>unnecessary list comprehension - rewrite as a set comprehension</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="524"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="522"/>
         <source>unnecessary list comprehension - rewrite as a dict comprehension</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="530"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="528"/>
         <source>unnecessary list comprehension - &quot;{0}&quot; can take a generator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="770"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="768"/>
         <source>mutable default argument of type {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="555"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="553"/>
         <source>sort keys - &apos;{0}&apos; should be before &apos;{1}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="738"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="736"/>
         <source>logging statement uses &apos;%&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="744"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="742"/>
         <source>logging statement uses f-string</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="747"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="745"/>
         <source>logging statement uses &apos;warn&apos; instead of &apos;warning&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="735"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="733"/>
         <source>logging statement uses string.format()</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="741"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="739"/>
         <source>logging statement uses &apos;+&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="757"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="755"/>
         <source>gettext import with alias _ found: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="648"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="646"/>
         <source>Python does not support the unary prefix increment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="657"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="655"/>
         <source>&apos;sys.maxint&apos; is not defined in Python 3 - use &apos;sys.maxsize&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="660"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="658"/>
         <source>&apos;BaseException.message&apos; has been deprecated as of Python 2.6 and is removed in Python 3 - use &apos;str(e)&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="664"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="662"/>
         <source>assigning to &apos;os.environ&apos; does not clear the environment - use &apos;os.environ.clear()&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="688"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="686"/>
         <source>Python 3 does not include &apos;.iter*&apos; methods on dictionaries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="691"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="689"/>
         <source>Python 3 does not include &apos;.view*&apos; methods on dictionaries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="694"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="692"/>
         <source>&apos;.next()&apos; does not exist in Python 3</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="697"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="695"/>
         <source>&apos;__metaclass__&apos; does nothing on Python 3 - use &apos;class MyClass(BaseClass, metaclass=...)&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="773"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="771"/>
         <source>mutable default argument of function call &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="651"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="649"/>
         <source>using .strip() with multi-character strings is misleading</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="678"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="676"/>
         <source>using &apos;hasattr(x, &quot;__call__&quot;)&apos; to test if &apos;x&apos; is callable is unreliable</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="668"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="666"/>
         <source>loop control variable {0} not used within the loop body - start the name with an underscore</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="776"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="774"/>
         <source>None should not be added at any return if function has no return value except None</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="780"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="778"/>
         <source>an explicit value at every return should be added if function has a return value except None</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="784"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="782"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="788"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="786"/>
         <source>a value should not be assigned to a variable if it will be used as a return value only</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="654"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="652"/>
         <source>do not call assert False since python -O removes these calls</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="672"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="670"/>
         <source>unncessary f-string</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="675"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="673"/>
         <source>cannot use &apos;self.__class__&apos; as first argument of &apos;super()&apos; call</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="682"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="680"/>
         <source>do not call getattr with a constant attribute value</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="685"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="683"/>
         <source>do not call setattr with a constant attribute value</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="796"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="794"/>
         <source>commented code lines should be removed</source>
         <translation>les lignes de code commentées devraient être supprimées</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="792"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="790"/>
         <source>prefer implied line continuation inside parentheses, brackets and braces as opposed to a backslash</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="559"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="557"/>
         <source>use of &apos;datetime.datetime()&apos; without &apos;tzinfo&apos; argument should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="563"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="561"/>
         <source>use of &apos;datetime.datetime.today()&apos; should be avoided.
 Use &apos;datetime.datetime.now(tz=)&apos; instead.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="567"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="565"/>
         <source>use of &apos;datetime.datetime.utcnow()&apos; should be avoided.
 Use &apos;datetime.datetime.now(tz=)&apos; instead.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="571"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="569"/>
         <source>use of &apos;datetime.datetime.utcfromtimestamp()&apos; should be avoided.
 Use &apos;datetime.datetime.fromtimestamp(, tz=)&apos; instead.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="575"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="573"/>
         <source>use of &apos;datetime.datetime.now()&apos; without &apos;tz&apos; argument should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="579"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="577"/>
         <source>use of &apos;datetime.datetime.fromtimestamp()&apos; without &apos;tz&apos; argument should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="583"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="581"/>
         <source>use of &apos;datetime.datetime.strptime()&apos; should be followed by &apos;.replace(tzinfo=)&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="590"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="588"/>
         <source>use of &apos;datetime.date()&apos; should be avoided.
 Use &apos;datetime.datetime(, tzinfo=).date()&apos; instead.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="594"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="592"/>
         <source>use of &apos;datetime.date.today()&apos; should be avoided.
 Use &apos;datetime.datetime.now(tz=).date()&apos; instead.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="598"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="596"/>
         <source>use of &apos;datetime.date.fromtimestamp()&apos; should be avoided.
 Use &apos;datetime.datetime.fromtimestamp(tz=).date()&apos; instead.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="608"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="606"/>
         <source>use of &apos;datetime.time()&apos; without &apos;tzinfo&apos; argument should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="587"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="585"/>
         <source>use of &apos;datetime.datetime.fromordinal()&apos; should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="602"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="600"/>
         <source>use of &apos;datetime.date.fromordinal()&apos; should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="605"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="603"/>
         <source>use of &apos;datetime.date.fromisoformat()&apos; should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="527"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="525"/>
         <source>unnecessary {0} call - rewrite as a literal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="533"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="531"/>
         <source>unnecessary {0} literal - rewrite as a {1} literal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="536"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="534"/>
         <source>unnecessary {0} passed to tuple() - rewrite as a {1} literal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="539"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="537"/>
         <source>unnecessary {0} passed to list() - rewrite as a {1} literal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="542"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="540"/>
         <source>unnecessary list call - remove the outer call to list()</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="545"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="543"/>
         <source>unnecessary list comprehension - &quot;in&quot; can take a generator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="548"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="546"/>
         <source>unnecessary {0} passed to tuple() - remove the outer call to {1}()</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="551"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="549"/>
         <source>unnecessary {0} passed to list() - remove the outer call to {1}()</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="613"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="611"/>
         <source>&apos;sys.version[:3]&apos; referenced (Python 3.10), use &apos;sys.version_info&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="616"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="614"/>
         <source>&apos;sys.version[2]&apos; referenced (Python 3.10), use &apos;sys.version_info&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="619"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="617"/>
         <source>&apos;sys.version&apos; compared to string (Python 3.10), use &apos;sys.version_info&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="623"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="621"/>
         <source>&apos;sys.version_info[0] == 3&apos; referenced (Python 4), use &apos;&gt;=&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="626"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="624"/>
         <source>&apos;six.PY3&apos; referenced (Python 4), use &apos;not six.PY2&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="629"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="627"/>
         <source>&apos;sys.version_info[1]&apos; compared to integer (Python 4), compare &apos;sys.version_info&apos; to tuple</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="633"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="631"/>
         <source>&apos;sys.version_info.minor&apos; compared to integer (Python 4), compare &apos;sys.version_info&apos; to tuple</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="637"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="635"/>
         <source>&apos;sys.version[0]&apos; referenced (Python 10), use &apos;sys.version_info&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="640"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="638"/>
         <source>&apos;sys.version&apos; compared to string (Python 10), use &apos;sys.version_info&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="644"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="642"/>
         <source>&apos;sys.version[:1]&apos; referenced (Python 10), use &apos;sys.version_info&apos;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -48449,83 +48520,93 @@
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MyMemoryEngine.py" line="72"/>
         <source>Only texts up to {0} characters are allowed.</source>
-        <translation>Uniquement les textes de moins de {0} caractères autorisés.</translation>
+        <translation type="obsolete">Uniquement les textes de moins de {0} caractères autorisés.</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MyMemoryEngine.py" line="95"/>
         <source>Invalid response received</source>
-        <translation>Réponse invalide reçue</translation>
+        <translation type="obsolete">Réponse invalide reçue</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MyMemoryEngine.py" line="72"/>
+        <source>MyMemory: Only texts up to {0} characters are allowed.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MyMemoryEngine.py" line="99"/>
+        <source>MyMemory: Invalid response received</source>
+        <translation type="unfinished"></translation>
     </message>
 </context>
 <context>
     <name>NamingStyleChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="432"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="430"/>
         <source>class names should use CapWords convention</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="435"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="433"/>
         <source>function name should be lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="438"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="436"/>
         <source>argument name should be lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="441"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="439"/>
         <source>first argument of a class method should be named &apos;cls&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="444"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="442"/>
         <source>first argument of a method should be named &apos;self&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="447"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="445"/>
         <source>first argument of a static method should not be named &apos;self&apos; or &apos;cls</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="451"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="449"/>
         <source>module names should be lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="454"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="452"/>
         <source>package names should be lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="457"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="455"/>
         <source>constant imported as non constant</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="460"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="458"/>
         <source>lowercase imported as non lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="463"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="461"/>
         <source>camelcase imported as lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="466"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="464"/>
         <source>camelcase imported as constant</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="469"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="467"/>
         <source>variable in function should be lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="472"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="470"/>
         <source>names &apos;l&apos;, &apos;O&apos; and &apos;I&apos; should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
@@ -55676,11 +55757,16 @@
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/PromtEngine.py" line="97"/>
         <source>Invalid response received</source>
-        <translation>Réponse reçue invalide</translation>
+        <translation type="obsolete">Réponse reçue invalide</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/PromtEngine.py" line="97"/>
+        <source>Promt: Invalid response received</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/PromtEngine.py" line="106"/>
-        <source>This direction of translation is not available.</source>
+        <source>Promt: This direction of translation is not available.</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -57950,7 +58036,7 @@
         <translation type="obsolete">L&apos;éditeur de texte courant ne contient pas de source Python.</translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="694"/>
+        <location filename="../UI/PythonDisViewer.py" line="696"/>
         <source>Code Object &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -57960,22 +58046,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="450"/>
+        <location filename="../UI/PythonDisViewer.py" line="452"/>
         <source>No editor has been opened.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="462"/>
+        <location filename="../UI/PythonDisViewer.py" line="464"/>
         <source>The current editor does not contain any source code.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="468"/>
+        <location filename="../UI/PythonDisViewer.py" line="470"/>
         <source>The current editor does not contain Python source code.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="517"/>
+        <location filename="../UI/PythonDisViewer.py" line="519"/>
         <source>Disassembly of last traceback</source>
         <translation type="unfinished"></translation>
     </message>
@@ -58005,72 +58091,72 @@
         <translation type="unfinished">Cacher</translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="809"/>
+        <location filename="../UI/PythonDisViewer.py" line="811"/>
         <source>Name</source>
         <translation type="unfinished">Nom</translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="811"/>
-        <source>Filename</source>
-        <translation type="unfinished">Nom de fichier</translation>
-    </message>
-    <message>
         <location filename="../UI/PythonDisViewer.py" line="813"/>
-        <source>First Line</source>
-        <translation type="unfinished"></translation>
+        <source>Filename</source>
+        <translation type="unfinished">Nom de fichier</translation>
     </message>
     <message>
         <location filename="../UI/PythonDisViewer.py" line="815"/>
-        <source>Argument Count</source>
+        <source>First Line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/PythonDisViewer.py" line="817"/>
+        <source>Argument Count</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="819"/>
         <source>Positional-only Arguments</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="823"/>
-        <source>Number of Locals</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/PythonDisViewer.py" line="825"/>
-        <source>Stack Size</source>
+        <source>Number of Locals</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/PythonDisViewer.py" line="827"/>
+        <source>Stack Size</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="829"/>
         <source>Flags</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="830"/>
+        <location filename="../UI/PythonDisViewer.py" line="832"/>
         <source>Constants</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="833"/>
+        <location filename="../UI/PythonDisViewer.py" line="835"/>
         <source>Names</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="836"/>
+        <location filename="../UI/PythonDisViewer.py" line="838"/>
         <source>Variable Names</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="839"/>
+        <location filename="../UI/PythonDisViewer.py" line="841"/>
         <source>Free Variables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="842"/>
+        <location filename="../UI/PythonDisViewer.py" line="844"/>
         <source>Cell Variables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="820"/>
+        <location filename="../UI/PythonDisViewer.py" line="822"/>
         <source>Keyword-only Arguments</source>
         <translation type="unfinished"></translation>
     </message>
@@ -81011,382 +81097,382 @@
 <context>
     <name>ViewManager</name>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="635"/>
+        <location filename="../ViewManager/ViewManager.py" line="634"/>
         <source>New</source>
         <translation>Nouveau</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="635"/>
+        <location filename="../ViewManager/ViewManager.py" line="634"/>
         <source>&amp;New</source>
         <translation>&amp;Nouveau</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="643"/>
+        <location filename="../ViewManager/ViewManager.py" line="642"/>
         <source>Open an empty editor window</source>
         <translation>Ouvre une nouvelle page vide</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="646"/>
+        <location filename="../ViewManager/ViewManager.py" line="645"/>
         <source>&lt;b&gt;New&lt;/b&gt;&lt;p&gt;An empty editor window will be created.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nouveau&lt;/b&gt;&lt;p&gt;Ouverture d&apos;une nouvelle fenêtre d&apos;édition.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="654"/>
+        <location filename="../ViewManager/ViewManager.py" line="653"/>
         <source>Open</source>
         <translation>Ouvrir</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="654"/>
+        <location filename="../ViewManager/ViewManager.py" line="653"/>
         <source>&amp;Open...</source>
         <translation>&amp;Ouvrir...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="675"/>
+        <location filename="../ViewManager/ViewManager.py" line="674"/>
         <source>Close</source>
         <translation>Fermer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="675"/>
+        <location filename="../ViewManager/ViewManager.py" line="674"/>
         <source>&amp;Close</source>
         <translation>&amp;Fermer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="683"/>
+        <location filename="../ViewManager/ViewManager.py" line="682"/>
         <source>Close the current window</source>
         <translation>Ferme la fenêtre courante</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="686"/>
+        <location filename="../ViewManager/ViewManager.py" line="685"/>
         <source>&lt;b&gt;Close Window&lt;/b&gt;&lt;p&gt;Close the current window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Fermer&lt;/b&gt;&lt;p&gt;Ferme la fenêtre en cours.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="694"/>
+        <location filename="../ViewManager/ViewManager.py" line="693"/>
         <source>Close All</source>
         <translation>Tout fermer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="694"/>
+        <location filename="../ViewManager/ViewManager.py" line="693"/>
         <source>Clos&amp;e All</source>
         <translation>Tout f&amp;ermer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="698"/>
+        <location filename="../ViewManager/ViewManager.py" line="697"/>
         <source>Close all editor windows</source>
         <translation>Ferme toutes les fenêtres de l&apos;éditeur</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="701"/>
+        <location filename="../ViewManager/ViewManager.py" line="700"/>
         <source>&lt;b&gt;Close All Windows&lt;/b&gt;&lt;p&gt;Close all editor windows.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Tout fermer&lt;/b&gt;&lt;p&gt;Ferme toutes les fenêtres de l&apos;éditeur.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="712"/>
         <source>Save</source>
         <translation>Enregistrer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="712"/>
         <source>&amp;Save</source>
         <translation>&amp;Enregistrer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="720"/>
+        <location filename="../ViewManager/ViewManager.py" line="719"/>
         <source>Save the current file</source>
         <translation>Enregistre le fichier courant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="722"/>
+        <location filename="../ViewManager/ViewManager.py" line="721"/>
         <source>&lt;b&gt;Save File&lt;/b&gt;&lt;p&gt;Save the contents of current editor window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Enregistrer&lt;/b&gt;&lt;p&gt;Enregistre le fichier en cours.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="729"/>
         <source>Save as</source>
         <translation>Enregistrer sous</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="729"/>
         <source>Save &amp;as...</source>
         <translation>&amp;Enregistrer sous...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="737"/>
+        <location filename="../ViewManager/ViewManager.py" line="736"/>
         <source>Save the current file to a new one</source>
         <translation>Enregistre dans un nouveau fichier</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="739"/>
+        <location filename="../ViewManager/ViewManager.py" line="738"/>
         <source>&lt;b&gt;Save File as&lt;/b&gt;&lt;p&gt;Save the contents of current editor window to a new file. The file can be entered in a file selection dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Enregistrer sous&lt;/b&gt;&lt;p&gt;Enregistre le buffer dans un nouveau fichier. Le nom du fichier est choisi via une boite de sélection de fichier.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="764"/>
+        <location filename="../ViewManager/ViewManager.py" line="763"/>
         <source>Save all</source>
         <translation>Tout enregistrer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="769"/>
+        <location filename="../ViewManager/ViewManager.py" line="768"/>
         <source>Save all files</source>
         <translation>Enregistre tous les fichiers</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="771"/>
+        <location filename="../ViewManager/ViewManager.py" line="770"/>
         <source>&lt;b&gt;Save All Files&lt;/b&gt;&lt;p&gt;Save the contents of all editor windows.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Tout enregistrer&lt;/b&gt;&lt;p&gt;Enregistre toutes les fenêtres ouvertes dans l&apos;éditeur.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="781"/>
+        <location filename="../ViewManager/ViewManager.py" line="780"/>
         <source>Print</source>
         <translation>Imprimer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="781"/>
+        <location filename="../ViewManager/ViewManager.py" line="780"/>
         <source>&amp;Print</source>
         <translation>&amp;Imprimer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="788"/>
+        <location filename="../ViewManager/ViewManager.py" line="787"/>
         <source>Print the current file</source>
         <translation>Imprime le fichier courant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="790"/>
+        <location filename="../ViewManager/ViewManager.py" line="789"/>
         <source>&lt;b&gt;Print File&lt;/b&gt;&lt;p&gt;Print the contents of current editor window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Imprimer le fichier&lt;/b&gt;&lt;p&gt;Imprime la fenêtre d&apos;édition courante.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="840"/>
+        <location filename="../ViewManager/ViewManager.py" line="839"/>
         <source>Open &amp;Recent Files</source>
         <translation>Ouvrir un fichier &amp;récent</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="843"/>
+        <location filename="../ViewManager/ViewManager.py" line="842"/>
         <source>Open &amp;Bookmarked Files</source>
         <translation>Ouvrir un fichier &amp;étiqueté</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="938"/>
+        <location filename="../ViewManager/ViewManager.py" line="937"/>
         <source>Undo</source>
         <translation>Défaire</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="938"/>
+        <location filename="../ViewManager/ViewManager.py" line="937"/>
         <source>&amp;Undo</source>
         <translation>&amp;Défaire</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="947"/>
+        <location filename="../ViewManager/ViewManager.py" line="946"/>
         <source>Undo the last change</source>
         <translation>Annule la dernière modification</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="949"/>
+        <location filename="../ViewManager/ViewManager.py" line="948"/>
         <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last change done in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Défaire&lt;/b&gt;&lt;p&gt;Annule la dernière modification effectuée dans l&apos;éditeur courant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="957"/>
+        <location filename="../ViewManager/ViewManager.py" line="956"/>
         <source>Redo</source>
         <translation>Refaire</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="957"/>
+        <location filename="../ViewManager/ViewManager.py" line="956"/>
         <source>&amp;Redo</source>
         <translation>&amp;Refaire</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="965"/>
+        <location filename="../ViewManager/ViewManager.py" line="964"/>
         <source>Redo the last change</source>
         <translation>Recharge la dernière modification</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="967"/>
+        <location filename="../ViewManager/ViewManager.py" line="966"/>
         <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last change done in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Refaire&lt;/b&gt;&lt;p&gt;Réeffectue la dernière modification dans l&apos;éditeur courant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="984"/>
+        <location filename="../ViewManager/ViewManager.py" line="983"/>
         <source>Revert to last saved state</source>
         <translation>Ecraser avec le dernier état enregistré</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="975"/>
+        <location filename="../ViewManager/ViewManager.py" line="974"/>
         <source>Re&amp;vert to last saved state</source>
         <translation>Ec&amp;raser avec le dernier état enregistré</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="985"/>
         <source>&lt;b&gt;Revert to last saved state&lt;/b&gt;&lt;p&gt;Undo all changes up to the last saved state of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ecraser avec le dernier état enregistré&lt;/b&gt;&lt;p&gt;Annule toutes les modifications faites depuis le dernier enregistrement.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <source>Cut</source>
         <translation>Couper</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <source>Cu&amp;t</source>
         <translation>Cou&amp;per</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1006"/>
+        <location filename="../ViewManager/ViewManager.py" line="1005"/>
         <source>Cut the selection</source>
         <translation>Coupe la sélection</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1008"/>
+        <location filename="../ViewManager/ViewManager.py" line="1007"/>
         <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected text of the current editor to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Couper&lt;/b&gt;&lt;p&gt;Coupe  le texte sélectionné vers le presse-papier&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1017"/>
+        <location filename="../ViewManager/ViewManager.py" line="1016"/>
         <source>Copy</source>
         <translation>Copier</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1017"/>
+        <location filename="../ViewManager/ViewManager.py" line="1016"/>
         <source>&amp;Copy</source>
         <translation>&amp;Copier</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1026"/>
+        <location filename="../ViewManager/ViewManager.py" line="1025"/>
         <source>Copy the selection</source>
         <translation>Copie la sélection</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1028"/>
+        <location filename="../ViewManager/ViewManager.py" line="1027"/>
         <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected text of the current editor to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Copier&lt;/b&gt;&lt;p&gt;Copie le texte sélectionné vers le presse-papier&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1037"/>
+        <location filename="../ViewManager/ViewManager.py" line="1036"/>
         <source>Paste</source>
         <translation>Coller</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1037"/>
+        <location filename="../ViewManager/ViewManager.py" line="1036"/>
         <source>&amp;Paste</source>
         <translation>Col&amp;ler</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1046"/>
+        <location filename="../ViewManager/ViewManager.py" line="1045"/>
         <source>Paste the last cut/copied text</source>
         <translation>Colle le dernier texte copié/coupé</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1048"/>
+        <location filename="../ViewManager/ViewManager.py" line="1047"/>
         <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the last cut/copied text from the clipboard to the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Coller&lt;/b&gt;&lt;p&gt;Colle le dernier texte copié/coupé dans l&apos;éditeur courant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1057"/>
+        <location filename="../ViewManager/ViewManager.py" line="1056"/>
         <source>Clear</source>
         <translation>Effacer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1065"/>
+        <location filename="../ViewManager/ViewManager.py" line="1064"/>
         <source>Clear all text</source>
         <translation>Efface tout le texte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1067"/>
+        <location filename="../ViewManager/ViewManager.py" line="1066"/>
         <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Delete all text of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Effacer&lt;/b&gt;&lt;p&gt;Supprime tout le texte de l&apos;éditeur courant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1092"/>
+        <location filename="../ViewManager/ViewManager.py" line="1091"/>
         <source>Indent</source>
         <translation>Indenter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1092"/>
+        <location filename="../ViewManager/ViewManager.py" line="1091"/>
         <source>&amp;Indent</source>
         <translation>&amp;Indenter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1100"/>
+        <location filename="../ViewManager/ViewManager.py" line="1099"/>
         <source>Indent line</source>
         <translation>Indente la ligne</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1102"/>
+        <location filename="../ViewManager/ViewManager.py" line="1101"/>
         <source>&lt;b&gt;Indent&lt;/b&gt;&lt;p&gt;Indents the current line or the lines of the selection by one level.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Indenter&lt;/b&gt;&lt;p&gt;Indente la ligne courante ou les lignes sélectionnées d&apos;un niveau.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1111"/>
+        <location filename="../ViewManager/ViewManager.py" line="1110"/>
         <source>Unindent</source>
         <translation>Désindenter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1111"/>
+        <location filename="../ViewManager/ViewManager.py" line="1110"/>
         <source>U&amp;nindent</source>
         <translation>&amp;Désindenter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1119"/>
+        <location filename="../ViewManager/ViewManager.py" line="1118"/>
         <source>Unindent line</source>
         <translation>Désindenter la ligne</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1121"/>
+        <location filename="../ViewManager/ViewManager.py" line="1120"/>
         <source>&lt;b&gt;Unindent&lt;/b&gt;&lt;p&gt;Unindents the current line or the lines of the selection by one level.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Désindenter&lt;/b&gt;&lt;p&gt;Désindente la ligne courante ou les lignes sélectionnées d&apos;un niveau.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1147"/>
+        <location filename="../ViewManager/ViewManager.py" line="1146"/>
         <source>Comment</source>
         <translation>Commenter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1147"/>
+        <location filename="../ViewManager/ViewManager.py" line="1146"/>
         <source>C&amp;omment</source>
         <translation>C&amp;ommenter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1155"/>
+        <location filename="../ViewManager/ViewManager.py" line="1154"/>
         <source>Comment Line or Selection</source>
         <translation>Commenter la ligne ou la sélection</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1157"/>
+        <location filename="../ViewManager/ViewManager.py" line="1156"/>
         <source>&lt;b&gt;Comment&lt;/b&gt;&lt;p&gt;Comments the current line or the lines of the current selection.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Commenter&lt;/b&gt;&lt;p&gt;Commente la ligne courante ou les lignes sélectionnées.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1166"/>
+        <location filename="../ViewManager/ViewManager.py" line="1165"/>
         <source>Uncomment</source>
         <translation>Décommenter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1166"/>
+        <location filename="../ViewManager/ViewManager.py" line="1165"/>
         <source>Unco&amp;mment</source>
         <translation>Déco&amp;mmenter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1174"/>
+        <location filename="../ViewManager/ViewManager.py" line="1173"/>
         <source>Uncomment Line or Selection</source>
         <translation>Décommenter la ligne ou la sélection</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1176"/>
+        <location filename="../ViewManager/ViewManager.py" line="1175"/>
         <source>&lt;b&gt;Uncomment&lt;/b&gt;&lt;p&gt;Uncomments the current line or the lines of the current selection.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Décommenter&lt;/b&gt;&lt;p&gt;Décommente la ligne courante ou les lignes sélectionnées.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1207"/>
+        <location filename="../ViewManager/ViewManager.py" line="1206"/>
         <source>Stream Comment</source>
         <translation>Commentaire type &quot;Strream&quot;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1212"/>
+        <location filename="../ViewManager/ViewManager.py" line="1211"/>
         <source>Stream Comment Line or Selection</source>
         <translation>Commenter la ligne ou la sélection (type Stream)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1215"/>
+        <location filename="../ViewManager/ViewManager.py" line="1214"/>
         <source>&lt;b&gt;Stream Comment&lt;/b&gt;&lt;p&gt;Stream comments the current line or the current selection.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Commentaire type Stream&lt;/b&gt;&lt;p&gt;Commente la ligne courante ou les lignes sélectionnées 
 avec un commentaire de type Stream. 
@@ -81396,17 +81482,17 @@
 &lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1224"/>
+        <location filename="../ViewManager/ViewManager.py" line="1223"/>
         <source>Box Comment</source>
         <translation>Commentaire type &quot;Bloc&quot;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1229"/>
+        <location filename="../ViewManager/ViewManager.py" line="1228"/>
         <source>Box Comment Line or Selection</source>
         <translation>Commenter la ligne ou la sélection (type Box)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1231"/>
+        <location filename="../ViewManager/ViewManager.py" line="1230"/>
         <source>&lt;b&gt;Box Comment&lt;/b&gt;&lt;p&gt;Box comments the current line or the lines of the current selection.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Commentaire type Box&lt;/b&gt;&lt;p&gt;Commente la ligne courante ou les lignes sélectionnées 
 avec un commentaire de type Box. 
@@ -81417,2767 +81503,2767 @@
  */&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1240"/>
+        <location filename="../ViewManager/ViewManager.py" line="1239"/>
         <source>Select to brace</source>
         <translation>Sélection parenthèses</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1240"/>
+        <location filename="../ViewManager/ViewManager.py" line="1239"/>
         <source>Select to &amp;brace</source>
         <translation>Sélection parent&amp;hèses</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1247"/>
+        <location filename="../ViewManager/ViewManager.py" line="1246"/>
         <source>Select text to the matching brace</source>
         <translation>Sélectionne le texte jusqu&apos;à la parenthèse correspondante</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1258"/>
+        <location filename="../ViewManager/ViewManager.py" line="1257"/>
         <source>Select all</source>
         <translation>Tout sélectionner</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1258"/>
+        <location filename="../ViewManager/ViewManager.py" line="1257"/>
         <source>&amp;Select all</source>
         <translation>Tout &amp;sélectionner</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1266"/>
+        <location filename="../ViewManager/ViewManager.py" line="1265"/>
         <source>Select all text</source>
         <translation>Sélectionne tout le texte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1275"/>
         <source>Deselect all</source>
         <translation>Tout déselectionner</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1275"/>
         <source>&amp;Deselect all</source>
         <translation>Tout &amp;déselectionner</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1283"/>
+        <location filename="../ViewManager/ViewManager.py" line="1282"/>
         <source>Deselect all text</source>
         <translation>Désélectionne tout le texte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1300"/>
+        <location filename="../ViewManager/ViewManager.py" line="1299"/>
         <source>Convert Line End Characters</source>
         <translation>Conversion des caractères de fin de lignes</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1293"/>
+        <location filename="../ViewManager/ViewManager.py" line="1292"/>
         <source>Convert &amp;Line End Characters</source>
         <translation>Conversion des caractères de fin de &amp;lignes</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1302"/>
+        <location filename="../ViewManager/ViewManager.py" line="1301"/>
         <source>&lt;b&gt;Convert Line End Characters&lt;/b&gt;&lt;p&gt;Convert the line end characters to the currently set type.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Conversion des caractères de fin de lignes&lt;/b&gt;&lt;p&gt;Convertit les caractères de fin de lignes dans le type courant défini.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1316"/>
+        <location filename="../ViewManager/ViewManager.py" line="1315"/>
         <source>Shorten empty lines</source>
         <translation>Raccourcir les lignes vides</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1318"/>
+        <location filename="../ViewManager/ViewManager.py" line="1317"/>
         <source>&lt;b&gt;Shorten empty lines&lt;/b&gt;&lt;p&gt;Shorten lines consisting solely of whitespace characters.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Raccourcir les lignes vides&lt;/b&gt;&lt;p&gt;Raccourcit les lignes vides ne comportant que des espaces.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1327"/>
+        <location filename="../ViewManager/ViewManager.py" line="1326"/>
         <source>&amp;Complete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2778"/>
+        <location filename="../ViewManager/ViewManager.py" line="2776"/>
         <source>Complete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1334"/>
+        <location filename="../ViewManager/ViewManager.py" line="1333"/>
         <source>Complete current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1336"/>
+        <location filename="../ViewManager/ViewManager.py" line="1335"/>
         <source>&lt;b&gt;Complete&lt;/b&gt;&lt;p&gt;Performs a completion of the word containing the cursor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1481"/>
+        <location filename="../ViewManager/ViewManager.py" line="1480"/>
         <source>Move left one character</source>
         <translation>Déplacement d&apos;un caractère vers la gauche</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1481"/>
+        <location filename="../ViewManager/ViewManager.py" line="1480"/>
         <source>Left</source>
         <translation>Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1495"/>
+        <location filename="../ViewManager/ViewManager.py" line="1494"/>
         <source>Move right one character</source>
         <translation>Déplacement d&apos;un caractère vers la droite</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1495"/>
+        <location filename="../ViewManager/ViewManager.py" line="1494"/>
         <source>Right</source>
         <translation>Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1509"/>
+        <location filename="../ViewManager/ViewManager.py" line="1508"/>
         <source>Move up one line</source>
         <translation>Déplacement d&apos;une ligne vers le haut</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1509"/>
+        <location filename="../ViewManager/ViewManager.py" line="1508"/>
         <source>Up</source>
         <translation>Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1521"/>
+        <location filename="../ViewManager/ViewManager.py" line="1520"/>
         <source>Move down one line</source>
         <translation>Déplacement d&apos;une ligne vers le bas</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1521"/>
+        <location filename="../ViewManager/ViewManager.py" line="1520"/>
         <source>Down</source>
         <translation>Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1533"/>
+        <location filename="../ViewManager/ViewManager.py" line="1532"/>
         <source>Move left one word part</source>
         <translation>Déplacement d&apos;une part de mot vers la gauche</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1567"/>
+        <location filename="../ViewManager/ViewManager.py" line="1566"/>
         <source>Alt+Left</source>
         <translation>Alt+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1547"/>
+        <location filename="../ViewManager/ViewManager.py" line="1546"/>
         <source>Move right one word part</source>
         <translation>Déplacement d&apos;une part de mot vers la droite</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2448"/>
+        <location filename="../ViewManager/ViewManager.py" line="2446"/>
         <source>Alt+Right</source>
         <translation>Alt+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1561"/>
+        <location filename="../ViewManager/ViewManager.py" line="1560"/>
         <source>Move left one word</source>
         <translation>Déplacement d&apos;un mot vers la gauche</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1612"/>
+        <location filename="../ViewManager/ViewManager.py" line="1611"/>
         <source>Ctrl+Left</source>
         <translation>Ctrl+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1576"/>
+        <location filename="../ViewManager/ViewManager.py" line="1575"/>
         <source>Move right one word</source>
         <translation>Déplacement d&apos;un mot vers la droite</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2202"/>
+        <location filename="../ViewManager/ViewManager.py" line="2200"/>
         <source>Ctrl+Right</source>
         <translation>Ctrl+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2403"/>
+        <location filename="../ViewManager/ViewManager.py" line="2401"/>
         <source>Home</source>
         <translation>Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1615"/>
+        <location filename="../ViewManager/ViewManager.py" line="1614"/>
         <source>Alt+Home</source>
         <translation>Alt+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2418"/>
+        <location filename="../ViewManager/ViewManager.py" line="2416"/>
         <source>End</source>
         <translation>End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1638"/>
+        <location filename="../ViewManager/ViewManager.py" line="1637"/>
         <source>Scroll view down one line</source>
         <translation>Descend la vue d&apos;une ligne</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1728"/>
+        <location filename="../ViewManager/ViewManager.py" line="1727"/>
         <source>Ctrl+Down</source>
         <translation>Ctrl+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1650"/>
+        <location filename="../ViewManager/ViewManager.py" line="1649"/>
         <source>Scroll view up one line</source>
         <translation>Monte la vue d&apos;une ligne</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1711"/>
+        <location filename="../ViewManager/ViewManager.py" line="1710"/>
         <source>Ctrl+Up</source>
         <translation>Ctrl+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1661"/>
+        <location filename="../ViewManager/ViewManager.py" line="1660"/>
         <source>Move up one paragraph</source>
         <translation>Déplacement d&apos;un paragraphe vers le haut</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1661"/>
+        <location filename="../ViewManager/ViewManager.py" line="1660"/>
         <source>Alt+Up</source>
         <translation>Alt+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1670"/>
+        <location filename="../ViewManager/ViewManager.py" line="1669"/>
         <source>Move down one paragraph</source>
         <translation>Déplacement d&apos;un paragraphe vers le bas</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1670"/>
+        <location filename="../ViewManager/ViewManager.py" line="1669"/>
         <source>Alt+Down</source>
         <translation>Alt+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1682"/>
+        <location filename="../ViewManager/ViewManager.py" line="1681"/>
         <source>Move up one page</source>
         <translation>Déplacement d&apos;une page vers le haut</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1682"/>
+        <location filename="../ViewManager/ViewManager.py" line="1681"/>
         <source>PgUp</source>
         <translation>PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1691"/>
+        <location filename="../ViewManager/ViewManager.py" line="1690"/>
         <source>Move down one page</source>
         <translation>Déplacement d&apos;une page vers le bas</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1691"/>
+        <location filename="../ViewManager/ViewManager.py" line="1690"/>
         <source>PgDown</source>
         <translation>PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1714"/>
+        <location filename="../ViewManager/ViewManager.py" line="1713"/>
         <source>Ctrl+Home</source>
         <translation>Ctrl+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1731"/>
+        <location filename="../ViewManager/ViewManager.py" line="1730"/>
         <source>Ctrl+End</source>
         <translation>Ctrl+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1737"/>
+        <location filename="../ViewManager/ViewManager.py" line="1736"/>
         <source>Indent one level</source>
         <translation>Indentation d&apos;un niveau</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1737"/>
+        <location filename="../ViewManager/ViewManager.py" line="1736"/>
         <source>Tab</source>
         <translation>Tab</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1746"/>
+        <location filename="../ViewManager/ViewManager.py" line="1745"/>
         <source>Unindent one level</source>
         <translation>Désindentation d&apos;un niveau</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1746"/>
+        <location filename="../ViewManager/ViewManager.py" line="1745"/>
         <source>Shift+Tab</source>
         <translation>Shift+Tab</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1756"/>
+        <location filename="../ViewManager/ViewManager.py" line="1755"/>
         <source>Extend selection left one character</source>
         <translation>Extension de la sélection d&apos;un caractère vers la gauche</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1756"/>
+        <location filename="../ViewManager/ViewManager.py" line="1755"/>
         <source>Shift+Left</source>
         <translation>Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1771"/>
+        <location filename="../ViewManager/ViewManager.py" line="1770"/>
         <source>Extend selection right one character</source>
         <translation>Extension de la sélection d&apos;un caractère vers la droite</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1771"/>
+        <location filename="../ViewManager/ViewManager.py" line="1770"/>
         <source>Shift+Right</source>
         <translation>Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1786"/>
+        <location filename="../ViewManager/ViewManager.py" line="1785"/>
         <source>Extend selection up one line</source>
         <translation>Extension de la sélection d&apos;une ligne vers le haut</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1786"/>
+        <location filename="../ViewManager/ViewManager.py" line="1785"/>
         <source>Shift+Up</source>
         <translation>Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1801"/>
+        <location filename="../ViewManager/ViewManager.py" line="1800"/>
         <source>Extend selection down one line</source>
         <translation>Extension de la sélection d&apos;une ligne vers le bas</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1801"/>
+        <location filename="../ViewManager/ViewManager.py" line="1800"/>
         <source>Shift+Down</source>
         <translation>Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1816"/>
+        <location filename="../ViewManager/ViewManager.py" line="1815"/>
         <source>Extend selection left one word part</source>
         <translation>Extension de la sélection d&apos;une part de mot vers la gauche</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1852"/>
+        <location filename="../ViewManager/ViewManager.py" line="1851"/>
         <source>Alt+Shift+Left</source>
         <translation>Alt+Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1830"/>
+        <location filename="../ViewManager/ViewManager.py" line="1829"/>
         <source>Extend selection right one word part</source>
         <translation>Extension de la sélection d&apos;une part de mot vers la droite</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2463"/>
+        <location filename="../ViewManager/ViewManager.py" line="2461"/>
         <source>Alt+Shift+Right</source>
         <translation>Alt+Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1844"/>
+        <location filename="../ViewManager/ViewManager.py" line="1843"/>
         <source>Extend selection left one word</source>
         <translation>Extension de la sélection d&apos;un mot vers la gauche</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2557"/>
+        <location filename="../ViewManager/ViewManager.py" line="2555"/>
         <source>Ctrl+Shift+Left</source>
         <translation>Ctrl+Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1861"/>
+        <location filename="../ViewManager/ViewManager.py" line="1860"/>
         <source>Extend selection right one word</source>
         <translation>Extension de la sélection d&apos;un mot vers la droite</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2219"/>
+        <location filename="../ViewManager/ViewManager.py" line="2217"/>
         <source>Ctrl+Shift+Right</source>
         <translation>Ctrl+Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1890"/>
+        <location filename="../ViewManager/ViewManager.py" line="1889"/>
         <source>Shift+Home</source>
         <translation>Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2323"/>
+        <location filename="../ViewManager/ViewManager.py" line="2321"/>
         <source>Alt+Shift+Home</source>
         <translation>Alt+Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1907"/>
+        <location filename="../ViewManager/ViewManager.py" line="1906"/>
         <source>Shift+End</source>
         <translation>Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1913"/>
+        <location filename="../ViewManager/ViewManager.py" line="1912"/>
         <source>Extend selection up one paragraph</source>
         <translation>Extension de la sélection d&apos;un paragraphe vers le haut</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1913"/>
+        <location filename="../ViewManager/ViewManager.py" line="1912"/>
         <source>Alt+Shift+Up</source>
         <translation>Alt+Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1926"/>
+        <location filename="../ViewManager/ViewManager.py" line="1925"/>
         <source>Extend selection down one paragraph</source>
         <translation>Extension de la sélection d&apos;un paragraphe vers le bas</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1926"/>
+        <location filename="../ViewManager/ViewManager.py" line="1925"/>
         <source>Alt+Shift+Down</source>
         <translation>Alt+Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1939"/>
+        <location filename="../ViewManager/ViewManager.py" line="1938"/>
         <source>Extend selection up one page</source>
         <translation>Extension de la sélection d&apos;une page vers le haut</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1939"/>
+        <location filename="../ViewManager/ViewManager.py" line="1938"/>
         <source>Shift+PgUp</source>
         <translation>Shift+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1951"/>
+        <location filename="../ViewManager/ViewManager.py" line="1950"/>
         <source>Extend selection down one page</source>
         <translation>Extension de la sélection d&apos;une page vers le bas</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1951"/>
+        <location filename="../ViewManager/ViewManager.py" line="1950"/>
         <source>Shift+PgDown</source>
         <translation>Shift+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1978"/>
+        <location filename="../ViewManager/ViewManager.py" line="1977"/>
         <source>Ctrl+Shift+Home</source>
         <translation>Ctrl+Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1995"/>
+        <location filename="../ViewManager/ViewManager.py" line="1994"/>
         <source>Ctrl+Shift+End</source>
         <translation>Ctrl+Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2001"/>
+        <location filename="../ViewManager/ViewManager.py" line="2000"/>
         <source>Delete previous character</source>
         <translation>Suppression du caractère précédent</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2001"/>
+        <location filename="../ViewManager/ViewManager.py" line="2000"/>
         <source>Backspace</source>
         <translation>Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2032"/>
+        <location filename="../ViewManager/ViewManager.py" line="2031"/>
         <source>Delete current character</source>
         <translation>Suppression du caractère courant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2032"/>
+        <location filename="../ViewManager/ViewManager.py" line="2031"/>
         <source>Del</source>
         <translation>Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2046"/>
+        <location filename="../ViewManager/ViewManager.py" line="2045"/>
         <source>Delete word to left</source>
         <translation>Suppression du mot de gauche</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2046"/>
+        <location filename="../ViewManager/ViewManager.py" line="2045"/>
         <source>Ctrl+Backspace</source>
         <translation>Ctrl+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2057"/>
+        <location filename="../ViewManager/ViewManager.py" line="2056"/>
         <source>Delete word to right</source>
         <translation>Suppression du mot de droite</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2057"/>
+        <location filename="../ViewManager/ViewManager.py" line="2056"/>
         <source>Ctrl+Del</source>
         <translation>Ctrl+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2067"/>
+        <location filename="../ViewManager/ViewManager.py" line="2066"/>
         <source>Delete line to left</source>
         <translation>Suppression de la partie gauche de la ligne</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2067"/>
+        <location filename="../ViewManager/ViewManager.py" line="2066"/>
         <source>Ctrl+Shift+Backspace</source>
         <translation>Ctrl+Shift+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2078"/>
+        <location filename="../ViewManager/ViewManager.py" line="2077"/>
         <source>Delete line to right</source>
         <translation>Suppression de la partie droite de la ligne</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2087"/>
+        <location filename="../ViewManager/ViewManager.py" line="2086"/>
         <source>Ctrl+Shift+Del</source>
         <translation>Ctrl+Shift+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2093"/>
+        <location filename="../ViewManager/ViewManager.py" line="2092"/>
         <source>Insert new line</source>
         <translation>Insertion d&apos;une nouvelle ligne</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2093"/>
+        <location filename="../ViewManager/ViewManager.py" line="2092"/>
         <source>Return</source>
         <translation>Return</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2116"/>
+        <location filename="../ViewManager/ViewManager.py" line="2115"/>
         <source>Delete current line</source>
         <translation>Suppression de la ligne courante</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2116"/>
+        <location filename="../ViewManager/ViewManager.py" line="2115"/>
         <source>Ctrl+Shift+L</source>
         <translation>Ctrl+Shift+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2127"/>
+        <location filename="../ViewManager/ViewManager.py" line="2126"/>
         <source>Duplicate current line</source>
         <translation>Duplication de la ligne courante</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2127"/>
+        <location filename="../ViewManager/ViewManager.py" line="2126"/>
         <source>Ctrl+D</source>
         <translation>Ctrl+D</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2138"/>
+        <location filename="../ViewManager/ViewManager.py" line="2137"/>
         <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="2138"/>
+        <location filename="../ViewManager/ViewManager.py" line="2137"/>
         <source>Ctrl+T</source>
         <translation>Ctrl+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2162"/>
+        <location filename="../ViewManager/ViewManager.py" line="2160"/>
         <source>Cut current line</source>
         <translation>Couper la ligne courante</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2162"/>
+        <location filename="../ViewManager/ViewManager.py" line="2160"/>
         <source>Alt+Shift+L</source>
         <translation>Alt+Shift+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2172"/>
+        <location filename="../ViewManager/ViewManager.py" line="2170"/>
         <source>Copy current line</source>
         <translation>Copier la ligne courante</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2172"/>
+        <location filename="../ViewManager/ViewManager.py" line="2170"/>
         <source>Ctrl+Shift+T</source>
         <translation>Ctrl+Shift+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2183"/>
+        <location filename="../ViewManager/ViewManager.py" line="2181"/>
         <source>Toggle insert/overtype</source>
         <translation>Basculer de mode Insertion /Ecrasement</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2183"/>
+        <location filename="../ViewManager/ViewManager.py" line="2181"/>
         <source>Ins</source>
         <translation>Ins</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2747"/>
+        <location filename="../ViewManager/ViewManager.py" line="2745"/>
         <source>Convert selection to lower case</source>
         <translation>Conversion de la sélection en minuscules</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2747"/>
+        <location filename="../ViewManager/ViewManager.py" line="2745"/>
         <source>Alt+Shift+U</source>
         <translation>Alt+Shift+U</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2759"/>
+        <location filename="../ViewManager/ViewManager.py" line="2757"/>
         <source>Convert selection to upper case</source>
         <translation>Conversion de la sélection en majuscules</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2759"/>
+        <location filename="../ViewManager/ViewManager.py" line="2757"/>
         <source>Ctrl+Shift+U</source>
         <translation>Ctrl+Shift+U</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2205"/>
+        <location filename="../ViewManager/ViewManager.py" line="2203"/>
         <source>Alt+End</source>
         <translation>Alt+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2225"/>
+        <location filename="../ViewManager/ViewManager.py" line="2223"/>
         <source>Formfeed</source>
         <translation>Chargement de page</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2234"/>
+        <location filename="../ViewManager/ViewManager.py" line="2232"/>
         <source>Escape</source>
         <translation>Echappement</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2234"/>
+        <location filename="../ViewManager/ViewManager.py" line="2232"/>
         <source>Esc</source>
         <translation>Esc</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2243"/>
+        <location filename="../ViewManager/ViewManager.py" line="2241"/>
         <source>Extend rectangular selection down one line</source>
         <translation>Extension de la sélection rectangulaire d&apos;une ligne vers le bas</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2243"/>
+        <location filename="../ViewManager/ViewManager.py" line="2241"/>
         <source>Alt+Ctrl+Down</source>
         <translation>Alt+Ctrl+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2259"/>
+        <location filename="../ViewManager/ViewManager.py" line="2257"/>
         <source>Extend rectangular selection up one line</source>
         <translation>Extension de la sélection rectangulaire d&apos;une ligne vers le haut</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2259"/>
+        <location filename="../ViewManager/ViewManager.py" line="2257"/>
         <source>Alt+Ctrl+Up</source>
         <translation>Alt+Ctrl+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2274"/>
+        <location filename="../ViewManager/ViewManager.py" line="2272"/>
         <source>Extend rectangular selection left one character</source>
         <translation>Extension de la sélection rectangulaire d&apos;un caractère vers la gauche</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2274"/>
+        <location filename="../ViewManager/ViewManager.py" line="2272"/>
         <source>Alt+Ctrl+Left</source>
         <translation>Alt+Ctrl+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2292"/>
+        <location filename="../ViewManager/ViewManager.py" line="2290"/>
         <source>Extend rectangular selection right one character</source>
         <translation>Extension de la sélection rectangulaire d&apos;un caractère vers la droite</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2292"/>
+        <location filename="../ViewManager/ViewManager.py" line="2290"/>
         <source>Alt+Ctrl+Right</source>
         <translation>Alt+Ctrl+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2348"/>
+        <location filename="../ViewManager/ViewManager.py" line="2346"/>
         <source>Extend rectangular selection up one page</source>
         <translation>Extension de la sélection rectangulaire d&apos;une page vers le haut</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2363"/>
+        <location filename="../ViewManager/ViewManager.py" line="2361"/>
         <source>Extend rectangular selection down one page</source>
         <translation>Extension de la sélection rectangulaire d&apos;une page vers le bas</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3449"/>
+        <location filename="../ViewManager/ViewManager.py" line="3447"/>
         <source>Search</source>
         <translation>Rechercher</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2877"/>
+        <location filename="../ViewManager/ViewManager.py" line="2875"/>
         <source>&amp;Search...</source>
         <translation>Re&amp;chercher...</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="2883"/>
+        <source>Search for a text</source>
+        <translation>Recherche de texte</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="2885"/>
-        <source>Search for a text</source>
-        <translation>Recherche de texte</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2887"/>
         <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&apos;é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="3003"/>
+        <location filename="../ViewManager/ViewManager.py" line="3001"/>
         <source>Replace</source>
         <translation>Remplacer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3003"/>
+        <location filename="../ViewManager/ViewManager.py" line="3001"/>
         <source>&amp;Replace...</source>
         <translation>&amp;Remplacer...</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3008"/>
+        <source>Replace some text</source>
+        <translation>Remplacer un texte</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3010"/>
-        <source>Replace some text</source>
-        <translation>Remplacer un texte</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3012"/>
         <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&apos;é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="3160"/>
+        <source>Goto Line</source>
+        <translation>Aller à la ligne</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3152"/>
+        <source>&amp;Goto Line...</source>
+        <translation>Aller à la &amp;ligne...</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3162"/>
-        <source>Goto Line</source>
-        <translation>Aller à la ligne</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3154"/>
-        <source>&amp;Goto Line...</source>
-        <translation>Aller à la &amp;ligne...</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3164"/>
         <source>&lt;b&gt;Goto Line&lt;/b&gt;&lt;p&gt;Go to a specific line of text in the current editor. A dialog is shown to enter the linenumber.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Aller à la ligne&lt;/b&gt;&lt;p&gt;Déplacement vers la ligne indiquée. Un fenêtre permet de saisir le numéro de ligne.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3179"/>
+        <source>Goto Brace</source>
+        <translation>Aller à la parenthèse</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3171"/>
+        <source>Goto &amp;Brace</source>
+        <translation>Aller à la &amp;parenthèse</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3181"/>
-        <source>Goto Brace</source>
-        <translation>Aller à la parenthèse</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3173"/>
-        <source>Goto &amp;Brace</source>
-        <translation>Aller à la &amp;parenthèse</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3183"/>
         <source>&lt;b&gt;Goto Brace&lt;/b&gt;&lt;p&gt;Go to the matching brace in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Aller à la parenthèse correspondante&lt;/b&gt;&lt;p&gt;A partir d&apos;une parenthèse ouvrante ou fermante, déplace le curseur jusqu&apos;à l&apos;autre parenthèse.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3261"/>
+        <location filename="../ViewManager/ViewManager.py" line="3259"/>
         <source>Search in Files</source>
         <translation>Rechercher dans les fichiers</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3261"/>
+        <location filename="../ViewManager/ViewManager.py" line="3259"/>
         <source>Search in &amp;Files...</source>
         <translation>Rechercher dans les &amp;Fichiers...</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3267"/>
+        <source>Search for a text in files</source>
+        <translation>Rechercher un texte dans les fichiers</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3269"/>
-        <source>Search for a text in files</source>
-        <translation>Rechercher un texte dans les fichiers</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3271"/>
         <source>&lt;b&gt;Search in Files&lt;/b&gt;&lt;p&gt;Search for some text in the files of a directory tree or the project. A dialog is shown to enter the searchtext and options for the search and to display the result.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rechercher un texte dans les fichiers&lt;/b&gt;&lt;p&gt;Recherche un texte dans les fichiers d&apos;un répertoire ou du projet. Une fenêtre permet de saisir les options de recherche et d&apos;afficher les résultats.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3487"/>
         <source>Zoom in</source>
         <translation>Zoom avant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3487"/>
         <source>Zoom &amp;in</source>
         <translation>Zoom a&amp;vant</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3496"/>
+        <source>Zoom in on the text</source>
+        <translation>Zoom sur le texte</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3498"/>
-        <source>Zoom in on the text</source>
-        <translation>Zoom sur le texte</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3500"/>
         <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="3508"/>
+        <location filename="../ViewManager/ViewManager.py" line="3506"/>
         <source>Zoom out</source>
         <translation>Zoom arrière</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3508"/>
+        <location filename="../ViewManager/ViewManager.py" line="3506"/>
         <source>Zoom &amp;out</source>
         <translation>Zoom a&amp;rrière</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3515"/>
+        <source>Zoom out on the text</source>
+        <translation>Zoom arrière du texte</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3517"/>
-        <source>Zoom out on the text</source>
-        <translation>Zoom arrière du texte</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3519"/>
         <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="3546"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>Zoom</source>
         <translation>Zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3546"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>&amp;Zoom</source>
         <translation>&amp;Zoom</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3552"/>
+        <source>Zoom the text</source>
+        <translation>Zoom du texte</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3554"/>
-        <source>Zoom the text</source>
-        <translation>Zoom du texte</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3556"/>
         <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>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3567"/>
+        <source>Toggle all folds</source>
+        <translation>Contracte/Déploie tout le code</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3563"/>
+        <source>&amp;Toggle all folds</source>
+        <translation type="unfinished">Contracte/Déploie &amp;tout le code</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3569"/>
-        <source>Toggle all folds</source>
-        <translation>Contracte/Déploie tout le code</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3565"/>
-        <source>&amp;Toggle all folds</source>
-        <translation type="unfinished">Contracte/Déploie &amp;tout le code</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3571"/>
         <source>&lt;b&gt;Toggle all folds&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Contracte/Déploie tout le code&lt;/b&gt;&lt;p&gt;Contracte ou déploie tout le code de la page en cours.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3599"/>
+        <source>Toggle current fold</source>
+        <translation>Contracte/Déploie le paragraphe courant</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3595"/>
+        <source>Toggle &amp;current fold</source>
+        <translation>Contracte/Déploie le paragraphe &amp;courant</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3601"/>
-        <source>Toggle current fold</source>
-        <translation>Contracte/Déploie le paragraphe courant</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3597"/>
-        <source>Toggle &amp;current fold</source>
-        <translation>Contracte/Déploie le paragraphe &amp;courant</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3603"/>
         <source>&lt;b&gt;Toggle current fold&lt;/b&gt;&lt;p&gt;Toggle the folds of the current line of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Contracte/Déploie le paragraphe courant&lt;/b&gt;&lt;p&gt;Applique la contraction de code au paragraphe courant.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3631"/>
+        <source>Remove all highlights</source>
+        <translation>Suppression de tous les surlignages</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3633"/>
-        <source>Remove all highlights</source>
-        <translation>Suppression de tous les surlignages</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3635"/>
         <source>&lt;b&gt;Remove all highlights&lt;/b&gt;&lt;p&gt;Remove the highlights of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Suppression de tous les surlignages&lt;/b&gt;&lt;p&gt;Supprime tous les surlignage présents dans la page.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3681"/>
+        <location filename="../ViewManager/ViewManager.py" line="3679"/>
         <source>Split view</source>
         <translation>Diviser la fenêtre</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3681"/>
+        <location filename="../ViewManager/ViewManager.py" line="3679"/>
         <source>&amp;Split view</source>
         <translation>&amp;Diviser la fenêtre</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3684"/>
+        <source>Add a split to the view</source>
+        <translation>Ajoute une division de fenêtre</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3686"/>
-        <source>Add a split to the view</source>
-        <translation>Ajoute une division de fenêtre</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3688"/>
         <source>&lt;b&gt;Split view&lt;/b&gt;&lt;p&gt;Add a split to the view.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Diviser la fenêtre&lt;/b&gt;&lt;p&gt;Ajoute un division supplémentaire à la fenêtre courante.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3696"/>
+        <location filename="../ViewManager/ViewManager.py" line="3694"/>
         <source>Arrange horizontally</source>
         <translation>Division horizontale/verticale</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3696"/>
+        <location filename="../ViewManager/ViewManager.py" line="3694"/>
         <source>Arrange &amp;horizontally</source>
         <translation>Division &amp;horizontale/verticale</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3698"/>
+        <source>Arrange the splitted views horizontally</source>
+        <translation>Bascule la division horizontalement ou verticalement</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3700"/>
-        <source>Arrange the splitted views horizontally</source>
-        <translation>Bascule la division horizontalement ou verticalement</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3702"/>
         <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Division horizontale/verticale&lt;/b&gt;&lt;p&gt;Bascule la division horizontalement ou verticalement, selon.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3711"/>
+        <location filename="../ViewManager/ViewManager.py" line="3709"/>
         <source>Remove split</source>
         <translation>Suppression du découpage</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3711"/>
+        <location filename="../ViewManager/ViewManager.py" line="3709"/>
         <source>&amp;Remove split</source>
         <translation>&amp;Suppression du découpage</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3714"/>
+        <source>Remove the current split</source>
+        <translation>Supprime le découpage de fenêtre courant</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3716"/>
-        <source>Remove the current split</source>
-        <translation>Supprime le découpage de fenêtre courant</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3718"/>
         <source>&lt;b&gt;Remove split&lt;/b&gt;&lt;p&gt;Remove the current split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Suppression du découpage&lt;/b&gt;&lt;p&gt;Supprime le découpage de fenêtre courant.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3906"/>
+        <source>Start Macro Recording</source>
+        <translation>Démarrer l&apos;enregistrement de la macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3900"/>
+        <source>S&amp;tart Macro Recording</source>
+        <translation>&amp;Démarrer l&apos;enregistrement de la macro</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3908"/>
-        <source>Start Macro Recording</source>
-        <translation>Démarrer l&apos;enregistrement de la macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3902"/>
-        <source>S&amp;tart Macro Recording</source>
-        <translation>&amp;Démarrer l&apos;enregistrement de la macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3910"/>
         <source>&lt;b&gt;Start Macro Recording&lt;/b&gt;&lt;p&gt;Start recording editor commands into a new macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Démarrer l&apos;enregistrement de la macro&lt;/b&gt;&lt;p&gt;Démarre l&apos;enregistrement des commandes de l&apos;éditeur dans une nouvelle macro.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3920"/>
+        <source>Stop Macro Recording</source>
+        <translation>Arrêter l&apos;enregistrement de la macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3916"/>
+        <source>Sto&amp;p Macro Recording</source>
+        <translation>&amp;Arrêter l&apos;enregistrement de la macro</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3922"/>
-        <source>Stop Macro Recording</source>
-        <translation>Arrêter l&apos;enregistrement de la macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3918"/>
-        <source>Sto&amp;p Macro Recording</source>
-        <translation>&amp;Arrêter l&apos;enregistrement de la macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3924"/>
         <source>&lt;b&gt;Stop Macro Recording&lt;/b&gt;&lt;p&gt;Stop recording editor commands into a new macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Arrêter l&apos;enregistrement de la macro&lt;/b&gt;&lt;p&gt;Arrête l&apos;enregistrement des commandes de l&apos;éditeur dans la nouvelle macro..&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3934"/>
+        <source>Run Macro</source>
+        <translation>Lancer une macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3930"/>
+        <source>&amp;Run Macro</source>
+        <translation>&amp;Lancer une macro</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3936"/>
-        <source>Run Macro</source>
-        <translation>Lancer une macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3932"/>
-        <source>&amp;Run Macro</source>
-        <translation>&amp;Lancer une macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3938"/>
         <source>&lt;b&gt;Run Macro&lt;/b&gt;&lt;p&gt;Run a previously recorded editor macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Lancer une macro&lt;/b&gt;&lt;p&gt;Lance une macro déjà enregistrée.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3948"/>
+        <source>Delete Macro</source>
+        <translation>Supprimer une macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3944"/>
+        <source>&amp;Delete Macro</source>
+        <translation>&amp;Supprimer une macro</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3950"/>
-        <source>Delete Macro</source>
-        <translation>Supprimer une macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3946"/>
-        <source>&amp;Delete Macro</source>
-        <translation>&amp;Supprimer une macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3952"/>
         <source>&lt;b&gt;Delete Macro&lt;/b&gt;&lt;p&gt;Delete a previously recorded editor macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Supprimer une macro&lt;/b&gt;&lt;p&gt;Supprime une macro déjà enregistrée.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3962"/>
+        <source>Load Macro</source>
+        <translation>Charger une macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3958"/>
+        <source>&amp;Load Macro</source>
+        <translation>&amp;Charger une macro</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3964"/>
-        <source>Load Macro</source>
-        <translation>Charger une macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3960"/>
-        <source>&amp;Load Macro</source>
-        <translation>&amp;Charger une macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3966"/>
         <source>&lt;b&gt;Load Macro&lt;/b&gt;&lt;p&gt;Load an editor macro from a file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Charger une macro&lt;/b&gt;&lt;p&gt;Charger une macro déjà enregistrée à partir d&apos;un fichier.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3976"/>
+        <source>Save Macro</source>
+        <translation>Enregistrer une macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3972"/>
+        <source>&amp;Save Macro</source>
+        <translation>&amp;Enregistrer la macro</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3978"/>
-        <source>Save Macro</source>
-        <translation>Enregistrer une macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3974"/>
-        <source>&amp;Save Macro</source>
-        <translation>&amp;Enregistrer la macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3980"/>
         <source>&lt;b&gt;Save Macro&lt;/b&gt;&lt;p&gt;Save a previously recorded editor macro to a file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Enregistrer une macro&lt;/b&gt;&lt;p&gt;Enregistrer une macro dans un fichier.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4020"/>
+        <source>Toggle Bookmark</source>
+        <translation>Placer/Supprimer un signet</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <source>&amp;Toggle Bookmark</source>
+        <translation>&amp;Placer/Supprimer un signet</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4022"/>
-        <source>Toggle Bookmark</source>
-        <translation>Placer/Supprimer un signet</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4014"/>
-        <source>&amp;Toggle Bookmark</source>
-        <translation>&amp;Placer/Supprimer un signet</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4024"/>
         <source>&lt;b&gt;Toggle Bookmark&lt;/b&gt;&lt;p&gt;Toggle a bookmark at the current line of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Placer/Supprimer un signet&lt;/b&gt;&lt;p&gt;Place ou enlève un signet sur la ligne courante.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4039"/>
+        <source>Next Bookmark</source>
+        <translation>Signet suivant</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4031"/>
+        <source>&amp;Next Bookmark</source>
+        <translation>Signet suiva&amp;nt</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4041"/>
-        <source>Next Bookmark</source>
-        <translation>Signet suivant</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4033"/>
-        <source>&amp;Next Bookmark</source>
-        <translation>Signet suiva&amp;nt</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4043"/>
         <source>&lt;b&gt;Next Bookmark&lt;/b&gt;&lt;p&gt;Go to next bookmark of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Signet suivant&lt;/b&gt;&lt;p&gt;Avance jusqu&apos;au signet suivant.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4057"/>
+        <source>Previous Bookmark</source>
+        <translation>Signet précédent</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4049"/>
+        <source>&amp;Previous Bookmark</source>
+        <translation>Signet &amp;précédent</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4059"/>
-        <source>Previous Bookmark</source>
-        <translation>Signet précédent</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4051"/>
-        <source>&amp;Previous Bookmark</source>
-        <translation>Signet &amp;précédent</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4061"/>
         <source>&lt;b&gt;Previous Bookmark&lt;/b&gt;&lt;p&gt;Go to previous bookmark of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Signet précédent&lt;/b&gt;&lt;p&gt;Remonte au signet précédent.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4074"/>
+        <source>Clear Bookmarks</source>
+        <translation>Supprimer les signets</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <source>&amp;Clear Bookmarks</source>
+        <translation>S&amp;upprimer les signets</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4076"/>
-        <source>Clear Bookmarks</source>
-        <translation>Supprimer les signets</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4069"/>
-        <source>&amp;Clear Bookmarks</source>
-        <translation>S&amp;upprimer les signets</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4078"/>
         <source>&lt;b&gt;Clear Bookmarks&lt;/b&gt;&lt;p&gt;Clear bookmarks of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Supprimer les signets&lt;/b&gt;&lt;p&gt;Supprime tous les signets de tous les éditeurs ouverts.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4287"/>
+        <location filename="../ViewManager/ViewManager.py" line="4285"/>
         <source>&amp;Bookmarks</source>
         <translation>&amp;Signets</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4529"/>
+        <location filename="../ViewManager/ViewManager.py" line="4527"/>
         <source>File Modified</source>
         <translation>Fichier Modifié</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5373"/>
+        <location filename="../ViewManager/ViewManager.py" line="5371"/>
         <source>&amp;Clear</source>
         <translation>&amp;Effacer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5367"/>
+        <location filename="../ViewManager/ViewManager.py" line="5365"/>
         <source>&amp;Add</source>
         <translation>&amp;Ajouter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5370"/>
+        <location filename="../ViewManager/ViewManager.py" line="5368"/>
         <source>&amp;Edit...</source>
         <translation>&amp;Editer...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="816"/>
+        <location filename="../ViewManager/ViewManager.py" line="815"/>
         <source>Search File</source>
         <translation>Rechercher un fichier</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="816"/>
+        <location filename="../ViewManager/ViewManager.py" line="815"/>
         <source>Search &amp;File...</source>
         <translation>Rechercher un &amp;fichier...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="822"/>
+        <location filename="../ViewManager/ViewManager.py" line="821"/>
         <source>Search for a file</source>
         <translation>Recherche d&apos;un fichier</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="824"/>
+        <location filename="../ViewManager/ViewManager.py" line="823"/>
         <source>&lt;b&gt;Search File&lt;/b&gt;&lt;p&gt;Search for a file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Recherche d&apos;un fichier&lt;/b&gt;&lt;p&gt;Ouvre une fenêtre pour rechercher d&apos;un fichier.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1345"/>
+        <location filename="../ViewManager/ViewManager.py" line="1344"/>
         <source>Complete from Document</source>
         <translation type="unfinished">à partir du document</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1355"/>
+        <location filename="../ViewManager/ViewManager.py" line="1354"/>
         <source>Complete current word from Document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1358"/>
+        <location filename="../ViewManager/ViewManager.py" line="1357"/>
         <source>&lt;b&gt;Complete from Document&lt;/b&gt;&lt;p&gt;Performs a completion from document of the word containing the cursor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1368"/>
+        <location filename="../ViewManager/ViewManager.py" line="1367"/>
         <source>Complete from APIs</source>
         <translation type="unfinished">à partir des fichiers API</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1378"/>
+        <location filename="../ViewManager/ViewManager.py" line="1377"/>
         <source>Complete current word from APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1381"/>
+        <location filename="../ViewManager/ViewManager.py" line="1380"/>
         <source>&lt;b&gt;Complete from APIs&lt;/b&gt;&lt;p&gt;Performs a completion from APIs of the word containing the cursor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4090"/>
+        <source>Goto Syntax Error</source>
+        <translation>Aller à l&apos;erreur de syntaxe suivante</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4084"/>
+        <source>&amp;Goto Syntax Error</source>
+        <translation>Aller à l&apos;erreur de s&amp;yntaxe suivante</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4092"/>
-        <source>Goto Syntax Error</source>
-        <translation>Aller à l&apos;erreur de syntaxe suivante</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4086"/>
-        <source>&amp;Goto Syntax Error</source>
-        <translation>Aller à l&apos;erreur de s&amp;yntaxe suivante</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4094"/>
         <source>&lt;b&gt;Goto Syntax Error&lt;/b&gt;&lt;p&gt;Go to next syntax error of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Aller à l&apos;erreur de syntaxe suivante&lt;/b&gt;&lt;p&gt;Avance jusqu&apos;à l&apos;erreur de syntaxe suivante.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4105"/>
+        <source>Clear Syntax Errors</source>
+        <translation>Effacer les erreurs de syntaxe</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4100"/>
+        <source>Clear &amp;Syntax Errors</source>
+        <translation>E&amp;ffacer les erreurs de syntaxe</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4107"/>
-        <source>Clear Syntax Errors</source>
-        <translation>Effacer les erreurs de syntaxe</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4102"/>
-        <source>Clear &amp;Syntax Errors</source>
-        <translation>E&amp;ffacer les erreurs de syntaxe</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4109"/>
         <source>&lt;b&gt;Clear Syntax Errors&lt;/b&gt;&lt;p&gt;Clear syntax errors of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Effacer les erreurs de syntaxe&lt;/b&gt;&lt;p&gt;Supprime tous les flags d&apos;erreurs de syntaxe de tous les éditeurs ouverts.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="938"/>
+        <location filename="../ViewManager/ViewManager.py" line="937"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation>Alt+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation>Shift+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1037"/>
+        <location filename="../ViewManager/ViewManager.py" line="1036"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation>Shift+Ins</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2013"/>
+        <location filename="../ViewManager/ViewManager.py" line="2012"/>
         <source>Shift+Backspace</source>
         <translation>Shift+Backspace</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4175"/>
+        <source>Next uncovered line</source>
+        <translation>Ligne non executée suivante</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4169"/>
+        <source>&amp;Next uncovered line</source>
+        <translation>Ligne non executée &amp;suivante</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4177"/>
-        <source>Next uncovered line</source>
-        <translation>Ligne non executée suivante</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4171"/>
-        <source>&amp;Next uncovered line</source>
-        <translation>Ligne non executée &amp;suivante</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4179"/>
         <source>&lt;b&gt;Next uncovered line&lt;/b&gt;&lt;p&gt;Go to next line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ligne non executée suivante&lt;/b&gt;&lt;p&gt;Avance jusqu&apos;à la prochaine ligne de l&apos;éditeur marquée comme &quot;jamais executée&quot; par le code coverage.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4194"/>
+        <source>Previous uncovered line</source>
+        <translation>Ligne non executée précédente</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4186"/>
+        <source>&amp;Previous uncovered line</source>
+        <translation>Ligne non executée &amp;précédente</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4196"/>
-        <source>Previous uncovered line</source>
-        <translation>Ligne non executée précédente</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4188"/>
-        <source>&amp;Previous uncovered line</source>
-        <translation>Ligne non executée &amp;précédente</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4198"/>
         <source>&lt;b&gt;Previous uncovered line&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ligne non executée précédente&lt;/b&gt;&lt;p&gt;Retourne à la dernière ligne de l&apos;éditeur marquée comme &quot;jamais executée&quot; par le code coverage.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="662"/>
+        <location filename="../ViewManager/ViewManager.py" line="661"/>
         <source>Open a file</source>
         <translation>Ouvrir un Fichier</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="664"/>
+        <location filename="../ViewManager/ViewManager.py" line="663"/>
         <source>&lt;b&gt;Open a file&lt;/b&gt;&lt;p&gt;You will be asked for the name of a file to be opened in an editor window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ouvrir un fichier&lt;/b&gt;&lt;p&gt;Le nom d&apos;un fichier à ouvrir dans un éditeur vous est demandé.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3389"/>
+        <location filename="../ViewManager/ViewManager.py" line="3387"/>
         <source>Quicksearch</source>
         <translation>Recherche rapide</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3090"/>
+        <location filename="../ViewManager/ViewManager.py" line="3088"/>
         <source>Ctrl+Shift+K</source>
         <comment>Search|Quicksearch</comment>
         <translation>Ctrl+Shift+K</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3098"/>
+        <location filename="../ViewManager/ViewManager.py" line="3096"/>
         <source>Perform a quicksearch</source>
         <translation>Lancer une recherche rapide</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3111"/>
+        <location filename="../ViewManager/ViewManager.py" line="3109"/>
         <source>Quicksearch backwards</source>
         <translation>Recherche rapide en arrière</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3111"/>
+        <location filename="../ViewManager/ViewManager.py" line="3109"/>
         <source>Ctrl+Shift+J</source>
         <comment>Search|Quicksearch backwards</comment>
         <translation>Ctrl+Shift+J</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3121"/>
+        <location filename="../ViewManager/ViewManager.py" line="3119"/>
         <source>Perform a quicksearch backwards</source>
         <translation>Effectue une recherche rapide en arrière</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3090"/>
+        <location filename="../ViewManager/ViewManager.py" line="3088"/>
         <source>&amp;Quicksearch</source>
         <translation>&amp;Recherche rapide</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3111"/>
+        <location filename="../ViewManager/ViewManager.py" line="3109"/>
         <source>Quicksearch &amp;backwards</source>
         <translation>Recherche &amp;rapide en arrière</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3133"/>
+        <location filename="../ViewManager/ViewManager.py" line="3131"/>
         <source>Quicksearch extend</source>
         <translation>Etendre au mot complet</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3133"/>
+        <location filename="../ViewManager/ViewManager.py" line="3131"/>
         <source>Quicksearch e&amp;xtend</source>
         <translation>&amp;Etendre au mot complet</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3133"/>
+        <location filename="../ViewManager/ViewManager.py" line="3131"/>
         <source>Ctrl+Shift+H</source>
         <comment>Search|Quicksearch extend</comment>
         <translation>Ctrl+Shift+H</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3141"/>
+        <location filename="../ViewManager/ViewManager.py" line="3139"/>
         <source>Extend the quicksearch to the end of the current word</source>
         <translation>Etend la recherche rapide à la fin du mot courant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3144"/>
+        <location filename="../ViewManager/ViewManager.py" line="3142"/>
         <source>&lt;b&gt;Quicksearch extend&lt;/b&gt;&lt;p&gt;This extends the quicksearch text to the end of the word currently found.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Extension de la sélection au mot complet&lt;/b&gt;&lt;p&gt;Pour la recherche rapide, cette fonction permet d&apos;étendre la sélection au mot courant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1130"/>
+        <location filename="../ViewManager/ViewManager.py" line="1129"/>
         <source>Smart indent</source>
         <translation>Indentation intelligente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1136"/>
+        <location filename="../ViewManager/ViewManager.py" line="1135"/>
         <source>Smart indent Line or Selection</source>
         <translation>Indentation intelligente de la ligne ou de la sélection</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1138"/>
+        <location filename="../ViewManager/ViewManager.py" line="1137"/>
         <source>&lt;b&gt;Smart indent&lt;/b&gt;&lt;p&gt;Indents the current line or the lines of the current selection smartly.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Indentation intelligente&lt;/b&gt;&lt;p&gt;Indente intelligemment la ou les lignes sélectionnées.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3726"/>
+        <location filename="../ViewManager/ViewManager.py" line="3724"/>
         <source>Next split</source>
         <translation>Onglet suivant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3726"/>
+        <location filename="../ViewManager/ViewManager.py" line="3724"/>
         <source>&amp;Next split</source>
         <translation>O&amp;nglet suivant</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3731"/>
+        <source>Move to the next split</source>
+        <translation>Basculer vers l&apos;onglet suivant</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3733"/>
-        <source>Move to the next split</source>
-        <translation>Basculer vers l&apos;onglet suivant</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3735"/>
         <source>&lt;b&gt;Next split&lt;/b&gt;&lt;p&gt;Move to the next split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Onglet suivant&lt;/b&gt;&lt;p&gt;Basculer vers l&apos;onglet suivant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3743"/>
+        <location filename="../ViewManager/ViewManager.py" line="3741"/>
         <source>Previous split</source>
         <translation>Onglet précédent</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3743"/>
+        <location filename="../ViewManager/ViewManager.py" line="3741"/>
         <source>&amp;Previous split</source>
         <translation>Onglet &amp;précédent</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3747"/>
+        <source>Move to the previous split</source>
+        <translation>Basculer vers l&apos;onglet précédent</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3749"/>
-        <source>Move to the previous split</source>
-        <translation>Basculer vers l&apos;onglet précédent</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3751"/>
         <source>&lt;b&gt;Previous split&lt;/b&gt;&lt;p&gt;Move to the previous split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Onglet précédent&lt;/b&gt;&lt;p&gt;Basculer vers l&apos;onglet précédent.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2093"/>
+        <location filename="../ViewManager/ViewManager.py" line="2092"/>
         <source>Enter</source>
         <translation>Enter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1401"/>
+        <location filename="../ViewManager/ViewManager.py" line="1400"/>
         <source>Complete current word from Document and APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1391"/>
+        <location filename="../ViewManager/ViewManager.py" line="1390"/>
         <source>Complete from Document and APIs</source>
         <translation type="unfinished">à partir du document et des fichiers API</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1404"/>
+        <location filename="../ViewManager/ViewManager.py" line="1403"/>
         <source>&lt;b&gt;Complete from Document and APIs&lt;/b&gt;&lt;p&gt;Performs a completion from document and APIs of the word containing the cursor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3583"/>
+        <source>Toggle all folds (including children)</source>
+        <translation>Contracte/Déploie tout le code (sous-niveaux inclus)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3577"/>
+        <source>Toggle all &amp;folds (including children)</source>
+        <translation>Contracte/&amp;Déploie tout le code (sous-niveaux inclus)</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3585"/>
-        <source>Toggle all folds (including children)</source>
-        <translation>Contracte/Déploie tout le code (sous-niveaux inclus)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3579"/>
-        <source>Toggle all &amp;folds (including children)</source>
-        <translation>Contracte/&amp;Déploie tout le code (sous-niveaux inclus)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3587"/>
         <source>&lt;b&gt;Toggle all folds (including children)&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor including all children.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Contracte/Déploie tout le code (sous-niveaux inclus)&lt;/b&gt;&lt;p&gt;Contracte/Déploie tout le code de l&apos;éditeur courant en incluant tous les sous-niveaux d&apos;indentation&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2381"/>
+        <location filename="../ViewManager/ViewManager.py" line="2379"/>
         <source>Duplicate current selection</source>
         <translation>Duplication de la sélection courante</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2381"/>
+        <location filename="../ViewManager/ViewManager.py" line="2379"/>
         <source>Ctrl+Shift+D</source>
         <translation>Ctrl+Shift+D</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="635"/>
+        <location filename="../ViewManager/ViewManager.py" line="634"/>
         <source>Ctrl+N</source>
         <comment>File|New</comment>
         <translation>Ctrl+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="654"/>
+        <location filename="../ViewManager/ViewManager.py" line="653"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation>Ctrl+O</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="675"/>
+        <location filename="../ViewManager/ViewManager.py" line="674"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation>Ctrl+W</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="712"/>
         <source>Ctrl+S</source>
         <comment>File|Save</comment>
         <translation>Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="729"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation>Shift+Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="781"/>
+        <location filename="../ViewManager/ViewManager.py" line="780"/>
         <source>Ctrl+P</source>
         <comment>File|Print</comment>
         <translation>Ctrl+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="816"/>
+        <location filename="../ViewManager/ViewManager.py" line="815"/>
         <source>Alt+Ctrl+F</source>
         <comment>File|Search File</comment>
         <translation>Alt+Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="838"/>
+        <location filename="../ViewManager/ViewManager.py" line="837"/>
         <source>&amp;File</source>
         <translation>&amp;Fichier</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="891"/>
+        <location filename="../ViewManager/ViewManager.py" line="890"/>
         <source>File</source>
         <translation>Fichier</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="938"/>
+        <location filename="../ViewManager/ViewManager.py" line="937"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation>Ctrl+Z</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="957"/>
+        <location filename="../ViewManager/ViewManager.py" line="956"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation>Ctrl+Shift+Z</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="975"/>
+        <location filename="../ViewManager/ViewManager.py" line="974"/>
         <source>Ctrl+Y</source>
         <comment>Edit|Revert</comment>
         <translation>Ctrl+Y</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation>Ctrl+X</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1017"/>
+        <location filename="../ViewManager/ViewManager.py" line="1016"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1017"/>
+        <location filename="../ViewManager/ViewManager.py" line="1016"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+Ins</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1037"/>
+        <location filename="../ViewManager/ViewManager.py" line="1036"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation>Ctrl+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1057"/>
+        <location filename="../ViewManager/ViewManager.py" line="1056"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation>Alt+Shift+C</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1092"/>
+        <location filename="../ViewManager/ViewManager.py" line="1091"/>
         <source>Ctrl+I</source>
         <comment>Edit|Indent</comment>
         <translation>Ctrl+I</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1111"/>
+        <location filename="../ViewManager/ViewManager.py" line="1110"/>
         <source>Ctrl+Shift+I</source>
         <comment>Edit|Unindent</comment>
         <translation>Ctrl+Shift+I</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1147"/>
+        <location filename="../ViewManager/ViewManager.py" line="1146"/>
         <source>Ctrl+M</source>
         <comment>Edit|Comment</comment>
         <translation>Ctrl+M</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1166"/>
+        <location filename="../ViewManager/ViewManager.py" line="1165"/>
         <source>Alt+Ctrl+M</source>
         <comment>Edit|Uncomment</comment>
         <translation>Alt+Ctrl+M</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1240"/>
+        <location filename="../ViewManager/ViewManager.py" line="1239"/>
         <source>Ctrl+E</source>
         <comment>Edit|Select to brace</comment>
         <translation>Ctrl+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1258"/>
+        <location filename="../ViewManager/ViewManager.py" line="1257"/>
         <source>Ctrl+A</source>
         <comment>Edit|Select all</comment>
         <translation>Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1275"/>
         <source>Alt+Ctrl+A</source>
         <comment>Edit|Deselect all</comment>
         <translation>Alt+Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2788"/>
+        <location filename="../ViewManager/ViewManager.py" line="2786"/>
         <source>&amp;Edit</source>
         <translation>&amp;Edition</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2845"/>
+        <location filename="../ViewManager/ViewManager.py" line="2843"/>
         <source>Edit</source>
         <translation>Édition</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2877"/>
+        <location filename="../ViewManager/ViewManager.py" line="2875"/>
         <source>Ctrl+F</source>
         <comment>Search|Search</comment>
         <translation>Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3003"/>
+        <location filename="../ViewManager/ViewManager.py" line="3001"/>
         <source>Ctrl+R</source>
         <comment>Search|Replace</comment>
         <translation>Ctrl+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3154"/>
+        <location filename="../ViewManager/ViewManager.py" line="3152"/>
         <source>Ctrl+G</source>
         <comment>Search|Goto Line</comment>
         <translation>Ctrl+G</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3173"/>
+        <location filename="../ViewManager/ViewManager.py" line="3171"/>
         <source>Ctrl+L</source>
         <comment>Search|Goto Brace</comment>
         <translation>Ctrl+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3261"/>
+        <location filename="../ViewManager/ViewManager.py" line="3259"/>
         <source>Shift+Ctrl+F</source>
         <comment>Search|Search Files</comment>
         <translation>Shift+Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3487"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation>Ctrl++</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3508"/>
+        <location filename="../ViewManager/ViewManager.py" line="3506"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation>Ctrl+-</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3546"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>Ctrl+#</source>
         <comment>View|Zoom</comment>
         <translation>Ctrl+#</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3726"/>
+        <location filename="../ViewManager/ViewManager.py" line="3724"/>
         <source>Ctrl+Alt+N</source>
         <comment>View|Next split</comment>
         <translation>Ctrl+Alt+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3743"/>
+        <location filename="../ViewManager/ViewManager.py" line="3741"/>
         <source>Ctrl+Alt+P</source>
         <comment>View|Previous split</comment>
         <translation>Ctrl+Alt+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3835"/>
+        <location filename="../ViewManager/ViewManager.py" line="3833"/>
         <source>&amp;View</source>
         <translation>&amp;Affichage</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3872"/>
+        <location filename="../ViewManager/ViewManager.py" line="3870"/>
         <source>View</source>
         <translation>Affichage</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3996"/>
+        <location filename="../ViewManager/ViewManager.py" line="3994"/>
         <source>&amp;Macros</source>
         <translation>&amp;Macros</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4014"/>
+        <location filename="../ViewManager/ViewManager.py" line="4012"/>
         <source>Alt+Ctrl+T</source>
         <comment>Bookmark|Toggle</comment>
         <translation>Alt+Ctrl+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4033"/>
+        <location filename="../ViewManager/ViewManager.py" line="4031"/>
         <source>Ctrl+PgDown</source>
         <comment>Bookmark|Next</comment>
         <translation>Ctrl+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4051"/>
+        <location filename="../ViewManager/ViewManager.py" line="4049"/>
         <source>Ctrl+PgUp</source>
         <comment>Bookmark|Previous</comment>
         <translation>Ctrl+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4069"/>
+        <location filename="../ViewManager/ViewManager.py" line="4067"/>
         <source>Alt+Ctrl+C</source>
         <comment>Bookmark|Clear</comment>
         <translation>Alt+Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4333"/>
+        <location filename="../ViewManager/ViewManager.py" line="4331"/>
         <source>Bookmarks</source>
         <translation>Signets</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4485"/>
+        <location filename="../ViewManager/ViewManager.py" line="4483"/>
         <source>Open files</source>
         <translation>Ouvrir Fichiers</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4212"/>
+        <source>Next Task</source>
+        <translation>Tâche suivante</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4206"/>
+        <source>&amp;Next Task</source>
+        <translation>Tâche suiva&amp;nte</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4214"/>
-        <source>Next Task</source>
-        <translation>Tâche suivante</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4208"/>
-        <source>&amp;Next Task</source>
-        <translation>Tâche suiva&amp;nte</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4216"/>
         <source>&lt;b&gt;Next Task&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a task.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Tâche suivante&lt;/b&gt;&lt;p&gt;Avance jusqu&apos;à la prochaine ligne ayant une tâche dans l&apos;éditeur courant.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4229"/>
+        <source>Previous Task</source>
+        <translation>Tâche précédente</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4222"/>
+        <source>&amp;Previous Task</source>
+        <translation>Tâche &amp;précédente</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4231"/>
-        <source>Previous Task</source>
-        <translation>Tâche précédente</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4224"/>
-        <source>&amp;Previous Task</source>
-        <translation>Tâche &amp;précédente</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4233"/>
         <source>&lt;b&gt;Previous Task&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a task.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Tâche précédente&lt;/b&gt;&lt;p&gt;Remonte jusqu&apos;à la tâche précédente dans l&apos;éditeur courant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3354"/>
+        <location filename="../ViewManager/ViewManager.py" line="3352"/>
         <source>&amp;Search</source>
         <translation>Re&amp;chercher</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2897"/>
+        <location filename="../ViewManager/ViewManager.py" line="2895"/>
         <source>Search next</source>
         <translation>Chercher suivant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2897"/>
+        <location filename="../ViewManager/ViewManager.py" line="2895"/>
         <source>Search &amp;next</source>
         <translation>Chercher &amp;suivant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2897"/>
+        <location filename="../ViewManager/ViewManager.py" line="2895"/>
         <source>F3</source>
         <comment>Search|Search next</comment>
         <translation>F3</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2918"/>
+        <location filename="../ViewManager/ViewManager.py" line="2916"/>
         <source>Search previous</source>
         <translation>Chercher précédent</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2918"/>
+        <location filename="../ViewManager/ViewManager.py" line="2916"/>
         <source>Search &amp;previous</source>
         <translation>Chercher &amp;précédent</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2918"/>
+        <location filename="../ViewManager/ViewManager.py" line="2916"/>
         <source>Shift+F3</source>
         <comment>Search|Search previous</comment>
         <translation>Shift+F3</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1249"/>
+        <location filename="../ViewManager/ViewManager.py" line="1248"/>
         <source>&lt;b&gt;Select to brace&lt;/b&gt;&lt;p&gt;Select text of the current editor to the matching brace.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Sélection jusqu&apos;à la parenthèse fermante&lt;/b&gt;&lt;p&gt;Sélectionne le texte jusqu&apos;à la parenthèse fermante.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1268"/>
+        <location filename="../ViewManager/ViewManager.py" line="1267"/>
         <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Select all text of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Tout sélectionner&lt;/b&gt;&lt;p&gt;Sélectionne tout le texte de l&apos;éditeur courant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1285"/>
+        <location filename="../ViewManager/ViewManager.py" line="1284"/>
         <source>&lt;b&gt;Deselect All&lt;/b&gt;&lt;p&gt;Deselect all text of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Tout déselectionner&lt;/b&gt;&lt;p&gt;Désélectionne tout le texte de l&apos;éditeur courant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="914"/>
+        <location filename="../ViewManager/ViewManager.py" line="913"/>
         <source>Export as</source>
         <translation>Exporter en tant que</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3435"/>
+        <location filename="../ViewManager/ViewManager.py" line="3433"/>
         <source>Quicksearch Textedit</source>
         <translation>Edition de la recherche rapide</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1414"/>
+        <location filename="../ViewManager/ViewManager.py" line="1413"/>
         <source>Calltip</source>
         <translation>Calltip</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1414"/>
+        <location filename="../ViewManager/ViewManager.py" line="1413"/>
         <source>&amp;Calltip</source>
         <translation>&amp;Calltip (ou suggestion d&apos;arguments)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1414"/>
+        <location filename="../ViewManager/ViewManager.py" line="1413"/>
         <source>Meta+Alt+Space</source>
         <comment>Edit|Calltip</comment>
         <translation type="unfinished">Meta+Alt+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1421"/>
+        <location filename="../ViewManager/ViewManager.py" line="1420"/>
         <source>Show Calltips</source>
         <translation>Affiche les calltips</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1423"/>
+        <location filename="../ViewManager/ViewManager.py" line="1422"/>
         <source>&lt;b&gt;Calltip&lt;/b&gt;&lt;p&gt;Show calltips based on the characters immediately to the left of the cursor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Calltip&lt;/b&gt;&lt;p&gt;Affiche les calltips (suggestions d&apos;arguments) trouvés à partir des caractères à gauche du curseur.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="2904"/>
+        <source>Search next occurrence of text</source>
+        <translation>Recherche de l&apos;occurence de texte suivante</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="2906"/>
-        <source>Search next occurrence of text</source>
-        <translation>Recherche de l&apos;occurence de texte suivante</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2908"/>
         <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&apos;é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="2924"/>
+        <source>Search previous occurrence of text</source>
+        <translation>Recherche de l&apos;occurence de texte précédente</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="2926"/>
-        <source>Search previous occurrence of text</source>
-        <translation>Recherche de l&apos;occurence de texte précédente</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2928"/>
         <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&apos;é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="2938"/>
+        <location filename="../ViewManager/ViewManager.py" line="2936"/>
         <source>Clear search markers</source>
         <translation>Effacer les marqueurs de recherche</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2938"/>
+        <location filename="../ViewManager/ViewManager.py" line="2936"/>
         <source>Ctrl+3</source>
         <comment>Search|Clear search markers</comment>
         <translation>Ctrl+3</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="2944"/>
+        <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="2946"/>
-        <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="2948"/>
         <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="3100"/>
+        <location filename="../ViewManager/ViewManager.py" line="3098"/>
         <source>&lt;b&gt;Quicksearch&lt;/b&gt;&lt;p&gt;This activates the quicksearch function of the IDE by giving focus to the quicksearch entry field. If this field is already active and contains text, it searches for the next occurrence of this text.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Recherche rapide&lt;/b&gt;&lt;p&gt;Ceci active la fonction de recherche rapide. Si le champ est déjà actif et contient du texte, la fonction recherche l&apos;occurence suivante du texte.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3124"/>
+        <location filename="../ViewManager/ViewManager.py" line="3122"/>
         <source>&lt;b&gt;Quicksearch backwards&lt;/b&gt;&lt;p&gt;This searches the previous occurrence of the quicksearch text.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Recherche rapide en arrière&lt;/b&gt;&lt;p&gt;Permet de rechercher l&apos;ocurrence précédente du texte recherché.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3408"/>
+        <location filename="../ViewManager/ViewManager.py" line="3406"/>
         <source>&lt;p&gt;Enter the searchtext directly into this field. The search will be performed case insensitive. The quicksearch function is activated upon activation of the quicksearch next action (default key Ctrl+Shift+K), if this entry field does not have the input focus. Otherwise it searches for the next occurrence of the text entered. The quicksearch backwards action (default key Ctrl+Shift+J) searches backward. Activating the &apos;quicksearch extend&apos; action (default key Ctrl+Shift+H) extends the current searchtext to the end of the currently found word. The quicksearch can be ended by pressing the Return key while the quicksearch entry has the the input focus.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Saisir le texte à rechercher dans ce champ. La recherche tiendra compte de la casse. Si le champ de saisie n&apos;a pas le focus, la fonction de recherche rapide s&apos;active automatiquement quand on lance la recherche d&apos;occurence suivante (raccourci Ctrl+Shift+K par défaut). Sinon, c&apos;est la recherche de l&apos;occurence suivante qui est effectuée. La recherche rapide arrière (raccourci Ctrl+Shift+J par défaut) permet de rechercher en arrière dans le texte. En activant &quot;l&apos;extension de recherche rapide&quot;  (Ctrl+Shift+H par défaut), on étend le texte de recherche au mot courant trouvé. On quitte la recherche rapide en appuyant sur &apos;Enter&apos; lorsque le champ de saisie a le focus.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="799"/>
+        <location filename="../ViewManager/ViewManager.py" line="798"/>
         <source>Print Preview</source>
         <translation>Aperçu avant impression</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="804"/>
+        <location filename="../ViewManager/ViewManager.py" line="803"/>
         <source>Print preview of the current file</source>
         <translation>Aperçu avant impression du fichier courant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="806"/>
+        <location filename="../ViewManager/ViewManager.py" line="805"/>
         <source>&lt;b&gt;Print Preview&lt;/b&gt;&lt;p&gt;Print preview of the current editor window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Aperçu avant impression&lt;/b&gt;&lt;p&gt;Aperçu avant impression de l&apos;éditeur courant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2103"/>
+        <location filename="../ViewManager/ViewManager.py" line="2102"/>
         <source>Insert new line below current line</source>
         <translation>Insère une ligne avant la ligne courante</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2103"/>
+        <location filename="../ViewManager/ViewManager.py" line="2102"/>
         <source>Shift+Return</source>
         <translation>Shift+Return</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2103"/>
+        <location filename="../ViewManager/ViewManager.py" line="2102"/>
         <source>Shift+Enter</source>
         <translation>Shift+Enter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3281"/>
+        <location filename="../ViewManager/ViewManager.py" line="3279"/>
         <source>Replace in Files</source>
         <translation>Remplacer dans les fichiers</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3281"/>
+        <location filename="../ViewManager/ViewManager.py" line="3279"/>
         <source>Replace in F&amp;iles...</source>
         <translation>Remplacer dans les f&amp;ichiers...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3281"/>
+        <location filename="../ViewManager/ViewManager.py" line="3279"/>
         <source>Shift+Ctrl+R</source>
         <comment>Search|Replace in Files</comment>
         <translation>Shift+Ctrl+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3288"/>
+        <location filename="../ViewManager/ViewManager.py" line="3286"/>
         <source>Search for a text in files and replace it</source>
         <translation>Recherche puis remplace un texte dans des fichiers</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3290"/>
+        <location filename="../ViewManager/ViewManager.py" line="3288"/>
         <source>&lt;b&gt;Replace in Files&lt;/b&gt;&lt;p&gt;Search for some text in the files of a directory tree or the project and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and to display the result.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Remplacer un texte dans les fichiers&lt;/b&gt;&lt;p&gt;Recherche un texte dans les fichiers d&apos;un répertoire ou du projet. Une fenêtre permet de saisir les options de recherche et de remplacement, et d&apos;afficher les résultats.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4366"/>
+        <location filename="../ViewManager/ViewManager.py" line="4364"/>
         <source>Shift+F7</source>
         <comment>Spelling|Spell Check</comment>
         <translation>Shift+F7</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4375"/>
+        <location filename="../ViewManager/ViewManager.py" line="4373"/>
         <source>Perform spell check of current editor</source>
         <translation>Effectue la vérification orthographique dans l&apos;éditeur courant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4385"/>
+        <location filename="../ViewManager/ViewManager.py" line="4383"/>
         <source>Automatic spell checking</source>
         <translation>Vérification orthographique automatique</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4385"/>
+        <location filename="../ViewManager/ViewManager.py" line="4383"/>
         <source>&amp;Automatic spell checking</source>
         <translation>Vérification orthographique &amp;automatique</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4391"/>
+        <source>(De-)Activate automatic spell checking</source>
+        <translation>Active/Désactive la vérification orthographique automatique</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4393"/>
-        <source>(De-)Activate automatic spell checking</source>
-        <translation>Active/Désactive la vérification orthographique automatique</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4395"/>
         <source>&lt;b&gt;Automatic spell checking&lt;/b&gt;&lt;p&gt;Activate or deactivate the automatic spell checking function of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vérification orthographique&lt;/b&gt;&lt;p&gt;Active ou désactive la vérification orthographique automatique dans tous les éditeurs.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4462"/>
+        <location filename="../ViewManager/ViewManager.py" line="4460"/>
         <source>Spelling</source>
         <translation>Orthographe</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4529"/>
+        <location filename="../ViewManager/ViewManager.py" line="4527"/>
         <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="../ViewManager/ViewManager.py" line="4928"/>
+        <location filename="../ViewManager/ViewManager.py" line="4926"/>
         <source>Line: {0:5}</source>
         <translation>Ligne: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4934"/>
+        <location filename="../ViewManager/ViewManager.py" line="4932"/>
         <source>Pos: {0:5}</source>
         <translation>Position: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4124"/>
+        <location filename="../ViewManager/ViewManager.py" line="4122"/>
         <source>Next warning message</source>
         <translation>Message d&apos;avertissement suivant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4118"/>
+        <location filename="../ViewManager/ViewManager.py" line="4116"/>
         <source>&amp;Next warning message</source>
         <translation>Message d&apos;avertisseme&amp;nt suivant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4143"/>
+        <location filename="../ViewManager/ViewManager.py" line="4141"/>
         <source>Previous warning message</source>
         <translation>Message d&apos;avertissement précédente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4135"/>
+        <location filename="../ViewManager/ViewManager.py" line="4133"/>
         <source>&amp;Previous warning message</source>
         <translation>Message d&apos;avertissement &amp;précédente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4161"/>
+        <location filename="../ViewManager/ViewManager.py" line="4159"/>
         <source>Clear Warning Messages</source>
         <translation>Vider messages d&apos;avertissement</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4154"/>
+        <location filename="../ViewManager/ViewManager.py" line="4152"/>
         <source>Clear &amp;Warning Messages</source>
         <translation>Vider messages d&apos;&amp;avertissement</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1082"/>
+        <location filename="../ViewManager/ViewManager.py" line="1081"/>
         <source>Join Lines</source>
         <translation>Unir lignes</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1075"/>
+        <location filename="../ViewManager/ViewManager.py" line="1074"/>
         <source>Ctrl+J</source>
         <comment>Edit|Join Lines</comment>
         <translation>Ctrl+J</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1084"/>
+        <location filename="../ViewManager/ViewManager.py" line="1083"/>
         <source>&lt;b&gt;Join Lines&lt;/b&gt;&lt;p&gt;Join the current and the next lines.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Unir lignes&lt;/b&gt;&lt;p&gt;Unir la ligne actuelle avec les lignes suivantes.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3202"/>
+        <location filename="../ViewManager/ViewManager.py" line="3200"/>
         <source>Goto Last Edit Location</source>
         <translation>Aller à la dernière modification</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3191"/>
+        <location filename="../ViewManager/ViewManager.py" line="3189"/>
         <source>Goto Last &amp;Edit Location</source>
         <translation>Aller à la dernièr&amp;e modification</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3191"/>
+        <location filename="../ViewManager/ViewManager.py" line="3189"/>
         <source>Ctrl+Shift+G</source>
         <comment>Search|Goto Last Edit Location</comment>
         <translation>Ctrl+Shift+G</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3205"/>
+        <location filename="../ViewManager/ViewManager.py" line="3203"/>
         <source>&lt;b&gt;Goto Last Edit Location&lt;/b&gt;&lt;p&gt;Go to the location of the last edit in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Aller à la dernière modification&lt;/b&gt;&lt;p&gt;Aller à l&apos;endroit de la derniére modification dans l&apos;éditeur actuel.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3214"/>
+        <location filename="../ViewManager/ViewManager.py" line="3212"/>
         <source>Goto Previous Method or Class</source>
         <translation>Aller à la classe ou fonction précédentes</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3214"/>
+        <location filename="../ViewManager/ViewManager.py" line="3212"/>
         <source>Ctrl+Shift+Up</source>
         <comment>Search|Goto Previous Method or Class</comment>
         <translation>Ctrl+Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3224"/>
+        <location filename="../ViewManager/ViewManager.py" line="3222"/>
         <source>Go to the previous method or class definition</source>
         <translation>Aller à la définition de classe ou de fonction précédente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3228"/>
+        <location filename="../ViewManager/ViewManager.py" line="3226"/>
         <source>&lt;b&gt;Goto Previous Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the previous method or class definition and highlights the name.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Aller à la classe ou fonction précédente&lt;/b&gt;&lt;p&gt;Va à la ligne de classe ou fonction précédent et surligne le nom. &lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3238"/>
+        <location filename="../ViewManager/ViewManager.py" line="3236"/>
         <source>Goto Next Method or Class</source>
         <translation>Aller à la classe ou fonction suivante</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3238"/>
+        <location filename="../ViewManager/ViewManager.py" line="3236"/>
         <source>Ctrl+Shift+Down</source>
         <comment>Search|Goto Next Method or Class</comment>
         <translation>Ctrl+Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3248"/>
+        <location filename="../ViewManager/ViewManager.py" line="3246"/>
         <source>Go to the next method or class definition</source>
         <translation>Aller à la définition de classe ou de fonction suivante</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3250"/>
+        <location filename="../ViewManager/ViewManager.py" line="3248"/>
         <source>&lt;b&gt;Goto Next Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the next method or class definition and highlights the name.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Aller à la classe ou fonction suivante&lt;/b&gt;&lt;p&gt;Va à la ligne de classe ou fonction suivante et surligne le nom. &lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3759"/>
+        <location filename="../ViewManager/ViewManager.py" line="3757"/>
         <source>Preview</source>
         <translation>Aperçu</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3762"/>
+        <source>Preview the current file in the web browser</source>
+        <translation>Avoir un aperçu du fichier courant dans le navigateur</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3764"/>
-        <source>Preview the current file in the web browser</source>
-        <translation>Avoir un aperçu du fichier courant dans le navigateur</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3766"/>
         <source>&lt;b&gt;Preview&lt;/b&gt;&lt;p&gt;This opens the web browser with a preview of the current file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Aperçu&lt;/b&gt;&lt;p&gt;Ceci ouvre le navigateur avec un aperçu du fichier courant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1490"/>
+        <location filename="../ViewManager/ViewManager.py" line="1489"/>
         <source>Meta+B</source>
         <translation>Meta+B</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1503"/>
+        <location filename="../ViewManager/ViewManager.py" line="1502"/>
         <source>Meta+F</source>
         <translation>Meta+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1515"/>
+        <location filename="../ViewManager/ViewManager.py" line="1514"/>
         <source>Meta+P</source>
         <translation>Meta+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1527"/>
+        <location filename="../ViewManager/ViewManager.py" line="1526"/>
         <source>Meta+N</source>
         <translation>Meta+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1588"/>
+        <location filename="../ViewManager/ViewManager.py" line="1587"/>
         <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="1604"/>
+        <location filename="../ViewManager/ViewManager.py" line="1603"/>
         <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="1621"/>
+        <location filename="../ViewManager/ViewManager.py" line="1620"/>
         <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="1629"/>
+        <location filename="../ViewManager/ViewManager.py" line="1628"/>
         <source>Meta+E</source>
         <translation>Meta+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1697"/>
+        <location filename="../ViewManager/ViewManager.py" line="1696"/>
         <source>Meta+V</source>
         <translation>Meta+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1703"/>
+        <location filename="../ViewManager/ViewManager.py" line="1702"/>
         <source>Move to start of document</source>
         <translation>Déplacement au début du document</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1720"/>
+        <location filename="../ViewManager/ViewManager.py" line="1719"/>
         <source>Move to end of document</source>
         <translation>Déplacement à la fin du document</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1765"/>
+        <location filename="../ViewManager/ViewManager.py" line="1764"/>
         <source>Meta+Shift+B</source>
         <translation>Meta+Shift+B</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1780"/>
+        <location filename="../ViewManager/ViewManager.py" line="1779"/>
         <source>Meta+Shift+F</source>
         <translation>Meta+Shift+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1795"/>
+        <location filename="../ViewManager/ViewManager.py" line="1794"/>
         <source>Meta+Shift+P</source>
         <translation>Meta+Shift+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1810"/>
+        <location filename="../ViewManager/ViewManager.py" line="1809"/>
         <source>Meta+Shift+N</source>
         <translation>Meta+Shift+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1878"/>
+        <location filename="../ViewManager/ViewManager.py" line="1877"/>
         <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="1896"/>
+        <location filename="../ViewManager/ViewManager.py" line="1895"/>
         <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="1904"/>
+        <location filename="../ViewManager/ViewManager.py" line="1903"/>
         <source>Meta+Shift+E</source>
         <translation>Meta+Shift+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1961"/>
+        <location filename="../ViewManager/ViewManager.py" line="1960"/>
         <source>Meta+Shift+V</source>
         <translation>Meta+Shift+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1967"/>
+        <location filename="../ViewManager/ViewManager.py" line="1966"/>
         <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="1975"/>
+        <location filename="../ViewManager/ViewManager.py" line="1974"/>
         <source>Ctrl+Shift+Up</source>
         <translation>Ctrl+Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1984"/>
+        <location filename="../ViewManager/ViewManager.py" line="1983"/>
         <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="1992"/>
+        <location filename="../ViewManager/ViewManager.py" line="1991"/>
         <source>Ctrl+Shift+Down</source>
         <translation>Ctrl+Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2010"/>
+        <location filename="../ViewManager/ViewManager.py" line="2009"/>
         <source>Meta+H</source>
         <translation>Meta+H</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2019"/>
+        <location filename="../ViewManager/ViewManager.py" line="2018"/>
         <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="2040"/>
+        <location filename="../ViewManager/ViewManager.py" line="2039"/>
         <source>Meta+D</source>
         <translation>Meta+D</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2084"/>
+        <location filename="../ViewManager/ViewManager.py" line="2083"/>
         <source>Meta+K</source>
         <translation>Meta+K</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2194"/>
+        <location filename="../ViewManager/ViewManager.py" line="2192"/>
         <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="2211"/>
+        <location filename="../ViewManager/ViewManager.py" line="2209"/>
         <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="2253"/>
+        <location filename="../ViewManager/ViewManager.py" line="2251"/>
         <source>Meta+Alt+Shift+N</source>
         <translation>Meta+Alt+Shift+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2268"/>
+        <location filename="../ViewManager/ViewManager.py" line="2266"/>
         <source>Meta+Alt+Shift+P</source>
         <translation>Meta+Alt+Shift+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2286"/>
+        <location filename="../ViewManager/ViewManager.py" line="2284"/>
         <source>Meta+Alt+Shift+B</source>
         <translation>Meta+Alt+Shift+B</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2304"/>
+        <location filename="../ViewManager/ViewManager.py" line="2302"/>
         <source>Meta+Alt+Shift+F</source>
         <translation>Meta+Alt+Shift+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2310"/>
+        <location filename="../ViewManager/ViewManager.py" line="2308"/>
         <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="2329"/>
+        <location filename="../ViewManager/ViewManager.py" line="2327"/>
         <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="2339"/>
+        <location filename="../ViewManager/ViewManager.py" line="2337"/>
         <source>Meta+Alt+Shift+E</source>
         <translation>Meta+Alt+Shift+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2342"/>
+        <location filename="../ViewManager/ViewManager.py" line="2340"/>
         <source>Alt+Shift+End</source>
         <translation>Alt+Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2363"/>
+        <location filename="../ViewManager/ViewManager.py" line="2361"/>
         <source>Alt+Shift+PgDown</source>
         <translation>Alt+Shift+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2375"/>
+        <location filename="../ViewManager/ViewManager.py" line="2373"/>
         <source>Meta+Alt+Shift+V</source>
         <translation>Meta+Alt+Shift+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2395"/>
+        <location filename="../ViewManager/ViewManager.py" line="2393"/>
         <source>Scroll to start of document</source>
         <translation>Défilement au début du document</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2410"/>
+        <location filename="../ViewManager/ViewManager.py" line="2408"/>
         <source>Scroll to end of document</source>
         <translation>Défilement à la fin du document</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2425"/>
+        <location filename="../ViewManager/ViewManager.py" line="2423"/>
         <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="2433"/>
+        <location filename="../ViewManager/ViewManager.py" line="2431"/>
         <source>Meta+L</source>
         <translation>Meta+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2440"/>
+        <location filename="../ViewManager/ViewManager.py" line="2438"/>
         <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="2455"/>
+        <location filename="../ViewManager/ViewManager.py" line="2453"/>
         <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="2471"/>
+        <location filename="../ViewManager/ViewManager.py" line="2469"/>
         <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="2483"/>
+        <location filename="../ViewManager/ViewManager.py" line="2481"/>
         <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="2495"/>
+        <location filename="../ViewManager/ViewManager.py" line="2493"/>
         <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="2503"/>
+        <location filename="../ViewManager/ViewManager.py" line="2501"/>
         <source>Meta+A</source>
         <translation>Meta+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2510"/>
+        <location filename="../ViewManager/ViewManager.py" line="2508"/>
         <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="2521"/>
+        <location filename="../ViewManager/ViewManager.py" line="2519"/>
         <source>Meta+Shift+A</source>
         <translation>Meta+Shift+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2528"/>
+        <location filename="../ViewManager/ViewManager.py" line="2526"/>
         <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="2538"/>
+        <location filename="../ViewManager/ViewManager.py" line="2536"/>
         <source>Meta+Alt+Shift+A</source>
         <translation>Meta+Alt+Shift+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2546"/>
+        <location filename="../ViewManager/ViewManager.py" line="2544"/>
         <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="2565"/>
+        <location filename="../ViewManager/ViewManager.py" line="2563"/>
         <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="2579"/>
+        <location filename="../ViewManager/ViewManager.py" line="2577"/>
         <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="2594"/>
+        <location filename="../ViewManager/ViewManager.py" line="2592"/>
         <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="2611"/>
+        <location filename="../ViewManager/ViewManager.py" line="2609"/>
         <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="2628"/>
+        <location filename="../ViewManager/ViewManager.py" line="2626"/>
         <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="2642"/>
+        <location filename="../ViewManager/ViewManager.py" line="2640"/>
         <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="2657"/>
+        <location filename="../ViewManager/ViewManager.py" line="2655"/>
         <source>Stuttered move up one page</source>
         <translation>Déplacement étagé d&apos;une page vers le haut</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2669"/>
+        <location filename="../ViewManager/ViewManager.py" line="2667"/>
         <source>Stuttered extend selection up one page</source>
         <translation>Extension de la sélection étagée d&apos;une page vers le haut</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2682"/>
+        <location filename="../ViewManager/ViewManager.py" line="2680"/>
         <source>Stuttered move down one page</source>
         <translation>Déplacement étagé d&apos;une page vers le bas</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2694"/>
+        <location filename="../ViewManager/ViewManager.py" line="2692"/>
         <source>Stuttered extend selection down one page</source>
         <translation>Extension de la sélection étagée d&apos;une page vers le bas</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2707"/>
+        <location filename="../ViewManager/ViewManager.py" line="2705"/>
         <source>Delete right to end of next word</source>
         <translation>Supprimer jusqu&apos;à la fin du mot à doite</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2715"/>
+        <location filename="../ViewManager/ViewManager.py" line="2713"/>
         <source>Alt+Del</source>
         <translation>Alt+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2722"/>
+        <location filename="../ViewManager/ViewManager.py" line="2720"/>
         <source>Move selected lines up one line</source>
         <translation>Déplacement des lignes sélectionnées d&apos;une ligne vers le haut</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2734"/>
+        <location filename="../ViewManager/ViewManager.py" line="2732"/>
         <source>Move selected lines down one line</source>
         <translation>Déplacement des lignes sélectionnées d&apos;une ligne vers le bas</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2348"/>
+        <location filename="../ViewManager/ViewManager.py" line="2346"/>
         <source>Alt+Shift+PgUp</source>
         <translation>Alt+Shift+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1185"/>
+        <location filename="../ViewManager/ViewManager.py" line="1184"/>
         <source>Toggle Comment</source>
         <translation>Basculer commentaire</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1185"/>
+        <location filename="../ViewManager/ViewManager.py" line="1184"/>
         <source>Ctrl+Shift+M</source>
         <comment>Edit|Toggle Comment</comment>
         <translation>Ctrl+Shift+M</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1193"/>
+        <location filename="../ViewManager/ViewManager.py" line="1192"/>
         <source>Toggle the comment of the current line, selection or comment block</source>
         <translation>Basculer le commentaire de la ligne courante, de la sélection ou du block</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1197"/>
+        <location filename="../ViewManager/ViewManager.py" line="1196"/>
         <source>&lt;b&gt;Toggle Comment&lt;/b&gt;&lt;p&gt;If the current line does not start with a block comment, the current line or selection is commented. If it is already commented, this comment block is uncommented. &lt;/p&gt;</source>
         <translation>&lt;b&gt;Basculer commentaire&lt;/b&gt;&lt;p&gt;Si la ligne courante ne commence pas par un signe de commentaire, la ligne courante ou la séléciton est commentée. Si c&apos;est déjà commentée, ce block de commentaires ne sera plus commenté. &lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3525"/>
         <source>Zoom reset</source>
         <translation>Annulation du zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3525"/>
         <source>Zoom &amp;reset</source>
         <translation>Annulation du &amp;zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3525"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation>Ctrl+0</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3535"/>
+        <location filename="../ViewManager/ViewManager.py" line="3533"/>
         <source>Reset the zoom of the text</source>
         <translation>Annulation du zoom du texte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3537"/>
+        <location filename="../ViewManager/ViewManager.py" line="3535"/>
         <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="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3487"/>
         <source>Zoom In</source>
         <comment>View|Zoom in</comment>
         <translation>Zoom avant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3508"/>
+        <location filename="../ViewManager/ViewManager.py" line="3506"/>
         <source>Zoom Out</source>
         <comment>View|Zoom out</comment>
         <translation>Zoom arrière</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="764"/>
+        <location filename="../ViewManager/ViewManager.py" line="763"/>
         <source>Save a&amp;ll</source>
         <translation>&amp;Tout enregistrer</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4246"/>
+        <source>Next Change</source>
+        <translation>Modification suivante</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4240"/>
+        <source>&amp;Next Change</source>
+        <translation>Modificatio&amp;n suivante</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4248"/>
-        <source>Next Change</source>
-        <translation>Modification suivante</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4242"/>
-        <source>&amp;Next Change</source>
-        <translation>Modificatio&amp;n suivante</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4250"/>
         <source>&lt;b&gt;Next Change&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Modification suivante&lt;/b&gt;&lt;p&gt;Aller à la ligne suivante ayant un marquer de modification sur l&apos;éditeur courant. &lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4264"/>
+        <source>Previous Change</source>
+        <translation>Modification précédente</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4257"/>
+        <source>&amp;Previous Change</source>
+        <translation>Modification &amp;précédente</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4266"/>
-        <source>Previous Change</source>
-        <translation>Modification précédente</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4259"/>
-        <source>&amp;Previous Change</source>
-        <translation>Modification &amp;précédente</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4268"/>
         <source>&lt;b&gt;Previous Change&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Modification précédente &lt;/b&gt;&lt;p&gt;Aller à la ligne précédente ayant un marqueur de modification dans l&apos;éditeur courant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2957"/>
+        <location filename="../ViewManager/ViewManager.py" line="2955"/>
         <source>Search current word forward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2957"/>
+        <location filename="../ViewManager/ViewManager.py" line="2955"/>
         <source>Ctrl+.</source>
         <comment>Search|Search current word forward</comment>
         <translation>Ctrl+.</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2968"/>
+        <location filename="../ViewManager/ViewManager.py" line="2966"/>
         <source>Search next occurrence of the current word</source>
         <translation>Chercher l&apos;occurrence suivante du mot courant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2971"/>
+        <location filename="../ViewManager/ViewManager.py" line="2969"/>
         <source>&lt;b&gt;Search current word forward&lt;/b&gt;&lt;p&gt;Search the next occurrence of the current word of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2980"/>
+        <location filename="../ViewManager/ViewManager.py" line="2978"/>
         <source>Search current word backward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2980"/>
+        <location filename="../ViewManager/ViewManager.py" line="2978"/>
         <source>Ctrl+,</source>
         <comment>Search|Search current word backward</comment>
         <translation>Ctrl+,</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2991"/>
+        <location filename="../ViewManager/ViewManager.py" line="2989"/>
         <source>Search previous occurrence of the current word</source>
         <translation>Chercher l&apos;occurence précédente du mot courant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2994"/>
+        <location filename="../ViewManager/ViewManager.py" line="2992"/>
         <source>&lt;b&gt;Search current word backward&lt;/b&gt;&lt;p&gt;Search the previous occurrence of the current word of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3301"/>
+        <location filename="../ViewManager/ViewManager.py" line="3299"/>
         <source>Search in Open Files</source>
         <translation>Chercher dans les fichiers ouverts</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3301"/>
+        <location filename="../ViewManager/ViewManager.py" line="3299"/>
         <source>Search in Open Files...</source>
         <translation>Chercher dans les fichiers ouverts...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3301"/>
+        <location filename="../ViewManager/ViewManager.py" line="3299"/>
         <source>Meta+Ctrl+Alt+F</source>
         <comment>Search|Search Open Files</comment>
         <translation>Meta+Ctrl+Alt+F</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3310"/>
+        <source>Search for a text in open files</source>
+        <translation>Chercher un texte dans les fichiers ouverts</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3312"/>
-        <source>Search for a text in open files</source>
-        <translation>Chercher un texte dans les fichiers ouverts</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3314"/>
         <source>&lt;b&gt;Search in Open Files&lt;/b&gt;&lt;p&gt;Search for some text in the currently opened files. A dialog is shown to enter the searchtext and options for the search and to display the result.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3324"/>
+        <location filename="../ViewManager/ViewManager.py" line="3322"/>
         <source>Replace in Open Files</source>
         <translation>Remplacer dans les fichiers ouverts</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3324"/>
+        <location filename="../ViewManager/ViewManager.py" line="3322"/>
         <source>Replace in Open Files...</source>
         <translation>Remplacer dans les fichiers ouverts...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3324"/>
+        <location filename="../ViewManager/ViewManager.py" line="3322"/>
         <source>Meta+Ctrl+Alt+R</source>
         <comment>Search|Replace in Open Files</comment>
         <translation>Meta+Ctrl+Alt+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3334"/>
+        <location filename="../ViewManager/ViewManager.py" line="3332"/>
         <source>Search for a text in open files and replace it</source>
         <translation>Chercher un texte dans les fichiers ouverts et le remplacer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3336"/>
+        <location filename="../ViewManager/ViewManager.py" line="3334"/>
         <source>&lt;b&gt;Replace in Open Files&lt;/b&gt;&lt;p&gt;Search for some text in the currently opened files and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and to display the result.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4366"/>
+        <location filename="../ViewManager/ViewManager.py" line="4364"/>
         <source>Check spelling</source>
         <translation>Vérification orthographique</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4366"/>
+        <location filename="../ViewManager/ViewManager.py" line="4364"/>
         <source>Check &amp;spelling...</source>
         <translation>&amp;Vérification orthographique...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4377"/>
+        <location filename="../ViewManager/ViewManager.py" line="4375"/>
         <source>&lt;b&gt;Check spelling&lt;/b&gt;&lt;p&gt;Perform a spell check of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4424"/>
+        <source>Edit Dictionary</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4426"/>
-        <source>Edit Dictionary</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4428"/>
         <source>Project Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4431"/>
+        <location filename="../ViewManager/ViewManager.py" line="4429"/>
         <source>Project Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4436"/>
+        <location filename="../ViewManager/ViewManager.py" line="4434"/>
         <source>User Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4439"/>
+        <location filename="../ViewManager/ViewManager.py" line="4437"/>
         <source>User Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6639"/>
+        <location filename="../ViewManager/ViewManager.py" line="6637"/>
         <source>Edit Spelling Dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6596"/>
+        <location filename="../ViewManager/ViewManager.py" line="6594"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6614"/>
+        <location filename="../ViewManager/ViewManager.py" line="6612"/>
         <source>Editing {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6626"/>
+        <location filename="../ViewManager/ViewManager.py" line="6624"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6639"/>
+        <location filename="../ViewManager/ViewManager.py" line="6637"/>
         <source>The spelling dictionary was saved successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1450"/>
+        <location filename="../ViewManager/ViewManager.py" line="1449"/>
         <source>Sort</source>
         <translation>Trier</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1450"/>
+        <location filename="../ViewManager/ViewManager.py" line="1449"/>
         <source>Ctrl+Alt+S</source>
         <comment>Edit|Sort</comment>
         <translation>Ctrl+Alt+S</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1457"/>
+        <location filename="../ViewManager/ViewManager.py" line="1456"/>
         <source>Sort the lines containing the rectangular selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1460"/>
+        <location filename="../ViewManager/ViewManager.py" line="1459"/>
         <source>&lt;b&gt;Sort&lt;/b&gt;&lt;p&gt;Sort the lines spanned by a rectangular selection based on the selection ignoring leading and trailing whitespace.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4955"/>
+        <location filename="../ViewManager/ViewManager.py" line="4953"/>
         <source>Language: {0}</source>
         <translation>Langage : {0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4962"/>
+        <location filename="../ViewManager/ViewManager.py" line="4960"/>
         <source>EOL Mode: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3643"/>
+        <location filename="../ViewManager/ViewManager.py" line="3641"/>
         <source>New Document View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3643"/>
+        <location filename="../ViewManager/ViewManager.py" line="3641"/>
         <source>New &amp;Document View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3646"/>
+        <source>Open a new view of the current document</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3648"/>
-        <source>Open a new view of the current document</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3650"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3660"/>
+        <location filename="../ViewManager/ViewManager.py" line="3658"/>
         <source>New Document View (with new split)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3667"/>
+        <location filename="../ViewManager/ViewManager.py" line="3665"/>
         <source>Open a new view of the current document in a new split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3670"/>
+        <location filename="../ViewManager/ViewManager.py" line="3668"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document in a new split. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4126"/>
+        <location filename="../ViewManager/ViewManager.py" line="4124"/>
         <source>&lt;b&gt;Next warning message&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4145"/>
+        <location filename="../ViewManager/ViewManager.py" line="4143"/>
         <source>&lt;b&gt;Previous warning message&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4163"/>
+        <location filename="../ViewManager/ViewManager.py" line="4161"/>
         <source>&lt;b&gt;Clear Warning Messages&lt;/b&gt;&lt;p&gt;Clear pyflakes warning messages of all editors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1327"/>
+        <location filename="../ViewManager/ViewManager.py" line="1326"/>
         <source>Ctrl+Space</source>
         <comment>Edit|Complete</comment>
         <translation>Ctrl+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1345"/>
+        <location filename="../ViewManager/ViewManager.py" line="1344"/>
         <source>Ctrl+Shift+Space</source>
         <comment>Edit|Complete from Document</comment>
         <translation>Ctrl+Shift+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1368"/>
+        <location filename="../ViewManager/ViewManager.py" line="1367"/>
         <source>Ctrl+Alt+Space</source>
         <comment>Edit|Complete from APIs</comment>
         <translation>Ctrl+Alt+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1391"/>
+        <location filename="../ViewManager/ViewManager.py" line="1390"/>
         <source>Alt+Shift+Space</source>
         <comment>Edit|Complete from Document and APIs</comment>
         <translation>Alt+Shift+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="748"/>
+        <location filename="../ViewManager/ViewManager.py" line="747"/>
         <source>Save Copy</source>
         <translation>Enregistrer une copie</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="748"/>
+        <location filename="../ViewManager/ViewManager.py" line="747"/>
         <source>Save &amp;Copy...</source>
         <translation>Enregistrer une &amp;copie...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="753"/>
+        <location filename="../ViewManager/ViewManager.py" line="752"/>
         <source>Save a copy of the current file</source>
         <translation>Enregistrer une copie du fichier courant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="755"/>
+        <location filename="../ViewManager/ViewManager.py" line="754"/>
         <source>&lt;b&gt;Save Copy&lt;/b&gt;&lt;p&gt;Save a copy of the contents of current editor window. The file can be entered in a file selection dialog.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Enregistrer une copie&lt;/b&gt;&lt;p&gt;Enregistre une copie du contenu de l&apos;éditeur courant. Le fichier peut être entré dans un sélectionneur de fichiers.&lt;/p&gt;</translation>
     </message>
@@ -84188,141 +84274,141 @@
         <translation>Ctrl+G</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3022"/>
+        <location filename="../ViewManager/ViewManager.py" line="3020"/>
         <source>Replace and Search</source>
         <translation>Remplacer et chercher</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3022"/>
+        <location filename="../ViewManager/ViewManager.py" line="3020"/>
         <source>Meta+R</source>
         <comment>Search|Replace and Search</comment>
         <translation>Meta+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3032"/>
+        <location filename="../ViewManager/ViewManager.py" line="3030"/>
         <source>Replace the found text and search the next occurrence</source>
         <translation>Remplacer le texte trouvé et chercher l&apos;occurrence suivante</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3035"/>
+        <location filename="../ViewManager/ViewManager.py" line="3033"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3046"/>
+        <location filename="../ViewManager/ViewManager.py" line="3044"/>
         <source>Replace Occurrence</source>
         <translation>Remplacer occurrence</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3046"/>
+        <location filename="../ViewManager/ViewManager.py" line="3044"/>
         <source>Ctrl+Meta+R</source>
         <comment>Search|Replace Occurrence</comment>
         <translation>Ctrl+Meta+R</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3054"/>
+        <source>Replace the found text</source>
+        <translation>Remplacer le texte trouvé</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3056"/>
-        <source>Replace the found text</source>
-        <translation>Remplacer le texte trouvé</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3058"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3068"/>
+        <location filename="../ViewManager/ViewManager.py" line="3066"/>
         <source>Replace All</source>
         <translation>Tout remplacer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3068"/>
+        <location filename="../ViewManager/ViewManager.py" line="3066"/>
         <source>Shift+Meta+R</source>
         <comment>Search|Replace All</comment>
         <translation>Shift+Meta+R</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3076"/>
+        <source>Replace search text occurrences</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3078"/>
-        <source>Replace search text occurrences</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3080"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1432"/>
+        <location filename="../ViewManager/ViewManager.py" line="1431"/>
         <source>Code Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1432"/>
+        <location filename="../ViewManager/ViewManager.py" line="1431"/>
         <source>Ctrl+Alt+I</source>
         <comment>Edit|Code Info</comment>
         <translation>Ctrl+Alt+I</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1440"/>
+        <location filename="../ViewManager/ViewManager.py" line="1439"/>
         <source>Show Code Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1442"/>
+        <location filename="../ViewManager/ViewManager.py" line="1441"/>
         <source>&lt;b&gt;Code Info&lt;/b&gt;&lt;p&gt;Show code information based on the cursor position.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3614"/>
+        <source>Clear all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3610"/>
+        <source>Clear &amp;all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3616"/>
-        <source>Clear all folds</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3612"/>
-        <source>Clear &amp;all folds</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3618"/>
         <source>&lt;b&gt;Clear all folds&lt;/b&gt;&lt;p&gt;Clear all folds of the current editor, i.e. ensure that all lines are displayed unfolded.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2150"/>
+        <location filename="../ViewManager/ViewManager.py" line="2148"/>
         <source>Reverse selected lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2150"/>
+        <location filename="../ViewManager/ViewManager.py" line="2148"/>
         <source>Meta+Alt+R</source>
         <translation>Meta+Alt+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3776"/>
+        <location filename="../ViewManager/ViewManager.py" line="3774"/>
         <source>Python AST Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3779"/>
+        <source>Show the AST for the current Python file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3781"/>
-        <source>Show the AST for the current Python file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3783"/>
         <source>&lt;b&gt;Python AST Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the AST of the current Python source file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3793"/>
+        <location filename="../ViewManager/ViewManager.py" line="3791"/>
         <source>Python Disassembly Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3798"/>
+        <source>Show the Disassembly for the current Python file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3800"/>
-        <source>Show the Disassembly for the current Python file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3802"/>
         <source>&lt;b&gt;Python Disassembly Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the Disassembly of the current Python source file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -87218,7 +87304,7 @@
 <context>
     <name>WebBrowserTools</name>
     <message>
-        <location filename="../WebBrowser/Tools/WebBrowserTools.py" line="249"/>
+        <location filename="../WebBrowser/Tools/WebBrowserTools.py" line="251"/>
         <source>&lt;unknown&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -89955,59 +90041,84 @@
 <context>
     <name>YandexEngine</name>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="38"/>
-        <source>Invalid API key.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="39"/>
-        <source>API key has been blocked.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="40"/>
-        <source>Daily limit for requests has been reached.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="41"/>
-        <source>Daily limit for the volume of translated text reached.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="43"/>
         <source>Text size exceeds the maximum.</source>
-        <translation>La taille du texte dépasse la valeur maximale.</translation>
+        <translation type="obsolete">La taille du texte dépasse la valeur maximale.</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="44"/>
         <source>Text could not be translated.</source>
-        <translation>Le texte ne peut être traduit.</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="45"/>
-        <source>The specified translation direction is not supported.</source>
-        <translation type="unfinished"></translation>
+        <translation type="obsolete">Le texte ne peut être traduit.</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="86"/>
         <source>Only texts up to {0} characters are allowed.</source>
-        <translation>Uniquement les textes de moins de {0} caractères autorisés.</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="91"/>
-        <source>A valid Yandex key is required.</source>
-        <translation type="unfinished"></translation>
+        <translation type="obsolete">Uniquement les textes de moins de {0} caractères autorisés.</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="106"/>
         <source>Invalid response received</source>
-        <translation>Réponse invalide reçue</translation>
+        <translation type="obsolete">Réponse invalide reçue</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="112"/>
         <source>Unknown error code ({0}) received.</source>
-        <translation>Code d&apos;erreur reçu inconnu ({0}).</translation>
+        <translation type="obsolete">Code d&apos;erreur reçu inconnu ({0}).</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="38"/>
+        <source>Yandex: Invalid API key.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="39"/>
+        <source>Yandex: API key has been blocked.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="40"/>
+        <source>Yandex: Daily limit for requests has been reached.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="41"/>
+        <source>Yandex: Daily limit for the volume of translated text reached.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="43"/>
+        <source>Yandex: Text size exceeds the maximum.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="44"/>
+        <source>Yandex: Text could not be translated.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="45"/>
+        <source>Yandex: The specified translation direction is not supported.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="86"/>
+        <source>Yandex: Only texts up to {0} characters are allowed.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="109"/>
+        <source>Yandex: Invalid response received</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="115"/>
+        <source>Yandex: Unknown error code ({0}) received.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="94"/>
+        <source>Yandex: A valid key is required.</source>
+        <translation type="unfinished"></translation>
     </message>
 </context>
 <context>
@@ -90444,417 +90555,417 @@
 <context>
     <name>pycodestyle</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="24"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="22"/>
         <source>indentation contains mixed spaces and tabs</source>
         <translation>l&apos;indentation contient un mélange d&apos;espaces et tabulations</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="27"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="25"/>
         <source>indentation is not a multiple of four</source>
         <translation>l&quot;indentation n&apos;est pas un multiple de 4</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="30"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="28"/>
         <source>expected an indented block</source>
         <translation>bloc indenté attendu</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="33"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="31"/>
         <source>unexpected indentation</source>
         <translation>indentation inattendue</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="36"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="34"/>
         <source>indentation is not a multiple of four (comment)</source>
         <translation>l&apos;indentation n&apos;est pas un multiple de quatre (commentaire)</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="39"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="37"/>
         <source>expected an indented block (comment)</source>
         <translation>bloc endenté attendu (commentaire)</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="42"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="40"/>
         <source>unexpected indentation (comment)</source>
         <translation>indentation inattendue (commentaire)</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="48"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="46"/>
         <source>continuation line indentation is not a multiple of four</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="51"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="49"/>
         <source>continuation line missing indentation or outdented</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="54"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="52"/>
         <source>closing bracket does not match indentation of opening bracket&apos;s line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="58"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="56"/>
         <source>closing bracket does not match visual indentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="61"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="59"/>
         <source>continuation line with same indent as next logical line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="64"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="62"/>
         <source>continuation line over-indented for hanging indent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="67"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="65"/>
         <source>continuation line over-indented for visual indent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="70"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="68"/>
         <source>continuation line under-indented for visual indent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="73"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="71"/>
         <source>visually indented line with same indent as next logical line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="76"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="74"/>
         <source>continuation line unaligned for hanging indent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="79"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="77"/>
         <source>closing bracket is missing indentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="82"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="80"/>
         <source>indentation contains tabs</source>
         <translation>l&apos;indentation contient des tabulations</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="85"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="83"/>
         <source>whitespace after &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="94"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="92"/>
         <source>whitespace before &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="97"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="95"/>
         <source>multiple spaces before operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="100"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="98"/>
         <source>multiple spaces after operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="103"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="101"/>
         <source>tab before operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="106"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="104"/>
         <source>tab after operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="109"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="107"/>
         <source>missing whitespace around operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="112"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="110"/>
         <source>missing whitespace around arithmetic operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="115"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="113"/>
         <source>missing whitespace around bitwise or shift operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="118"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="116"/>
         <source>missing whitespace around modulo operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="121"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="119"/>
         <source>missing whitespace after &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="124"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="122"/>
         <source>multiple spaces after &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="127"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="125"/>
         <source>tab after &apos;{0}&apos;</source>
         <translation>tabulation après &apos;{0}&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="130"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="128"/>
         <source>unexpected spaces around keyword / parameter equals</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="136"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="134"/>
         <source>at least two spaces before inline comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="139"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="137"/>
         <source>inline comment should start with &apos;# &apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="142"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="140"/>
         <source>block comment should start with &apos;# &apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="145"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="143"/>
         <source>too many leading &apos;#&apos; for block comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="148"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="146"/>
         <source>multiple spaces after keyword</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="151"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="149"/>
         <source>multiple spaces before keyword</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="154"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="152"/>
         <source>tab after keyword</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="157"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="155"/>
         <source>tab before keyword</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="160"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="158"/>
         <source>missing whitespace after keyword</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="163"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="161"/>
         <source>trailing whitespace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="166"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="164"/>
         <source>no newline at end of file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="169"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="167"/>
         <source>blank line contains whitespace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="194"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="192"/>
         <source>too many blank lines ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="181"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="179"/>
         <source>blank lines found after function decorator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="197"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="195"/>
         <source>blank line at end of file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="200"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="198"/>
         <source>multiple imports on one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="203"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="201"/>
         <source>module level import not at top of file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="206"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="204"/>
         <source>line too long ({0} &gt; {1} characters)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="209"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="207"/>
         <source>the backslash is redundant between brackets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="212"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="210"/>
         <source>line break before binary operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="221"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="219"/>
         <source>.has_key() is deprecated, use &apos;in&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="224"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="222"/>
         <source>deprecated form of raising exception</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="227"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="225"/>
         <source>&apos;&lt;&gt;&apos; is deprecated, use &apos;!=&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="230"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="228"/>
         <source>backticks are deprecated, use &apos;repr()&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="239"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="237"/>
         <source>multiple statements on one line (colon)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="242"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="240"/>
         <source>multiple statements on one line (semicolon)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="245"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="243"/>
         <source>statement ends with a semicolon</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="248"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="246"/>
         <source>multiple statements on one line (def)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="254"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="252"/>
         <source>comparison to {0} should be {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="257"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="255"/>
         <source>test for membership should be &apos;not in&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="260"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="258"/>
         <source>test for object identity should be &apos;is not&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="263"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="261"/>
         <source>do not compare types, use &apos;isinstance()&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="269"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="267"/>
         <source>do not assign a lambda expression, use a def</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="272"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="270"/>
         <source>ambiguous variable name &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="275"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="273"/>
         <source>ambiguous class definition &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="278"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="276"/>
         <source>ambiguous function definition &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="281"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="279"/>
         <source>{0}: {1}</source>
         <translation>{0}: {1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="284"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="282"/>
         <source>{0}</source>
         <translation>{0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="266"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="264"/>
         <source>do not use bare except</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="184"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="182"/>
         <source>expected {0} blank lines after class or function definition, found {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="236"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="234"/>
         <source>&apos;async&apos; and &apos;await&apos; are reserved keywords starting with Python 3.7</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="133"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="131"/>
         <source>missing whitespace around parameter equals</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="175"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="173"/>
         <source>expected {0} blank lines, found {1}</source>
         <translation>{0} lignes vides attendues, {1} trouvées</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="188"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="186"/>
         <source>expected {0} blank lines before a nested definition, found {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="215"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="213"/>
         <source>line break after binary operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="233"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="231"/>
         <source>invalid escape sequence &apos;\{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="191"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="189"/>
         <source>too many blank lines ({0}) before a nested definition, expected {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="178"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="176"/>
         <source>too many blank lines ({0}), expected {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="45"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="43"/>
         <source>over-indented</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="218"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="216"/>
         <source>doc line too long ({0} &gt; {1} characters)</source>
         <translation type="unfinished"></translation>
     </message>
--- a/eric6/i18n/eric6_it.ts	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/i18n/eric6_it.ts	Sun Oct 04 16:28:51 2020 +0200
@@ -1136,72 +1136,72 @@
 <context>
     <name>AnnotationsChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="808"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="806"/>
         <source>missing type annotation for function argument &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="811"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="809"/>
         <source>missing type annotation for &apos;*{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="814"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="812"/>
         <source>missing type annotation for &apos;**{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="823"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="821"/>
         <source>missing return type annotation for public function</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="826"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="824"/>
         <source>missing return type annotation for protected function</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="829"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="827"/>
         <source>missing return type annotation for private function</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="832"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="830"/>
         <source>missing return type annotation for special method</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="835"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="833"/>
         <source>missing return type annotation for staticmethod</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="838"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="836"/>
         <source>missing return type annotation for classmethod</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="850"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="848"/>
         <source>{0}: {1}</source>
         <translation type="unfinished">{0}: {1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="817"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="815"/>
         <source>missing type annotation for &apos;self&apos; in method</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="820"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="818"/>
         <source>missing type annotation for &apos;cls&apos; in classmethod</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="842"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="840"/>
         <source>type annotation coverage of {0}% is too low</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="846"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="844"/>
         <source>type annotation is too complex ({0} &gt; {1})</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3522,7 +3522,7 @@
 <context>
     <name>CodeStyleChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="1130"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="1128"/>
         <source>No message defined for code &apos;{0}&apos;.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -4248,142 +4248,142 @@
 <context>
     <name>CodeStyleFixer</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="858"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="856"/>
         <source>Triple single quotes converted to triple double quotes.</source>
         <translation>Triple virgolette singole convertite in triple virgolette doppie.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="861"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="859"/>
         <source>Introductory quotes corrected to be {0}&quot;&quot;&quot;</source>
         <translation>Virgolette introduttive corrette in {0}&quot;&quot;&quot;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="864"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="862"/>
         <source>Single line docstring put on one line.</source>
         <translation>Singole righe documentazione raggruppate su una sola.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="867"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="865"/>
         <source>Period added to summary line.</source>
         <translation>Aggiunto punto alla riga sommario.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="894"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="892"/>
         <source>Blank line before function/method docstring removed.</source>
         <translation>Riga vuota prima della stringa di documentazione funzione/metodo rimossa.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="873"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="871"/>
         <source>Blank line inserted before class docstring.</source>
         <translation>Riga vuota inserita prima della stringa di documentazione della classe.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="876"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="874"/>
         <source>Blank line inserted after class docstring.</source>
         <translation>Linea vuota inserita dopo la stringa di documentazione della classe.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="879"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="877"/>
         <source>Blank line inserted after docstring summary.</source>
         <translation>Linea vuota inserita dopo la stringa di documentazione del sommario.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="882"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="880"/>
         <source>Blank line inserted after last paragraph of docstring.</source>
         <translation>Linea vuota inserita dopo l&apos;ultimo paragrafo della stringa di documentazione.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="885"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="883"/>
         <source>Leading quotes put on separate line.</source>
         <translation>Le virgolette di testa messe su una riga separata.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="888"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="886"/>
         <source>Trailing quotes put on separate line.</source>
         <translation>Le virgolette di coda messe su una riga separata.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="891"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="889"/>
         <source>Blank line before class docstring removed.</source>
         <translation>Rimossa riga vuota prima della stringa di documentazione.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="897"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="895"/>
         <source>Blank line after class docstring removed.</source>
         <translation>Rimossa riga vuota dopo della stringa di documentazione.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="900"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="898"/>
         <source>Blank line after function/method docstring removed.</source>
         <translation>Riga vuota dopo la stringa di documentazione funzione/metodo rimossa.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="903"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="901"/>
         <source>Blank line after last paragraph removed.</source>
         <translation>Rimossa riga vuota dopo l&apos;ultimo paragrafo.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="906"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="904"/>
         <source>Tab converted to 4 spaces.</source>
         <translation>Convertita Tabulazione in 4 spazi.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="909"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="907"/>
         <source>Indentation adjusted to be a multiple of four.</source>
         <translation>Identazione portata ad un multiplo di quattro.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="912"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="910"/>
         <source>Indentation of continuation line corrected.</source>
         <translation>Identazione di continuazione riga corretta.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="915"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="913"/>
         <source>Indentation of closing bracket corrected.</source>
         <translation>Identazione di parentesi chiusa corretta.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="918"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="916"/>
         <source>Missing indentation of continuation line corrected.</source>
         <translation>Corretta la mancanza di indentazione della continuazione riga.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="921"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="919"/>
         <source>Closing bracket aligned to opening bracket.</source>
         <translation>Parentesi chiusa allineata con quella d&apos;apertura.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="924"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="922"/>
         <source>Indentation level changed.</source>
         <translation>Livello di indentazione modificato.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="927"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="925"/>
         <source>Indentation level of hanging indentation changed.</source>
         <translation>Modificato il livello di indentazione dell&apos;indentazione pendente.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="930"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="928"/>
         <source>Visual indentation corrected.</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="945"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="943"/>
         <source>Extraneous whitespace removed.</source>
         <translation>Spazio non pertinente eliminato.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="942"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="940"/>
         <source>Missing whitespace added.</source>
         <translation>Spazi mancanti aggiunti.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="948"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="946"/>
         <source>Whitespace around comment sign corrected.</source>
         <translation>Corretto spazio vicino al segno di commento.</translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="952"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="950"/>
         <source>%n blank line(s) inserted.</source>
         <translation type="unfinished">
             <numerusform>%n riga vuota inserita.</numerusform>
@@ -4391,7 +4391,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="955"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="953"/>
         <source>%n superfluous lines removed</source>
         <translation type="unfinished">
             <numerusform>%n riga superflua eliminata</numerusform>
@@ -4399,72 +4399,72 @@
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="959"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="957"/>
         <source>Superfluous blank lines removed.</source>
         <translation>Righe vuote superflue eliminate.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="962"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="960"/>
         <source>Superfluous blank lines after function decorator removed.</source>
         <translation>Righe vuote superflue eliminate dopo a dichiarazione della funzione.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="965"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="963"/>
         <source>Imports were put on separate lines.</source>
         <translation>Import messi su righe separate.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="968"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="966"/>
         <source>Long lines have been shortened.</source>
         <translation>Accorciate righe lughe.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="971"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="969"/>
         <source>Redundant backslash in brackets removed.</source>
         <translation>Rimossi barre rovesciate ridondanti.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="977"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="975"/>
         <source>Compound statement corrected.</source>
         <translation>Corretta istruzione composta.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="980"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="978"/>
         <source>Comparison to None/True/False corrected.</source>
         <translation>Corretta comparazione con None/True/False.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="983"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="981"/>
         <source>&apos;{0}&apos; argument added.</source>
         <translation>&apos;{0}&apos; argumento aggiunto.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="986"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="984"/>
         <source>&apos;{0}&apos; argument removed.</source>
         <translation>&apos;{0}&apos; argumento rimosso.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="989"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="987"/>
         <source>Whitespace stripped from end of line.</source>
         <translation>Eliminati gli spazi alla fine della linea.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="992"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="990"/>
         <source>newline added to end of file.</source>
         <translation>Aggiunta una nuova riga alla fine del file.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="995"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="993"/>
         <source>Superfluous trailing blank lines removed from end of file.</source>
         <translation>Rghe vuote superflue eliminate dalla fine del file.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="998"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="996"/>
         <source>&apos;&lt;&gt;&apos; replaced by &apos;!=&apos;.</source>
         <translation>&apos;&lt;&gt;&apos; sostituito da &apos;!=&apos;.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="1002"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="1000"/>
         <source>Could not save the file! Skipping it. Reason: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -4970,22 +4970,22 @@
 <context>
     <name>ComplexityChecker</name>
     <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="477"/>
+        <source>&apos;{0}&apos; is too complex ({1})</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="479"/>
-        <source>&apos;{0}&apos; is too complex ({1})</source>
+        <source>source code line is too complex ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="481"/>
-        <source>source code line is too complex ({0})</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="483"/>
         <source>overall source code line complexity is too high ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="486"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="484"/>
         <source>{0}: {1}</source>
         <translation type="unfinished">{0}: {1}</translation>
     </message>
@@ -8459,30 +8459,30 @@
 <context>
     <name>DeepLEngine</name>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="73"/>
-        <source>Text to be translated exceeds the translation limit of {0} characters.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="95"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="98"/>
         <source>Invalid response received from DeepL</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="98"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="101"/>
         <source>DeepL call returned an unknown result</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="102"/>
-        <source>&lt;p&gt;No translation found&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="79"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="82"/>
         <source>A valid DeepL Pro key is required.</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="73"/>
+        <source>DeepL: Text to be translated exceeds the translation limit of {0} characters.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="105"/>
+        <source>&lt;p&gt;DeepL: No translation found&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>DeleteFilesConfirmationDialog</name>
@@ -8750,37 +8750,37 @@
 <context>
     <name>DocStyleChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="291"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="289"/>
         <source>module is missing a docstring</source>
         <translation>Modulo mancante di docstring</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="293"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="291"/>
         <source>public function/method is missing a docstring</source>
         <translation>Funzione/metodo pubblico mancante di docstring</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="296"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="294"/>
         <source>private function/method may be missing a docstring</source>
         <translation>Funzione/metodo pubblico con possibile mancanza di docstring</translation>
     </message>
     <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="297"/>
+        <source>public class is missing a docstring</source>
+        <translation>Classe pubblica mancante di docstring</translation>
+    </message>
+    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="299"/>
-        <source>public class is missing a docstring</source>
-        <translation>Classe pubblica mancante di docstring</translation>
+        <source>private class may be missing a docstring</source>
+        <translation>Classe privata con possibile mancanza di docstring</translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="301"/>
-        <source>private class may be missing a docstring</source>
-        <translation>Classe privata con possibile mancanza di docstring</translation>
+        <source>docstring not surrounded by &quot;&quot;&quot;</source>
+        <translation>docstring non inserita fra &quot;&quot;&quot;</translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="303"/>
-        <source>docstring not surrounded by &quot;&quot;&quot;</source>
-        <translation>docstring non inserita fra &quot;&quot;&quot;</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="305"/>
         <source>docstring containing \ not surrounded by r&quot;&quot;&quot;</source>
         <translation>docstring contenente \ non inserita fra r&quot;&quot;&quot;</translation>
     </message>
@@ -8790,202 +8790,202 @@
         <translation type="obsolete">docstring contenente carattere unicode non inserito fra u&quot;&quot;&quot;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="308"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="306"/>
         <source>one-liner docstring on multiple lines</source>
         <translation>docstring in linea su righe multiple</translation>
     </message>
     <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="308"/>
+        <source>docstring has wrong indentation</source>
+        <translation>docstring ha un&apos;indentazione errata</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="357"/>
+        <source>docstring summary does not end with a period</source>
+        <translation>docstring sommario non si conclude con un punto</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="314"/>
+        <source>docstring summary is not in imperative mood (Does instead of Do)</source>
+        <translation>docstring sommario non è in modo imperativo (farebbe invece di fa)</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="318"/>
+        <source>docstring summary looks like a function&apos;s/method&apos;s signature</source>
+        <translation>docstring sommario sembra una firma di funzione/metodo</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="321"/>
+        <source>docstring does not mention the return value type</source>
+        <translation>docstring non indica il tipo di valore di ritorno</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="324"/>
+        <source>function/method docstring is separated by a blank line</source>
+        <translation>docstring funzione/metodo è separato da una riga vuota</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="327"/>
+        <source>class docstring is not preceded by a blank line</source>
+        <translation>docstring della classe non è preceduta da una riga vuota</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="330"/>
+        <source>class docstring is not followed by a blank line</source>
+        <translation>docstring della classe non è seguita da una riga vuota</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="391"/>
+        <source>docstring summary is not followed by a blank line</source>
+        <translation>docstring sommario non è seguito da una riga vuota</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="336"/>
+        <source>last paragraph of docstring is not followed by a blank line</source>
+        <translation>L&apos;ultimo paragrafo della docstring non è seguito da una riga vuota</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="344"/>
+        <source>private function/method is missing a docstring</source>
+        <translation>Funzione/metodo privato mancante di docstring</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="347"/>
+        <source>private class is missing a docstring</source>
+        <translation>Classe privata mancante di docstring</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="351"/>
+        <source>leading quotes of docstring not on separate line</source>
+        <translation>Virgolette iniziali della docstring non sono su riga separata</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="354"/>
+        <source>trailing quotes of docstring not on separate line</source>
+        <translation>Virgolette finali della docstring non sono su riga separata</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="361"/>
+        <source>docstring does not contain a @return line but function/method returns something</source>
+        <translation>docstring non contiene una riga @return ma la funzione/metodo ritorna dei valori</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="365"/>
+        <source>docstring contains a @return line but function/method doesn&apos;t return anything</source>
+        <translation>docstring contiene una riga @return ma la funzione/metodo non ritorna dei valori</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="369"/>
+        <source>docstring does not contain enough @param/@keyparam lines</source>
+        <translation>docstring non contiene sufficienti righe @param/@keyparam</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="372"/>
+        <source>docstring contains too many @param/@keyparam lines</source>
+        <translation>docstring contiene troppe righe @param/@keyparam</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="375"/>
+        <source>keyword only arguments must be documented with @keyparam lines</source>
+        <translation>Argomenti con una sola parola-chiave devono essere documentati con righe @keyparam</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="378"/>
+        <source>order of @param/@keyparam lines does not match the function/method signature</source>
+        <translation>La sequenza di righe @param/@keyparam non si raccorda con le definizioni funzione/metodo</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="381"/>
+        <source>class docstring is preceded by a blank line</source>
+        <translation>docstring della classe è preceduta da una riga vuota</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="383"/>
+        <source>class docstring is followed by a blank line</source>
+        <translation>docstring della classe è seguita da una riga vuota</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="385"/>
+        <source>function/method docstring is preceded by a blank line</source>
+        <translation>docstring funzione/metodo è preceduto da una riga vuota</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="388"/>
+        <source>function/method docstring is followed by a blank line</source>
+        <translation>docstring funzione/metodo è seguito da una riga vuota</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="394"/>
+        <source>last paragraph of docstring is followed by a blank line</source>
+        <translation>L&apos;ultimo paragrafo della docstring è seguito da una riga vuota</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="397"/>
+        <source>docstring does not contain a @exception line but function/method raises an exception</source>
+        <translation>docstring non contiene una riga @exception ma la funzione/metodo causa un&apos;eccezione</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="401"/>
+        <source>docstring contains a @exception line but function/method doesn&apos;t raise an exception</source>
+        <translation>docstring contiene una riga @return ma la funzione/metodo non causa un&apos;eccezione</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="424"/>
+        <source>{0}: {1}</source>
+        <translation>{0}: {1}</translation>
+    </message>
+    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="310"/>
-        <source>docstring has wrong indentation</source>
-        <translation>docstring ha un&apos;indentazione errata</translation>
+        <source>docstring does not contain a summary</source>
+        <translation>docstring non contiene un sommario</translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="359"/>
-        <source>docstring summary does not end with a period</source>
-        <translation>docstring sommario non si conclude con un punto</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="316"/>
-        <source>docstring summary is not in imperative mood (Does instead of Do)</source>
-        <translation>docstring sommario non è in modo imperativo (farebbe invece di fa)</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="320"/>
-        <source>docstring summary looks like a function&apos;s/method&apos;s signature</source>
-        <translation>docstring sommario sembra una firma di funzione/metodo</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="323"/>
-        <source>docstring does not mention the return value type</source>
-        <translation>docstring non indica il tipo di valore di ritorno</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="326"/>
-        <source>function/method docstring is separated by a blank line</source>
-        <translation>docstring funzione/metodo è separato da una riga vuota</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="329"/>
-        <source>class docstring is not preceded by a blank line</source>
-        <translation>docstring della classe non è preceduta da una riga vuota</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="332"/>
-        <source>class docstring is not followed by a blank line</source>
-        <translation>docstring della classe non è seguita da una riga vuota</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="393"/>
-        <source>docstring summary is not followed by a blank line</source>
-        <translation>docstring sommario non è seguito da una riga vuota</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="338"/>
-        <source>last paragraph of docstring is not followed by a blank line</source>
-        <translation>L&apos;ultimo paragrafo della docstring non è seguito da una riga vuota</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="346"/>
-        <source>private function/method is missing a docstring</source>
-        <translation>Funzione/metodo privato mancante di docstring</translation>
+        <source>docstring summary does not start with &apos;{0}&apos;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="405"/>
+        <source>raised exception &apos;{0}&apos; is not documented in docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="408"/>
+        <source>documented exception &apos;{0}&apos; is not raised</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="411"/>
+        <source>docstring does not contain a @signal line but class defines signals</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="414"/>
+        <source>docstring contains a @signal line but class doesn&apos;t define signals</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="417"/>
+        <source>defined signal &apos;{0}&apos; is not documented in docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="420"/>
+        <source>documented signal &apos;{0}&apos; is not defined</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="349"/>
-        <source>private class is missing a docstring</source>
-        <translation>Classe privata mancante di docstring</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="353"/>
-        <source>leading quotes of docstring not on separate line</source>
-        <translation>Virgolette iniziali della docstring non sono su riga separata</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="356"/>
-        <source>trailing quotes of docstring not on separate line</source>
-        <translation>Virgolette finali della docstring non sono su riga separata</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="363"/>
-        <source>docstring does not contain a @return line but function/method returns something</source>
-        <translation>docstring non contiene una riga @return ma la funzione/metodo ritorna dei valori</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="367"/>
-        <source>docstring contains a @return line but function/method doesn&apos;t return anything</source>
-        <translation>docstring contiene una riga @return ma la funzione/metodo non ritorna dei valori</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="371"/>
-        <source>docstring does not contain enough @param/@keyparam lines</source>
-        <translation>docstring non contiene sufficienti righe @param/@keyparam</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="374"/>
-        <source>docstring contains too many @param/@keyparam lines</source>
-        <translation>docstring contiene troppe righe @param/@keyparam</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="377"/>
-        <source>keyword only arguments must be documented with @keyparam lines</source>
-        <translation>Argomenti con una sola parola-chiave devono essere documentati con righe @keyparam</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="380"/>
-        <source>order of @param/@keyparam lines does not match the function/method signature</source>
-        <translation>La sequenza di righe @param/@keyparam non si raccorda con le definizioni funzione/metodo</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="383"/>
-        <source>class docstring is preceded by a blank line</source>
-        <translation>docstring della classe è preceduta da una riga vuota</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="385"/>
-        <source>class docstring is followed by a blank line</source>
-        <translation>docstring della classe è seguita da una riga vuota</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="387"/>
-        <source>function/method docstring is preceded by a blank line</source>
-        <translation>docstring funzione/metodo è preceduto da una riga vuota</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="390"/>
-        <source>function/method docstring is followed by a blank line</source>
-        <translation>docstring funzione/metodo è seguito da una riga vuota</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="396"/>
-        <source>last paragraph of docstring is followed by a blank line</source>
-        <translation>L&apos;ultimo paragrafo della docstring è seguito da una riga vuota</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="399"/>
-        <source>docstring does not contain a @exception line but function/method raises an exception</source>
-        <translation>docstring non contiene una riga @exception ma la funzione/metodo causa un&apos;eccezione</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="403"/>
-        <source>docstring contains a @exception line but function/method doesn&apos;t raise an exception</source>
-        <translation>docstring contiene una riga @return ma la funzione/metodo non causa un&apos;eccezione</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="426"/>
-        <source>{0}: {1}</source>
-        <translation>{0}: {1}</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="312"/>
-        <source>docstring does not contain a summary</source>
-        <translation>docstring non contiene un sommario</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="361"/>
-        <source>docstring summary does not start with &apos;{0}&apos;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="407"/>
-        <source>raised exception &apos;{0}&apos; is not documented in docstring</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="410"/>
-        <source>documented exception &apos;{0}&apos; is not raised</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="413"/>
-        <source>docstring does not contain a @signal line but class defines signals</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="416"/>
-        <source>docstring contains a @signal line but class doesn&apos;t define signals</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="419"/>
-        <source>defined signal &apos;{0}&apos; is not documented in docstring</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="422"/>
-        <source>documented signal &apos;{0}&apos; is not defined</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="351"/>
         <source>class docstring is still a default string</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="344"/>
-        <source>function docstring is still a default string</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="342"/>
+        <source>function docstring is still a default string</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="340"/>
         <source>module docstring is still a default string</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11569,7 +11569,7 @@
         <translation>Modifica Breakpoint...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5605"/>
+        <location filename="../QScintilla/Editor.py" line="5604"/>
         <source>Enable breakpoint</source>
         <translation>Abilita breakpoint</translation>
     </message>
@@ -11634,97 +11634,97 @@
         <translation>File modificato</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4767"/>
+        <location filename="../QScintilla/Editor.py" line="4766"/>
         <source>Autocompletion</source>
         <translation>Autocompletamento</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4767"/>
+        <location filename="../QScintilla/Editor.py" line="4766"/>
         <source>Autocompletion is not available because there is no autocompletion source set.</source>
         <translation>L&apos;autocomplentamento non è disponibile perchè non ci sono fonti impostate.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5608"/>
+        <location filename="../QScintilla/Editor.py" line="5607"/>
         <source>Disable breakpoint</source>
         <translation>Disabilita breakpoint</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5983"/>
+        <location filename="../QScintilla/Editor.py" line="5982"/>
         <source>Code Coverage</source>
         <translation>Analisi codice</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5983"/>
+        <location filename="../QScintilla/Editor.py" line="5982"/>
         <source>Please select a coverage file</source>
         <translation>Per favore seleziona un file per l&apos;analisi</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6163"/>
+        <location filename="../QScintilla/Editor.py" line="6162"/>
         <source>Profile Data</source>
         <translation>Profilazione dati</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6163"/>
+        <location filename="../QScintilla/Editor.py" line="6162"/>
         <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="6714"/>
+        <location filename="../QScintilla/Editor.py" line="6713"/>
         <source>Macro Name</source>
         <translation>Nome Macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6714"/>
+        <location filename="../QScintilla/Editor.py" line="6713"/>
         <source>Select a macro name:</source>
         <translation>Seleziona un nome per la macro:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6785"/>
+        <location filename="../QScintilla/Editor.py" line="6784"/>
         <source>Macro files (*.macro)</source>
         <translation>File Macro (*.macro)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6742"/>
+        <location filename="../QScintilla/Editor.py" line="6741"/>
         <source>Load macro file</source>
         <translation>Carica un file di macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6765"/>
+        <location filename="../QScintilla/Editor.py" line="6764"/>
         <source>Error loading macro</source>
         <translation>Errore nel caricamento della macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6785"/>
+        <location filename="../QScintilla/Editor.py" line="6784"/>
         <source>Save macro file</source>
         <translation>Salva un file di macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6802"/>
+        <location filename="../QScintilla/Editor.py" line="6801"/>
         <source>Save macro</source>
         <translation>Salva macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6818"/>
+        <location filename="../QScintilla/Editor.py" line="6817"/>
         <source>Error saving macro</source>
         <translation>Errore nel salvataggio della macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6831"/>
+        <location filename="../QScintilla/Editor.py" line="6830"/>
         <source>Start Macro Recording</source>
         <translation>Avvia registrazione della macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6857"/>
+        <location filename="../QScintilla/Editor.py" line="6856"/>
         <source>Macro Recording</source>
         <translation>Registrazione Macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6857"/>
+        <location filename="../QScintilla/Editor.py" line="6856"/>
         <source>Enter name of the macro:</source>
         <translation>Inserisci un nome per la macro:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6997"/>
+        <location filename="../QScintilla/Editor.py" line="6996"/>
         <source>File changed</source>
         <translation>File modificato</translation>
     </message>
@@ -11744,7 +11744,7 @@
         <translation>Elimina errori di sintassi</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7308"/>
+        <location filename="../QScintilla/Editor.py" line="7307"/>
         <source>Drop Error</source>
         <translation>Errore Drop</translation>
     </message>
@@ -11754,12 +11754,12 @@
         <translation>Mostra i messaggi degli errori di sintassi</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6325"/>
+        <location filename="../QScintilla/Editor.py" line="6324"/>
         <source>Syntax Error</source>
         <translation>Errore di sintassi</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6325"/>
+        <location filename="../QScintilla/Editor.py" line="6324"/>
         <source>No syntax error message available.</source>
         <translation>Nessun messaggio degli errori di sintassi disponibile.</translation>
     </message>
@@ -11789,17 +11789,17 @@
         <translation>File non analizzato precedente</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6046"/>
+        <location filename="../QScintilla/Editor.py" line="6045"/>
         <source>Show Code Coverage Annotations</source>
         <translation>Mostra le annotazioni dell&apos;analisi del codice</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6039"/>
+        <location filename="../QScintilla/Editor.py" line="6038"/>
         <source>All lines have been covered.</source>
         <translation>Tutte le linee sono state analizzate.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6046"/>
+        <location filename="../QScintilla/Editor.py" line="6045"/>
         <source>There is no coverage file available.</source>
         <translation>Non ci sono file di analisi disponibili.</translation>
     </message>
@@ -11834,72 +11834,72 @@
         <translation>Nessun linguaggio</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7329"/>
+        <location filename="../QScintilla/Editor.py" line="7328"/>
         <source>Resources</source>
         <translation>Risorse</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7331"/>
+        <location filename="../QScintilla/Editor.py" line="7330"/>
         <source>Add file...</source>
         <translation>Aggiungi file...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7333"/>
+        <location filename="../QScintilla/Editor.py" line="7332"/>
         <source>Add files...</source>
         <translation>Aggiungi files...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7335"/>
+        <location filename="../QScintilla/Editor.py" line="7334"/>
         <source>Add aliased file...</source>
         <translation>Aggiungi file sinonimo...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7338"/>
+        <location filename="../QScintilla/Editor.py" line="7337"/>
         <source>Add localized resource...</source>
         <translation>Aggiungi una risorsa localizzata...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7361"/>
+        <location filename="../QScintilla/Editor.py" line="7360"/>
         <source>Add file resource</source>
         <translation>Aggiungi un file risorse</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7377"/>
+        <location filename="../QScintilla/Editor.py" line="7376"/>
         <source>Add file resources</source>
         <translation>Aggiundi dei file risorse</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7404"/>
+        <location filename="../QScintilla/Editor.py" line="7403"/>
         <source>Add aliased file resource</source>
         <translation>Aggiungi file sinonimo delle risorse</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7470"/>
+        <location filename="../QScintilla/Editor.py" line="7469"/>
         <source>Package Diagram</source>
         <translation>Diagrammi del package</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7470"/>
+        <location filename="../QScintilla/Editor.py" line="7469"/>
         <source>Include class attributes?</source>
         <translation>Includi gli attributi della classe ?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7506"/>
+        <location filename="../QScintilla/Editor.py" line="7505"/>
         <source>Application Diagram</source>
         <translation>Diagrammi dell&apos;applicazione</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7506"/>
+        <location filename="../QScintilla/Editor.py" line="7505"/>
         <source>Include module names?</source>
         <translation>Includi i nomi dei moduli ?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7342"/>
+        <location filename="../QScintilla/Editor.py" line="7341"/>
         <source>Add resource frame</source>
         <translation>Aggiungi riquadro delle risorse</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6831"/>
+        <location filename="../QScintilla/Editor.py" line="6830"/>
         <source>Macro recording is already active. Start new?</source>
         <translation>Registrazione macro già attiva. Avvia nuovamente ?</translation>
     </message>
@@ -11944,12 +11944,12 @@
         <translation>Nessun formato di export impostato. Annullamento...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7492"/>
+        <location filename="../QScintilla/Editor.py" line="7491"/>
         <source>Imports Diagram</source>
         <translation>Importa diagrammi</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7492"/>
+        <location filename="../QScintilla/Editor.py" line="7491"/>
         <source>Include imports from external modules?</source>
         <translation>Includi gli import dai moduli esterni ?</translation>
     </message>
@@ -12019,7 +12019,7 @@
         <translation>Selezione l&apos;analizzatore lessicale di Pygments da applicare.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7835"/>
+        <location filename="../QScintilla/Editor.py" line="7834"/>
         <source>Check spelling...</source>
         <translation>Controllo sillabazione...</translation>
     </message>
@@ -12029,12 +12029,12 @@
         <translation>Controllo sillabazione della selezione...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7838"/>
+        <location filename="../QScintilla/Editor.py" line="7837"/>
         <source>Add to dictionary</source>
         <translation>Aggiungi al dizionario</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7840"/>
+        <location filename="../QScintilla/Editor.py" line="7839"/>
         <source>Ignore All</source>
         <translation>Ignora tutto</translation>
     </message>
@@ -12074,32 +12074,32 @@
         <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="6756"/>
+        <location filename="../QScintilla/Editor.py" line="6755"/>
         <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="6765"/>
+        <location filename="../QScintilla/Editor.py" line="6764"/>
         <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="6818"/>
+        <location filename="../QScintilla/Editor.py" line="6817"/>
         <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="7167"/>
+        <location filename="../QScintilla/Editor.py" line="7166"/>
         <source>{0} (ro)</source>
         <translation>{0} (ro)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7308"/>
+        <location filename="../QScintilla/Editor.py" line="7307"/>
         <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="7404"/>
+        <location filename="../QScintilla/Editor.py" line="7403"/>
         <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>
@@ -12129,22 +12129,22 @@
         <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="6802"/>
+        <location filename="../QScintilla/Editor.py" line="6801"/>
         <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="6602"/>
+        <location filename="../QScintilla/Editor.py" line="6601"/>
         <source>Warning: {0}</source>
         <translation>Attenzione: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6609"/>
+        <location filename="../QScintilla/Editor.py" line="6608"/>
         <source>Error: {0}</source>
         <translation>Errore: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6993"/>
+        <location filename="../QScintilla/Editor.py" line="6992"/>
         <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>
@@ -12169,27 +12169,27 @@
         <translation>Modifica precedente</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8256"/>
+        <location filename="../QScintilla/Editor.py" line="8255"/>
         <source>Sort Lines</source>
         <translation>Righe ordinate</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8256"/>
+        <location filename="../QScintilla/Editor.py" line="8255"/>
         <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="6537"/>
+        <location filename="../QScintilla/Editor.py" line="6536"/>
         <source>Warning</source>
         <translation>Attenzione</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6537"/>
+        <location filename="../QScintilla/Editor.py" line="6536"/>
         <source>No warning messages available.</source>
         <translation>Nessun messaggio di attenzione disponibile.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6599"/>
+        <location filename="../QScintilla/Editor.py" line="6598"/>
         <source>Style: {0}</source>
         <translation>Stile: {0}</translation>
     </message>
@@ -12214,7 +12214,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6987"/>
+        <location filename="../QScintilla/Editor.py" line="6986"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric6. Reread it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; è stato modificato mentre era aperto in eric6. Rileggerlo ?&lt;/p&gt;</translation>
     </message>
@@ -12229,32 +12229,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4897"/>
+        <location filename="../QScintilla/Editor.py" line="4896"/>
         <source>Auto-Completion Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4897"/>
+        <location filename="../QScintilla/Editor.py" line="4896"/>
         <source>The completion list provider &apos;{0}&apos; was already registered. Ignoring duplicate request.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5176"/>
+        <location filename="../QScintilla/Editor.py" line="5175"/>
         <source>Call-Tips Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5176"/>
+        <location filename="../QScintilla/Editor.py" line="5175"/>
         <source>The call-tips provider &apos;{0}&apos; was already registered. Ignoring duplicate request.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8345"/>
+        <location filename="../QScintilla/Editor.py" line="8344"/>
         <source>Register Mouse Click Handler</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8345"/>
+        <location filename="../QScintilla/Editor.py" line="8344"/>
         <source>A mouse click handler for &quot;{0}&quot; was already registered by &quot;{1}&quot;. Aborting request by &quot;{2}&quot;...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -12284,12 +12284,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8466"/>
+        <location filename="../QScintilla/Editor.py" line="8465"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8466"/>
+        <location filename="../QScintilla/Editor.py" line="8465"/>
         <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"></translation>
     </message>
@@ -14109,27 +14109,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="681"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="685"/>
         <source>Delete Sub-Style</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="681"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="685"/>
         <source>&lt;p&gt;Shall the sub-style &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="721"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="725"/>
         <source>{0} - Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="749"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="753"/>
         <source>Reset Sub-Styles to Default</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="749"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="753"/>
         <source>&lt;p&gt;Do you really want to reset all defined sub-styles of &lt;b&gt;{0}&lt;/b&gt; to the default values?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -18070,7 +18070,7 @@
 <context>
     <name>EricdocPlugin</name>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="102"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="81"/>
         <source>Qt Help Tools</source>
         <translation>Strumenti di aiuto QT </translation>
     </message>
@@ -18080,22 +18080,22 @@
         <translation type="unfinished">Generatore di documentazione di Eric6</translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="145"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="124"/>
         <source>Generate documentation (eric6_doc)</source>
         <translation type="unfinished">Genera documentazione (eric6_doc)</translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="145"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="124"/>
         <source>Generate &amp;documentation (eric6_doc)</source>
         <translation type="unfinished">Genera &amp;documentazione (eric6_doc)</translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="149"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="128"/>
         <source>Generate API documentation using eric6_doc</source>
         <translation type="unfinished">Genera la documentazione delle API usando eric6_doc</translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="151"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="130"/>
         <source>&lt;b&gt;Generate documentation&lt;/b&gt;&lt;p&gt;Generate API documentation using eric6_doc.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Genera documentazione&lt;/b&gt;&lt;p&gt;Genera la documentazione delle API usando eric6_doc.&lt;/p&gt;</translation>
     </message>
@@ -27057,27 +27057,27 @@
 <context>
     <name>Globals</name>
     <message>
-        <location filename="../Globals/__init__.py" line="452"/>
+        <location filename="../Globals/__init__.py" line="421"/>
         <source>{0:4.2f} Bytes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Globals/__init__.py" line="456"/>
+        <location filename="../Globals/__init__.py" line="425"/>
         <source>{0:4.2f} KiB</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Globals/__init__.py" line="460"/>
+        <location filename="../Globals/__init__.py" line="429"/>
         <source>{0:4.2f} MiB</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Globals/__init__.py" line="464"/>
+        <location filename="../Globals/__init__.py" line="433"/>
         <source>{0:4.2f} GiB</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Globals/__init__.py" line="468"/>
+        <location filename="../Globals/__init__.py" line="437"/>
         <source>{0:4.2f} TiB</source>
         <translation type="unfinished"></translation>
     </message>
@@ -27086,12 +27086,12 @@
     <name>GlosbeEngine</name>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GlosbeEngine.py" line="85"/>
-        <source>Invalid response received</source>
+        <source>Glosbe: Invalid response received</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GlosbeEngine.py" line="99"/>
-        <source>No translation found.</source>
+        <source>Glosbe: No translation found.</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -27099,17 +27099,17 @@
     <name>GoogleV1Engine</name>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV1Engine.py" line="98"/>
-        <source>Invalid response received</source>
+        <source>Google V1: Invalid response received</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV1Engine.py" line="135"/>
-        <source>No translation found.</source>
+        <source>Google V1: No translation found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV1Engine.py" line="165"/>
-        <source>Only texts up to {0} characters are allowed.</source>
+        <source>Google V1: Only texts up to {0} characters are allowed.</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -27117,17 +27117,17 @@
     <name>GoogleV2Engine</name>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="72"/>
-        <source>A valid Google Translate key is required.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="83"/>
-        <source>Invalid response received</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="89"/>
-        <source>No translation available.</source>
+        <source>Google V2: A valid Google Translate key is required.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="84"/>
+        <source>Google V2: Invalid response received</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="90"/>
+        <source>Google V2: No translation available.</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -40638,34 +40638,34 @@
 <context>
     <name>IbmWatsonEngine</name>
     <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
+        <source>Error Getting Available Translations</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
+        <source>IBM Watson: No translation available.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="183"/>
-        <source>A valid IBM Watson Language Translator key is required.</source>
+        <source>IBM Watson: A valid Language Translator key is required.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="192"/>
-        <source>A valid IBM Watson Language Translator URL is required.</source>
+        <source>IBM Watson: A valid Language Translator URL is required.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="244"/>
-        <source>Invalid response received</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
-        <source>No translation available.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
-        <source>Error Getting Available Translations</source>
+        <source>IBM Watson: Invalid response received</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="232"/>
-        <source>The server sent an error indication.
-Error: {0}</source>
+        <source>IBM Watson: The server sent an error indication.
+ Error: {0}</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -46521,467 +46521,467 @@
 <context>
     <name>Lexers</name>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="86"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="84"/>
         <source>Bash</source>
         <translation>Bash</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="86"/>
+        <source>Batch</source>
+        <translation>Batch</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="88"/>
-        <source>Batch</source>
-        <translation>Batch</translation>
+        <source>C/C++</source>
+        <translation>C/C++</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="90"/>
-        <source>C/C++</source>
-        <translation>C/C++</translation>
+        <source>C#</source>
+        <translation>C#</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="92"/>
-        <source>C#</source>
-        <translation>C#</translation>
+        <source>CMake</source>
+        <translation>CMake</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="94"/>
-        <source>CMake</source>
-        <translation>CMake</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="96"/>
         <source>CSS</source>
         <translation>CSS</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="98"/>
+        <source>D</source>
+        <translation>D</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="100"/>
-        <source>D</source>
-        <translation>D</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="102"/>
         <source>Diff</source>
         <translation>Diff</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="106"/>
+        <source>HTML/PHP/XML</source>
+        <translation>HTML/PHP/XML</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="108"/>
-        <source>HTML/PHP/XML</source>
-        <translation>HTML/PHP/XML</translation>
+        <source>IDL</source>
+        <translation>IDL</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="110"/>
-        <source>IDL</source>
-        <translation>IDL</translation>
+        <source>Java</source>
+        <translation>Java</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="112"/>
-        <source>Java</source>
-        <translation>Java</translation>
+        <source>JavaScript</source>
+        <translation>JavaScript</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="114"/>
-        <source>JavaScript</source>
-        <translation>JavaScript</translation>
+        <source>Lua</source>
+        <translation>Lua</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="116"/>
-        <source>Lua</source>
-        <translation>Lua</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="118"/>
         <source>Makefile</source>
         <translation>Makefile</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="126"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="124"/>
         <source>Perl</source>
         <translation>Perl</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="128"/>
+        <source>Povray</source>
+        <translation>Povray</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="130"/>
-        <source>Povray</source>
-        <translation>Povray</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="132"/>
         <source>Properties</source>
         <translation>Proprietà</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="141"/>
+        <source>Ruby</source>
+        <translation>Ruby</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="143"/>
-        <source>Ruby</source>
-        <translation>Ruby</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="145"/>
         <source>SQL</source>
         <translation>SQL</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="147"/>
+        <source>TeX</source>
+        <translation>TeX</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="149"/>
-        <source>TeX</source>
-        <translation>TeX</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="151"/>
         <source>VHDL</source>
         <translation>VHDL</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="575"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="562"/>
         <source>Quixote Template Files (*.ptl)</source>
         <translation>File template Quixote</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="578"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="565"/>
         <source>Ruby Files (*.rb)</source>
         <translation>File Ruby (*.rb)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="581"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="568"/>
         <source>IDL Files (*.idl)</source>
         <translation>File IDL (*.idl)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="408"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="398"/>
         <source>C Files (*.h *.c)</source>
         <translation>File C (*.h *.c)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="411"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="401"/>
         <source>C++ Files (*.h *.hpp *.hh *.cxx *.cpp *.cc)</source>
         <translation>File C++ (*.h *.hpp *.hh *.cxx *.cpp *.cc)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="596"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="583"/>
         <source>C# Files (*.cs)</source>
         <translation>File C# (*.cs)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="417"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="407"/>
         <source>HTML Files (*.html *.htm *.asp *.shtml)</source>
         <translation>File HTML (*.html *.htm *.asp *.shtml)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="608"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="595"/>
         <source>CSS Files (*.css)</source>
         <translation>File CSS (*.css)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="611"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="598"/>
         <source>QSS Files (*.qss)</source>
         <translation>File QSS (*.qss)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="426"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="416"/>
         <source>PHP Files (*.php *.php3 *.php4 *.php5 *.phtml)</source>
         <translation>File PHP (*.php *.php3 *.php4 *.php5 *.phtml)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="623"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="610"/>
         <source>Qt Resource Files (*.qrc)</source>
         <translation>File Risorse Qt (*.qrc)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="435"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="425"/>
         <source>D Files (*.d *.di)</source>
         <translation>File D (*.d *.di)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="632"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="619"/>
         <source>Java Files (*.java)</source>
         <translation>File Java (*.java)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="635"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="622"/>
         <source>JavaScript Files (*.js)</source>
         <translation>File JavaScript (*.js)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="638"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="625"/>
         <source>SQL Files (*.sql)</source>
         <translation>File SQL (*.sql)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="641"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="628"/>
         <source>Docbook Files (*.docbook)</source>
         <translation>File Docbook (*.docbook)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="450"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="440"/>
         <source>Perl Files (*.pl *.pm *.ph)</source>
         <translation>File Perl (*.pl *.pm *.ph)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="650"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="637"/>
         <source>Lua Files (*.lua)</source>
         <translation>File Lua (*.lua)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="456"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="446"/>
         <source>Tex Files (*.tex *.sty *.aux *.toc *.idx)</source>
         <translation>File TeX (*.tex *.sty *.aux *.toc *.idx)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="653"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="640"/>
         <source>Shell Files (*.sh)</source>
         <translation>File Shell (*.sh)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="462"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="452"/>
         <source>Batch Files (*.bat *.cmd)</source>
         <translation>File Batch (*.bat *.cmd)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="465"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="455"/>
         <source>Diff Files (*.diff *.patch)</source>
         <translation>File Diff (*.diff *.patch)</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="458"/>
+        <source>Makefiles (*makefile Makefile *.mak)</source>
+        <translation type="unfinished">Makefile (*,mak)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="461"/>
+        <source>Properties Files (*.properties *.ini *.inf *.reg *.cfg *.cnf *.rc)</source>
+        <translation>File proprietà (*.properties *.ini *.inf *.reg *.cfg *.cnf *.rc)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="664"/>
+        <source>Povray Files (*.pov)</source>
+        <translation>File Povray (*.pov)</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="468"/>
-        <source>Makefiles (*makefile Makefile *.mak)</source>
-        <translation type="unfinished">Makefile (*,mak)</translation>
+        <source>CMake Files (CMakeLists.txt *.cmake *.ctest)</source>
+        <translation>File CMake (CMakeLists.txt *.cmake *.ctest)</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="471"/>
-        <source>Properties Files (*.properties *.ini *.inf *.reg *.cfg *.cnf *.rc)</source>
-        <translation>File proprietà (*.properties *.ini *.inf *.reg *.cfg *.cnf *.rc)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="677"/>
-        <source>Povray Files (*.pov)</source>
-        <translation>File Povray (*.pov)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="478"/>
-        <source>CMake Files (CMakeLists.txt *.cmake *.ctest)</source>
-        <translation>File CMake (CMakeLists.txt *.cmake *.ctest)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="481"/>
         <source>VHDL Files (*.vhd *.vhdl)</source>
         <translation>File VHDL (*.vhd *.vhdl)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="746"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="730"/>
         <source>All Files (*)</source>
         <translation>Tutti i file (*)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="147"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="145"/>
         <source>TCL</source>
         <translation>TCL</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="484"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="474"/>
         <source>TCL/Tk Files (*.tcl *.tk)</source>
         <translation>File TCL/Tk (*.tcl *.tk)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="587"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="574"/>
         <source>C Files (*.c)</source>
         <translation>File C (*.c)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="590"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="577"/>
         <source>C++ Files (*.cpp)</source>
         <translation>File C++ (*.cpp)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="593"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="580"/>
         <source>C++/C Header Files (*.h)</source>
         <translation>File Header C/C++ (*.h)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="599"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="586"/>
         <source>HTML Files (*.html)</source>
         <translation>File HTML (*.html)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="602"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="589"/>
         <source>PHP Files (*.php)</source>
         <translation>File PHP (*.php)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="605"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="592"/>
         <source>ASP Files (*.asp)</source>
         <translation>File ASP (*.asp)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="614"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="601"/>
         <source>XML Files (*.xml)</source>
         <translation>File XML (*.xml)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="617"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="604"/>
         <source>XSL Files (*.xsl)</source>
         <translation>File XSL (*.xsl)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="620"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="607"/>
         <source>DTD Files (*.dtd)</source>
         <translation>File DTD (*.dtd)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="626"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="613"/>
         <source>D Files (*.d)</source>
         <translation>File D (*.d)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="629"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="616"/>
         <source>D Interface Files (*.di)</source>
         <translation>File interfaccia D (*.di)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="644"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="631"/>
         <source>Perl Files (*.pl)</source>
         <translation>File Perl (*.pl)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="647"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="634"/>
         <source>Perl Module Files (*.pm)</source>
         <translation>File moduli Perl (*.pm)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="656"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="643"/>
         <source>Batch Files (*.bat)</source>
         <translation>File Batch (*.bat)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="659"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="646"/>
         <source>TeX Files (*.tex)</source>
         <translation>File TeX (*.tex)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="662"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="649"/>
         <source>TeX Template Files (*.sty)</source>
         <translation>File Template TeX (*.sty)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="665"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="652"/>
         <source>Diff Files (*.diff)</source>
         <translation>File Diff (*.diff)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="668"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="655"/>
         <source>Make Files (*.mak)</source>
         <translation>File Make (*.mak)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="671"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="658"/>
         <source>Properties Files (*.ini)</source>
         <translation>File proprietà (*.ini)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="674"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="661"/>
         <source>Configuration Files (*.cfg)</source>
         <translation>File configurazione (*.cfg)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="680"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="667"/>
         <source>CMake Files (CMakeLists.txt)</source>
         <translation>File CMake (CMakeList.txt)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="683"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="670"/>
         <source>CMake Macro Files (*.cmake)</source>
         <translation>File Macro CMake (*.cmake)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="686"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="673"/>
         <source>VHDL Files (*.vhd)</source>
         <translation>File VHDL (*.vhd)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="689"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="676"/>
         <source>TCL Files (*.tcl)</source>
         <translation>File TCL (*.tcl)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="692"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="679"/>
         <source>Tk Files (*.tk)</source>
         <translation>File Tk (*.tk)</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="102"/>
+        <source>Fortran</source>
+        <translation>Fortran</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="104"/>
-        <source>Fortran</source>
-        <translation>Fortran</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="106"/>
         <source>Fortran77</source>
         <translation>Fortran77</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="124"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="122"/>
         <source>Pascal</source>
         <translation>Pascal</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="128"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="126"/>
         <source>PostScript</source>
         <translation>PostScript</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="151"/>
+        <source>XML</source>
+        <translation>XML</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="153"/>
-        <source>XML</source>
-        <translation>XML</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="155"/>
         <source>YAML</source>
         <translation>YAML</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="429"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="419"/>
         <source>XML Files (*.xml *.xsl *.xslt *.dtd *.svg *.xul *.xsd)</source>
         <translation>File XML (*.xml *.xsl *.xslt *.dtd *.svg *.xul *.xsd)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="487"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="477"/>
         <source>Fortran Files (*.f90 *.f95 *.f2k)</source>
         <translation>File Fortran (*.f90 *.f95 *.f2k)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="490"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="480"/>
         <source>Fortran77 Files (*.f *.for)</source>
         <translation>File Fortran77 (*.f *.for)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="493"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="483"/>
         <source>Pascal Files (*.dpr *.dpk *.pas *.dfm *.inc *.pp)</source>
         <translation>File Pascal (*.dpr *.dpk *.pas *.dfm *.inc *.pp)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="704"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="691"/>
         <source>PostScript Files (*.ps)</source>
         <translation>File PostScript (*.ps)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="499"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="489"/>
         <source>YAML Files (*.yaml *.yml)</source>
         <translation>File YAML (*.yaml *.yml)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="695"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="682"/>
         <source>Fortran Files (*.f95)</source>
         <translation>File Fortran (*.f95)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="698"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="685"/>
         <source>Fortran77 Files (*.f)</source>
         <translation>File Fortran77 (*.f)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="701"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="688"/>
         <source>Pascal Files (*.pas)</source>
         <translation>File Pascal (*.pas)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="707"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="694"/>
         <source>YAML Files (*.yml)</source>
         <translation>File YAML (*.yaml *.yml)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="183"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="173"/>
         <source>Pygments</source>
         <translation>Pygments</translation>
     </message>
@@ -46996,12 +46996,12 @@
         <translation type="obsolete">Python GUI Files (*.pyw *.pyw2 *.pyw3)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="560"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="547"/>
         <source>Python3 Files (*.py)</source>
         <translation>Python3 Files (*.py)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="563"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="550"/>
         <source>Python3 GUI Files (*.pyw)</source>
         <translation>Python3 GUI Files (*.pyw)</translation>
     </message>
@@ -47021,135 +47021,140 @@
         <translation type="obsolete">Python2</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="137"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="135"/>
         <source>Python3</source>
         <translation>Python3</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="118"/>
+        <source>Matlab</source>
+        <translation>Matlab</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="120"/>
-        <source>Matlab</source>
-        <translation>Matlab</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="122"/>
         <source>Octave</source>
         <translation>Octave</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="502"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="495"/>
         <source>Matlab Files (*.m *.m.matlab)</source>
         <translation>File Matlab (*.m *.m.matlab)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="505"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="498"/>
         <source>Octave Files (*.m *.m.octave)</source>
         <translation>File Octave (*.m *.m.octave)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="710"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="700"/>
         <source>Matlab Files (*.m)</source>
         <translation>File Matlab (*.m)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="713"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="703"/>
         <source>Octave Files (*.m.octave)</source>
         <translation>File Octave (*.m.octave)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="141"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="139"/>
         <source>QSS</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="155"/>
+        <source>Gettext</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="706"/>
+        <source>Gettext Files (*.po)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="157"/>
-        <source>Gettext</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="716"/>
-        <source>Gettext Files (*.po)</source>
+        <source>CoffeeScript</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="709"/>
+        <source>CoffeeScript Files (*.coffee)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="159"/>
-        <source>CoffeeScript</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="719"/>
-        <source>CoffeeScript Files (*.coffee)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="165"/>
         <source>JSON</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="725"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="712"/>
         <source>JSON Files (*.json)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="170"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="161"/>
         <source>Markdown</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="730"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="715"/>
         <source>Markdown Files (*.md)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="134"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="132"/>
         <source>Protocol (protobuf)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="584"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="571"/>
         <source>Protocol Files (*.proto)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="98"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="96"/>
         <source>Cython</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="393"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="383"/>
         <source>Cython Files (*.pyx *.pxd *.pxi)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="566"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="553"/>
         <source>Cython Files (*.pyx)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="569"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="556"/>
         <source>Cython Declaration Files (*.pxd)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="572"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="559"/>
         <source>Cython Include Files (*.pxi)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="139"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="137"/>
         <source>MicroPython</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="387"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="377"/>
         <source>Python Files (*.py *.py3)</source>
         <translation type="unfinished">File Python (*.py *.py3)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="390"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="380"/>
         <source>Python GUI Files (*.pyw *.pyw3)</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="697"/>
+        <source>TOML Files (*.toml)</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>LfConvertDataDialog</name>
@@ -49168,23 +49173,23 @@
 <context>
     <name>MicrosoftEngine</name>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="187"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="190"/>
         <source>You have not registered for the Microsoft Translation service.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="193"/>
-        <source>No valid access token available.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="170"/>
-        <source>No translation available.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="205"/>
-        <source>No Text-to-Speech for the selected language available.</source>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="196"/>
+        <source>MS Translator: No valid access token available.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="173"/>
+        <source>MS Translator: No translation available.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="211"/>
+        <source>MS Translator: No Text-to-Speech for the selected language available.</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -49534,168 +49539,168 @@
         <translation>&lt;b&gt;Pulisci&lt;/b&gt;&lt;p&gt;Cancellal tutto il testo dell&apos;editor corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2176"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2175"/>
         <source>About</source>
         <translation>About</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2176"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2175"/>
         <source>&amp;About</source>
         <translation>&amp;About</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2180"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2179"/>
         <source>Display information about this software</source>
         <translation>Mostra informazioni su questo software</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2182"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2181"/>
         <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="2188"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2187"/>
         <source>About Qt</source>
         <translation>About Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2188"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2187"/>
         <source>About &amp;Qt</source>
         <translation>About &amp;Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2192"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2191"/>
         <source>Display information about the Qt toolkit</source>
         <translation>Mostra le informazioni sulle librerie Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2194"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2193"/>
         <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="2224"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2223"/>
         <source>&amp;File</source>
         <translation>&amp;File</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2236"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2235"/>
         <source>&amp;Edit</source>
         <translation>&amp;Edita</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2256"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2255"/>
         <source>&amp;Help</source>
         <translation>&amp;Help</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2318"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2317"/>
         <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="2325"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2324"/>
         <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="2330"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2329"/>
         <source>Ready</source>
         <translation>Pronto</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2415"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2414"/>
         <source>File loaded</source>
         <translation>File caricato</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2851"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2849"/>
         <source>Untitled</source>
         <translation>Senza titolo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2533"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2532"/>
         <source>Mini Editor</source>
         <translation>Mini Editor</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2892"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2890"/>
         <source>Select all</source>
         <translation>Seleziona tutti</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2893"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2891"/>
         <source>Deselect all</source>
         <translation>Deseleziona tutti</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2907"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2905"/>
         <source>Languages</source>
         <translation>Linguaggi</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2910"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2908"/>
         <source>No Language</source>
         <translation>Nessun linguaggio</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2386"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2385"/>
         <source>Open File</source>
         <translation>Apri File</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2504"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2503"/>
         <source>File saved</source>
         <translation>File salvato</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2311"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2310"/>
         <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="2201"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2200"/>
         <source>What&apos;s This?</source>
         <translation>Cos&apos;è questo ?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2201"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2200"/>
         <source>&amp;What&apos;s This?</source>
         <translation>C&amp;os&apos;è Questo ?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2201"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2200"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation>Shift+F1</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2207"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2206"/>
         <source>Context sensitive help</source>
         <translation>Help sensibile al contesto</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2208"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2207"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Mostra help sensibile al contesto&lt;/b&gt;&lt;p&gt;Nella modalità Cos&apos;è qusto, il cursore del mouse mostra una finesta con un punto interrogativo, e puoi clickare sugli elementi dell&apos;interfaccia per avere una breve descrizione di cosa fanno e come usarli. Nei dialoghi questa funzionalità può essere utilizzata usando il pulsante per l&apos;help sensibile al contesto della barra del titolo.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2268"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2267"/>
         <source>File</source>
         <translation>File</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2281"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2280"/>
         <source>Edit</source>
         <translation>Modifica</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2291"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2290"/>
         <source>Find</source>
         <translation>Trova</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2298"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2297"/>
         <source>Help</source>
         <translation>Aiuto</translation>
     </message>
@@ -49721,22 +49726,22 @@
         <translation>Stampa il file corrente</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2814"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2812"/>
         <source>Printing...</source>
         <translation>In stampa...</translation>
     </message>
     <message>
+        <location filename="../QScintilla/MiniEditor.py" line="2830"/>
+        <source>Printing completed</source>
+        <translation>Stampa completata</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/MiniEditor.py" line="2832"/>
-        <source>Printing completed</source>
-        <translation>Stampa completata</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2834"/>
         <source>Error while printing</source>
         <translation>Errore durante la stampa</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2837"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2835"/>
         <source>Printing aborted</source>
         <translation>Stampa interrota</translation>
     </message>
@@ -49761,22 +49766,22 @@
         <translation>&lt;b&gt;Anteprima di stampa&lt;/b&gt;&lt;p&gt;Anteprima di stampa del file corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2934"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2932"/>
         <source>Guessed</source>
         <translation>Indovinato</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2956"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2954"/>
         <source>Alternatives</source>
         <translation>Alternativo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2972"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2970"/>
         <source>Pygments Lexer</source>
         <translation>Analizzatore lessicale Pygments</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2972"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2970"/>
         <source>Select the Pygments lexer to apply.</source>
         <translation>Selezione l&apos;analizzatore lessicale di Pygments da applicare.</translation>
     </message>
@@ -49791,32 +49796,32 @@
         <translation>Pos: {0:5}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2386"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2385"/>
         <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="2496"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2495"/>
         <source>Save File</source>
         <translation>Salva file</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2496"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2495"/>
         <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="2533"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2532"/>
         <source>{0}[*] - {1}</source>
         <translation>{0}[*] - {1}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2952"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2950"/>
         <source>Alternatives ({0})</source>
         <translation>Alternative ({0})</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2357"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2356"/>
         <source>The document has unsaved changes.</source>
         <translation>Il documento ha delle modifiche non salvate.</translation>
     </message>
@@ -49831,7 +49836,7 @@
         <translation type="unfinished">Il Mini Editor di eric6 è un editor basato su QScintilla. Può essere usato per piccole modifiche che non richiedono di usare l&apos;editor completo.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2357"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2356"/>
         <source>eric6 Mini Editor</source>
         <translation type="unfinished">Mini Editor di eric6</translation>
     </message>
@@ -49856,17 +49861,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3490"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3488"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3490"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3488"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2516"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2515"/>
         <source>[*] - {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -49874,463 +49879,463 @@
 <context>
     <name>MiscellaneousChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="492"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="490"/>
         <source>coding magic comment not found</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="495"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="493"/>
         <source>unknown encoding ({0}) found in coding magic comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="498"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="496"/>
         <source>copyright notice not present</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="501"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="499"/>
         <source>copyright notice contains invalid author</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="702"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="700"/>
         <source>found {0} formatter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="705"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="703"/>
         <source>format string does contain unindexed parameters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="708"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="706"/>
         <source>docstring does contain unindexed parameters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="711"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="709"/>
         <source>other string does contain unindexed parameters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="714"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="712"/>
         <source>format call uses too large index ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="717"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="715"/>
         <source>format call uses missing keyword ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="720"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="718"/>
         <source>format call uses keyword arguments but no named entries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="723"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="721"/>
         <source>format call uses variable arguments but no numbered entries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="726"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="724"/>
         <source>format call uses implicit and explicit indexes together</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="729"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="727"/>
         <source>format call provides unused index ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="732"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="730"/>
         <source>format call provides unused keyword ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="751"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="749"/>
         <source>expected these __future__ imports: {0}; but only got: {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="754"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="752"/>
         <source>expected these __future__ imports: {0}; but got none</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="761"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="759"/>
         <source>print statement found</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="764"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="762"/>
         <source>one element tuple found</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="800"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="798"/>
         <source>{0}: {1}</source>
         <translation type="unfinished">{0}: {1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="504"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="502"/>
         <source>&quot;{0}&quot; is a Python builtin and is being shadowed; consider renaming the variable</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="508"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="506"/>
         <source>&quot;{0}&quot; is used as an argument and thus shadows a Python builtin; consider renaming the argument</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="512"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="510"/>
         <source>unnecessary generator - rewrite as a list comprehension</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="515"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="513"/>
         <source>unnecessary generator - rewrite as a set comprehension</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="518"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="516"/>
         <source>unnecessary generator - rewrite as a dict comprehension</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="521"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="519"/>
         <source>unnecessary list comprehension - rewrite as a set comprehension</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="524"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="522"/>
         <source>unnecessary list comprehension - rewrite as a dict comprehension</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="530"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="528"/>
         <source>unnecessary list comprehension - &quot;{0}&quot; can take a generator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="770"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="768"/>
         <source>mutable default argument of type {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="555"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="553"/>
         <source>sort keys - &apos;{0}&apos; should be before &apos;{1}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="738"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="736"/>
         <source>logging statement uses &apos;%&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="744"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="742"/>
         <source>logging statement uses f-string</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="747"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="745"/>
         <source>logging statement uses &apos;warn&apos; instead of &apos;warning&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="735"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="733"/>
         <source>logging statement uses string.format()</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="741"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="739"/>
         <source>logging statement uses &apos;+&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="757"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="755"/>
         <source>gettext import with alias _ found: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="648"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="646"/>
         <source>Python does not support the unary prefix increment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="657"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="655"/>
         <source>&apos;sys.maxint&apos; is not defined in Python 3 - use &apos;sys.maxsize&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="660"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="658"/>
         <source>&apos;BaseException.message&apos; has been deprecated as of Python 2.6 and is removed in Python 3 - use &apos;str(e)&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="664"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="662"/>
         <source>assigning to &apos;os.environ&apos; does not clear the environment - use &apos;os.environ.clear()&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="688"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="686"/>
         <source>Python 3 does not include &apos;.iter*&apos; methods on dictionaries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="691"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="689"/>
         <source>Python 3 does not include &apos;.view*&apos; methods on dictionaries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="694"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="692"/>
         <source>&apos;.next()&apos; does not exist in Python 3</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="697"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="695"/>
         <source>&apos;__metaclass__&apos; does nothing on Python 3 - use &apos;class MyClass(BaseClass, metaclass=...)&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="773"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="771"/>
         <source>mutable default argument of function call &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="651"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="649"/>
         <source>using .strip() with multi-character strings is misleading</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="678"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="676"/>
         <source>using &apos;hasattr(x, &quot;__call__&quot;)&apos; to test if &apos;x&apos; is callable is unreliable</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="668"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="666"/>
         <source>loop control variable {0} not used within the loop body - start the name with an underscore</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="776"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="774"/>
         <source>None should not be added at any return if function has no return value except None</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="780"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="778"/>
         <source>an explicit value at every return should be added if function has a return value except None</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="784"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="782"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="788"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="786"/>
         <source>a value should not be assigned to a variable if it will be used as a return value only</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="654"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="652"/>
         <source>do not call assert False since python -O removes these calls</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="672"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="670"/>
         <source>unncessary f-string</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="675"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="673"/>
         <source>cannot use &apos;self.__class__&apos; as first argument of &apos;super()&apos; call</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="682"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="680"/>
         <source>do not call getattr with a constant attribute value</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="685"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="683"/>
         <source>do not call setattr with a constant attribute value</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="796"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="794"/>
         <source>commented code lines should be removed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="792"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="790"/>
         <source>prefer implied line continuation inside parentheses, brackets and braces as opposed to a backslash</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="559"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="557"/>
         <source>use of &apos;datetime.datetime()&apos; without &apos;tzinfo&apos; argument should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="563"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="561"/>
         <source>use of &apos;datetime.datetime.today()&apos; should be avoided.
 Use &apos;datetime.datetime.now(tz=)&apos; instead.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="567"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="565"/>
         <source>use of &apos;datetime.datetime.utcnow()&apos; should be avoided.
 Use &apos;datetime.datetime.now(tz=)&apos; instead.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="571"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="569"/>
         <source>use of &apos;datetime.datetime.utcfromtimestamp()&apos; should be avoided.
 Use &apos;datetime.datetime.fromtimestamp(, tz=)&apos; instead.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="575"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="573"/>
         <source>use of &apos;datetime.datetime.now()&apos; without &apos;tz&apos; argument should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="579"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="577"/>
         <source>use of &apos;datetime.datetime.fromtimestamp()&apos; without &apos;tz&apos; argument should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="583"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="581"/>
         <source>use of &apos;datetime.datetime.strptime()&apos; should be followed by &apos;.replace(tzinfo=)&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="590"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="588"/>
         <source>use of &apos;datetime.date()&apos; should be avoided.
 Use &apos;datetime.datetime(, tzinfo=).date()&apos; instead.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="594"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="592"/>
         <source>use of &apos;datetime.date.today()&apos; should be avoided.
 Use &apos;datetime.datetime.now(tz=).date()&apos; instead.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="598"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="596"/>
         <source>use of &apos;datetime.date.fromtimestamp()&apos; should be avoided.
 Use &apos;datetime.datetime.fromtimestamp(tz=).date()&apos; instead.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="608"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="606"/>
         <source>use of &apos;datetime.time()&apos; without &apos;tzinfo&apos; argument should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="587"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="585"/>
         <source>use of &apos;datetime.datetime.fromordinal()&apos; should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="602"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="600"/>
         <source>use of &apos;datetime.date.fromordinal()&apos; should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="605"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="603"/>
         <source>use of &apos;datetime.date.fromisoformat()&apos; should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="527"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="525"/>
         <source>unnecessary {0} call - rewrite as a literal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="533"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="531"/>
         <source>unnecessary {0} literal - rewrite as a {1} literal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="536"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="534"/>
         <source>unnecessary {0} passed to tuple() - rewrite as a {1} literal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="539"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="537"/>
         <source>unnecessary {0} passed to list() - rewrite as a {1} literal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="542"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="540"/>
         <source>unnecessary list call - remove the outer call to list()</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="545"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="543"/>
         <source>unnecessary list comprehension - &quot;in&quot; can take a generator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="548"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="546"/>
         <source>unnecessary {0} passed to tuple() - remove the outer call to {1}()</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="551"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="549"/>
         <source>unnecessary {0} passed to list() - remove the outer call to {1}()</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="613"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="611"/>
         <source>&apos;sys.version[:3]&apos; referenced (Python 3.10), use &apos;sys.version_info&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="616"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="614"/>
         <source>&apos;sys.version[2]&apos; referenced (Python 3.10), use &apos;sys.version_info&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="619"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="617"/>
         <source>&apos;sys.version&apos; compared to string (Python 3.10), use &apos;sys.version_info&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="623"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="621"/>
         <source>&apos;sys.version_info[0] == 3&apos; referenced (Python 4), use &apos;&gt;=&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="626"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="624"/>
         <source>&apos;six.PY3&apos; referenced (Python 4), use &apos;not six.PY2&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="629"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="627"/>
         <source>&apos;sys.version_info[1]&apos; compared to integer (Python 4), compare &apos;sys.version_info&apos; to tuple</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="633"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="631"/>
         <source>&apos;sys.version_info.minor&apos; compared to integer (Python 4), compare &apos;sys.version_info&apos; to tuple</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="637"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="635"/>
         <source>&apos;sys.version[0]&apos; referenced (Python 10), use &apos;sys.version_info&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="640"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="638"/>
         <source>&apos;sys.version&apos; compared to string (Python 10), use &apos;sys.version_info&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="644"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="642"/>
         <source>&apos;sys.version[:1]&apos; referenced (Python 10), use &apos;sys.version_info&apos;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -50774,84 +50779,84 @@
     <name>MyMemoryEngine</name>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MyMemoryEngine.py" line="72"/>
-        <source>Only texts up to {0} characters are allowed.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MyMemoryEngine.py" line="95"/>
-        <source>Invalid response received</source>
+        <source>MyMemory: Only texts up to {0} characters are allowed.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MyMemoryEngine.py" line="99"/>
+        <source>MyMemory: Invalid response received</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
 <context>
     <name>NamingStyleChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="432"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="430"/>
         <source>class names should use CapWords convention</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="435"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="433"/>
         <source>function name should be lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="438"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="436"/>
         <source>argument name should be lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="441"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="439"/>
         <source>first argument of a class method should be named &apos;cls&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="444"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="442"/>
         <source>first argument of a method should be named &apos;self&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="447"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="445"/>
         <source>first argument of a static method should not be named &apos;self&apos; or &apos;cls</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="451"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="449"/>
         <source>module names should be lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="454"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="452"/>
         <source>package names should be lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="457"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="455"/>
         <source>constant imported as non constant</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="460"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="458"/>
         <source>lowercase imported as non lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="463"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="461"/>
         <source>camelcase imported as lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="466"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="464"/>
         <source>camelcase imported as constant</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="469"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="467"/>
         <source>variable in function should be lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="472"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="470"/>
         <source>names &apos;l&apos;, &apos;O&apos; and &apos;I&apos; should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
@@ -58175,12 +58180,12 @@
     <name>PromtEngine</name>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/PromtEngine.py" line="97"/>
-        <source>Invalid response received</source>
+        <source>Promt: Invalid response received</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/PromtEngine.py" line="106"/>
-        <source>This direction of translation is not available.</source>
+        <source>Promt: This direction of translation is not available.</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -60451,7 +60456,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="694"/>
+        <location filename="../UI/PythonDisViewer.py" line="696"/>
         <source>Code Object &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -60461,22 +60466,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="450"/>
+        <location filename="../UI/PythonDisViewer.py" line="452"/>
         <source>No editor has been opened.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="462"/>
+        <location filename="../UI/PythonDisViewer.py" line="464"/>
         <source>The current editor does not contain any source code.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="468"/>
+        <location filename="../UI/PythonDisViewer.py" line="470"/>
         <source>The current editor does not contain Python source code.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="517"/>
+        <location filename="../UI/PythonDisViewer.py" line="519"/>
         <source>Disassembly of last traceback</source>
         <translation type="unfinished"></translation>
     </message>
@@ -60506,72 +60511,72 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="809"/>
+        <location filename="../UI/PythonDisViewer.py" line="811"/>
         <source>Name</source>
         <translation type="unfinished">Nome</translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="811"/>
-        <source>Filename</source>
-        <translation type="unfinished">Nome file</translation>
-    </message>
-    <message>
         <location filename="../UI/PythonDisViewer.py" line="813"/>
-        <source>First Line</source>
-        <translation type="unfinished"></translation>
+        <source>Filename</source>
+        <translation type="unfinished">Nome file</translation>
     </message>
     <message>
         <location filename="../UI/PythonDisViewer.py" line="815"/>
-        <source>Argument Count</source>
+        <source>First Line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/PythonDisViewer.py" line="817"/>
+        <source>Argument Count</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="819"/>
         <source>Positional-only Arguments</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="823"/>
-        <source>Number of Locals</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/PythonDisViewer.py" line="825"/>
-        <source>Stack Size</source>
+        <source>Number of Locals</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/PythonDisViewer.py" line="827"/>
+        <source>Stack Size</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="829"/>
         <source>Flags</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="830"/>
+        <location filename="../UI/PythonDisViewer.py" line="832"/>
         <source>Constants</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="833"/>
+        <location filename="../UI/PythonDisViewer.py" line="835"/>
         <source>Names</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="836"/>
+        <location filename="../UI/PythonDisViewer.py" line="838"/>
         <source>Variable Names</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="839"/>
+        <location filename="../UI/PythonDisViewer.py" line="841"/>
         <source>Free Variables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="842"/>
+        <location filename="../UI/PythonDisViewer.py" line="844"/>
         <source>Cell Variables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="820"/>
+        <location filename="../UI/PythonDisViewer.py" line="822"/>
         <source>Keyword-only Arguments</source>
         <translation type="unfinished"></translation>
     </message>
@@ -83661,3162 +83666,3162 @@
 <context>
     <name>ViewManager</name>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="635"/>
+        <location filename="../ViewManager/ViewManager.py" line="634"/>
         <source>New</source>
         <translation>Nuovo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="635"/>
+        <location filename="../ViewManager/ViewManager.py" line="634"/>
         <source>&amp;New</source>
         <translation>&amp;Nuova</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="643"/>
+        <location filename="../ViewManager/ViewManager.py" line="642"/>
         <source>Open an empty editor window</source>
         <translation>Apri una finestra vuota</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="646"/>
+        <location filename="../ViewManager/ViewManager.py" line="645"/>
         <source>&lt;b&gt;New&lt;/b&gt;&lt;p&gt;An empty editor window will be created.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nuova&lt;/b&gt;&lt;p&gt;Verrà creata una nuova finestra vuota.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="654"/>
+        <location filename="../ViewManager/ViewManager.py" line="653"/>
         <source>Open</source>
         <translation>Apri</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="654"/>
+        <location filename="../ViewManager/ViewManager.py" line="653"/>
         <source>&amp;Open...</source>
         <translation>&amp;Apri...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="675"/>
+        <location filename="../ViewManager/ViewManager.py" line="674"/>
         <source>Close</source>
         <translation>Chiudi</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="675"/>
+        <location filename="../ViewManager/ViewManager.py" line="674"/>
         <source>&amp;Close</source>
         <translation>&amp;Chiudi</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="683"/>
+        <location filename="../ViewManager/ViewManager.py" line="682"/>
         <source>Close the current window</source>
         <translation>Chiudi la finestra attuale</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="686"/>
+        <location filename="../ViewManager/ViewManager.py" line="685"/>
         <source>&lt;b&gt;Close Window&lt;/b&gt;&lt;p&gt;Close the current window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Chiudi finestra&lt;/b&gt;&lt;p&gt;Chiudi la finestra attuale.&lt;/b&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="694"/>
+        <location filename="../ViewManager/ViewManager.py" line="693"/>
         <source>Close All</source>
         <translation>Chiudi tutti</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="694"/>
+        <location filename="../ViewManager/ViewManager.py" line="693"/>
         <source>Clos&amp;e All</source>
         <translation>Chiudi &amp;tutti</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="698"/>
+        <location filename="../ViewManager/ViewManager.py" line="697"/>
         <source>Close all editor windows</source>
         <translation>Chiudi tutte le finestre dell&apos;editor</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="701"/>
+        <location filename="../ViewManager/ViewManager.py" line="700"/>
         <source>&lt;b&gt;Close All Windows&lt;/b&gt;&lt;p&gt;Close all editor windows.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Chiudi tutte le finestre&lt;/b&gt;&lt;p&gt;Chiudi tutte le finestre dell&apos;editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="712"/>
         <source>Save</source>
         <translation>Salva</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="712"/>
         <source>&amp;Save</source>
         <translation>&amp;Salva</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="720"/>
+        <location filename="../ViewManager/ViewManager.py" line="719"/>
         <source>Save the current file</source>
         <translation>Salva il file corrente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="722"/>
+        <location filename="../ViewManager/ViewManager.py" line="721"/>
         <source>&lt;b&gt;Save File&lt;/b&gt;&lt;p&gt;Save the contents of current editor window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Salva fle&lt;/b&gt;&lt;p&gt;Salva il contenuto della finestra attuale.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="729"/>
         <source>Save as</source>
         <translation>Salva come</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="729"/>
         <source>Save &amp;as...</source>
         <translation>S&amp;alva come...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="737"/>
+        <location filename="../ViewManager/ViewManager.py" line="736"/>
         <source>Save the current file to a new one</source>
         <translation>Salva il file attuale come uno nuovo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="739"/>
+        <location filename="../ViewManager/ViewManager.py" line="738"/>
         <source>&lt;b&gt;Save File as&lt;/b&gt;&lt;p&gt;Save the contents of current editor window to a new file. The file can be entered in a file selection dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Salva file come&lt;/b&gt;&lt;p&gt;Salva il contenuto della finestra attuale come un file nuovo. Il nome può essere inserito nel dialogo.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="764"/>
+        <location filename="../ViewManager/ViewManager.py" line="763"/>
         <source>Save all</source>
         <translation>Salva tutto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="769"/>
+        <location filename="../ViewManager/ViewManager.py" line="768"/>
         <source>Save all files</source>
         <translation>Salva tutti i file</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="771"/>
+        <location filename="../ViewManager/ViewManager.py" line="770"/>
         <source>&lt;b&gt;Save All Files&lt;/b&gt;&lt;p&gt;Save the contents of all editor windows.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Salva tutti i file&lt;/b&gt;&lt;p&gt;Salva il contenuto di tutte le finestre dell&apos;editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="781"/>
+        <location filename="../ViewManager/ViewManager.py" line="780"/>
         <source>Print</source>
         <translation>Stampa</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="781"/>
+        <location filename="../ViewManager/ViewManager.py" line="780"/>
         <source>&amp;Print</source>
         <translation>Stam&amp;pa</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="788"/>
+        <location filename="../ViewManager/ViewManager.py" line="787"/>
         <source>Print the current file</source>
         <translation>Stampa il file attuale</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="790"/>
+        <location filename="../ViewManager/ViewManager.py" line="789"/>
         <source>&lt;b&gt;Print File&lt;/b&gt;&lt;p&gt;Print the contents of current editor window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Stampa fle&lt;/b&gt;&lt;p&gt;Stampa il contenuto della finestra attuale.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="840"/>
+        <location filename="../ViewManager/ViewManager.py" line="839"/>
         <source>Open &amp;Recent Files</source>
         <translation>Apri file &amp;recenti</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="843"/>
+        <location filename="../ViewManager/ViewManager.py" line="842"/>
         <source>Open &amp;Bookmarked Files</source>
         <translation>Apri file presenti nel &amp;Bookmark</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="938"/>
+        <location filename="../ViewManager/ViewManager.py" line="937"/>
         <source>Undo</source>
         <translation>Undo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="938"/>
+        <location filename="../ViewManager/ViewManager.py" line="937"/>
         <source>&amp;Undo</source>
         <translation>&amp;Undo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="947"/>
+        <location filename="../ViewManager/ViewManager.py" line="946"/>
         <source>Undo the last change</source>
         <translation>Annulla l&apos;ultima modifica</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="949"/>
+        <location filename="../ViewManager/ViewManager.py" line="948"/>
         <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last change done in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Annulla&lt;/b&gt;&lt;p&gt;Annula l&apos;ultima modifica nell&apos;editor corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="957"/>
+        <location filename="../ViewManager/ViewManager.py" line="956"/>
         <source>Redo</source>
         <translation>Rifai</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="957"/>
+        <location filename="../ViewManager/ViewManager.py" line="956"/>
         <source>&amp;Redo</source>
         <translation>&amp;Rifai</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="965"/>
+        <location filename="../ViewManager/ViewManager.py" line="964"/>
         <source>Redo the last change</source>
         <translation>Rifai ultima modifica</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="967"/>
+        <location filename="../ViewManager/ViewManager.py" line="966"/>
         <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last change done in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rifai&lt;/b&gt;&lt;p&gt;Rifai l&apos;ultima modifica nell&apos;editor corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="984"/>
+        <location filename="../ViewManager/ViewManager.py" line="983"/>
         <source>Revert to last saved state</source>
         <translation>Ritorna all&apos;ultimo stato salvato</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="975"/>
+        <location filename="../ViewManager/ViewManager.py" line="974"/>
         <source>Re&amp;vert to last saved state</source>
         <translation>Ritorna all&apos;ultimo stato sal&amp;vato</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="985"/>
         <source>&lt;b&gt;Revert to last saved state&lt;/b&gt;&lt;p&gt;Undo all changes up to the last saved state of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Torna all&apos;ultimo stato salvato&lt;/b&gt;&lt;p&gt;Annulla tutte le modifiche fino all&apos;ultimo salvataggio dell&apos;editor corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <source>Cut</source>
         <translation>Taglia</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <source>Cu&amp;t</source>
         <translation>&amp;Taglia</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1006"/>
+        <location filename="../ViewManager/ViewManager.py" line="1005"/>
         <source>Cut the selection</source>
         <translation>Taglia la selezione</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1008"/>
+        <location filename="../ViewManager/ViewManager.py" line="1007"/>
         <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected text of the current editor to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Taglia&lt;/b&gt;&lt;p&gt;Taglia il testo selezionato nell&apos;editor corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1017"/>
+        <location filename="../ViewManager/ViewManager.py" line="1016"/>
         <source>Copy</source>
         <translation>Copia</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1017"/>
+        <location filename="../ViewManager/ViewManager.py" line="1016"/>
         <source>&amp;Copy</source>
         <translation>&amp;Copia</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1026"/>
+        <location filename="../ViewManager/ViewManager.py" line="1025"/>
         <source>Copy the selection</source>
         <translation>Copia la selezione</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1028"/>
+        <location filename="../ViewManager/ViewManager.py" line="1027"/>
         <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected text of the current editor to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Copia&lt;/b&gt;&lt;p&gt;Copia il testo selezionato nell&apos;editor corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1037"/>
+        <location filename="../ViewManager/ViewManager.py" line="1036"/>
         <source>Paste</source>
         <translation>Incolla</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1037"/>
+        <location filename="../ViewManager/ViewManager.py" line="1036"/>
         <source>&amp;Paste</source>
         <translation>&amp;Incolla</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1046"/>
+        <location filename="../ViewManager/ViewManager.py" line="1045"/>
         <source>Paste the last cut/copied text</source>
         <translation>Incolla l&apos;ultimo testo tagliato/copiato</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1048"/>
+        <location filename="../ViewManager/ViewManager.py" line="1047"/>
         <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the last cut/copied text from the clipboard to the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Incolla&lt;/b&gt;&lt;p&gt;Incolla l&apos;ultimo testo tagliato/copiato nell&apos;editor corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1057"/>
+        <location filename="../ViewManager/ViewManager.py" line="1056"/>
         <source>Clear</source>
         <translation>Pulisci</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1065"/>
+        <location filename="../ViewManager/ViewManager.py" line="1064"/>
         <source>Clear all text</source>
         <translation>Pulisci tutto il testo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1067"/>
+        <location filename="../ViewManager/ViewManager.py" line="1066"/>
         <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Delete all text of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Pulisci&lt;/b&gt;&lt;p&gt;Cancellal tutto il testo dell&apos;editor corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1092"/>
+        <location filename="../ViewManager/ViewManager.py" line="1091"/>
         <source>Indent</source>
         <translation>Identa</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1092"/>
+        <location filename="../ViewManager/ViewManager.py" line="1091"/>
         <source>&amp;Indent</source>
         <translation>&amp;Identa</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1100"/>
+        <location filename="../ViewManager/ViewManager.py" line="1099"/>
         <source>Indent line</source>
         <translation>Identa riga</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1102"/>
+        <location filename="../ViewManager/ViewManager.py" line="1101"/>
         <source>&lt;b&gt;Indent&lt;/b&gt;&lt;p&gt;Indents the current line or the lines of the selection by one level.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Indenta&lt;/b&gt;&lt;p&gt;Indenta la riga attuale o le righe selezionate di un livello.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1111"/>
+        <location filename="../ViewManager/ViewManager.py" line="1110"/>
         <source>Unindent</source>
         <translation>Annulla identazione</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1111"/>
+        <location filename="../ViewManager/ViewManager.py" line="1110"/>
         <source>U&amp;nindent</source>
         <translation>A&amp;nnulla identazione</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1119"/>
+        <location filename="../ViewManager/ViewManager.py" line="1118"/>
         <source>Unindent line</source>
         <translation>Annulla identazione riga</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1121"/>
+        <location filename="../ViewManager/ViewManager.py" line="1120"/>
         <source>&lt;b&gt;Unindent&lt;/b&gt;&lt;p&gt;Unindents the current line or the lines of the selection by one level.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Annulla indentazione&lt;/b&gt;&lt;p&gt;Annulla l&apos;indentazioe della riga attuale o delle righe selezionate di un livello.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1147"/>
+        <location filename="../ViewManager/ViewManager.py" line="1146"/>
         <source>Comment</source>
         <translation>Commenta</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1147"/>
+        <location filename="../ViewManager/ViewManager.py" line="1146"/>
         <source>C&amp;omment</source>
         <translation>C&amp;ommenta</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1155"/>
+        <location filename="../ViewManager/ViewManager.py" line="1154"/>
         <source>Comment Line or Selection</source>
         <translation>Commenta Riga o Selezione</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1157"/>
+        <location filename="../ViewManager/ViewManager.py" line="1156"/>
         <source>&lt;b&gt;Comment&lt;/b&gt;&lt;p&gt;Comments the current line or the lines of the current selection.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Commenta&lt;/b&gt;&lt;p&gt;Commenta la riga attuale o le righe selezionate.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1166"/>
+        <location filename="../ViewManager/ViewManager.py" line="1165"/>
         <source>Uncomment</source>
         <translation>Annulla commenta</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1166"/>
+        <location filename="../ViewManager/ViewManager.py" line="1165"/>
         <source>Unco&amp;mment</source>
         <translation>Annulla co&amp;mmenta</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1174"/>
+        <location filename="../ViewManager/ViewManager.py" line="1173"/>
         <source>Uncomment Line or Selection</source>
         <translation>Annulla commenta Riga o Selezione</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1176"/>
+        <location filename="../ViewManager/ViewManager.py" line="1175"/>
         <source>&lt;b&gt;Uncomment&lt;/b&gt;&lt;p&gt;Uncomments the current line or the lines of the current selection.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Annulla Commenta&lt;/b&gt;&lt;p&gt;Annula Commenta per la riga attuale o per le righe selezionate.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1207"/>
+        <location filename="../ViewManager/ViewManager.py" line="1206"/>
         <source>Stream Comment</source>
         <translation>Streaml commento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1212"/>
+        <location filename="../ViewManager/ViewManager.py" line="1211"/>
         <source>Stream Comment Line or Selection</source>
         <translation>Stream commento per la Riga o la Selezione</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1215"/>
+        <location filename="../ViewManager/ViewManager.py" line="1214"/>
         <source>&lt;b&gt;Stream Comment&lt;/b&gt;&lt;p&gt;Stream comments the current line or the current selection.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Stream commento&lt;/b&gt;&lt;p&gt;Stream commento per la riga attuale o le righe selezionate.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1224"/>
+        <location filename="../ViewManager/ViewManager.py" line="1223"/>
         <source>Box Comment</source>
         <translation>Box Comment</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1229"/>
+        <location filename="../ViewManager/ViewManager.py" line="1228"/>
         <source>Box Comment Line or Selection</source>
         <translation>Box Comment Riga o Selezione</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1231"/>
+        <location filename="../ViewManager/ViewManager.py" line="1230"/>
         <source>&lt;b&gt;Box Comment&lt;/b&gt;&lt;p&gt;Box comments the current line or the lines of the current selection.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Box commento&lt;/b&gt;&lt;p&gt;Box commento per la riga attuale o le righe selezionate.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1240"/>
+        <location filename="../ViewManager/ViewManager.py" line="1239"/>
         <source>Select to brace</source>
         <translation>Seleziona fino alla parentesi</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1240"/>
+        <location filename="../ViewManager/ViewManager.py" line="1239"/>
         <source>Select to &amp;brace</source>
         <translation>Seleziona fino alla &amp;parentesi</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1247"/>
+        <location filename="../ViewManager/ViewManager.py" line="1246"/>
         <source>Select text to the matching brace</source>
         <translation>Seleziona il testo fino alla parentesi corrispondente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1258"/>
+        <location filename="../ViewManager/ViewManager.py" line="1257"/>
         <source>Select all</source>
         <translation>Seleziona tutti</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1258"/>
+        <location filename="../ViewManager/ViewManager.py" line="1257"/>
         <source>&amp;Select all</source>
         <translation>&amp;Seleziona tutto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1266"/>
+        <location filename="../ViewManager/ViewManager.py" line="1265"/>
         <source>Select all text</source>
         <translation>Seleziona tutto il testo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1275"/>
         <source>Deselect all</source>
         <translation>Deseleziona tutti</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1275"/>
         <source>&amp;Deselect all</source>
         <translation>&amp;Deseleziona tutti</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1283"/>
+        <location filename="../ViewManager/ViewManager.py" line="1282"/>
         <source>Deselect all text</source>
         <translation>Deseleziona tutto il testo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1300"/>
+        <location filename="../ViewManager/ViewManager.py" line="1299"/>
         <source>Convert Line End Characters</source>
         <translation>Converti il carattere di Line End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1293"/>
+        <location filename="../ViewManager/ViewManager.py" line="1292"/>
         <source>Convert &amp;Line End Characters</source>
         <translation>Converti il carattere di &amp;Line End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1302"/>
+        <location filename="../ViewManager/ViewManager.py" line="1301"/>
         <source>&lt;b&gt;Convert Line End Characters&lt;/b&gt;&lt;p&gt;Convert the line end characters to the currently set type.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Converti caratteri di Line End&lt;/b&gt;&lt;p&gt;Converte i caratteri di line end al tipo selezionato.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1316"/>
+        <location filename="../ViewManager/ViewManager.py" line="1315"/>
         <source>Shorten empty lines</source>
         <translation>Abbrevia righe vuote</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1318"/>
+        <location filename="../ViewManager/ViewManager.py" line="1317"/>
         <source>&lt;b&gt;Shorten empty lines&lt;/b&gt;&lt;p&gt;Shorten lines consisting solely of whitespace characters.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Accorcia righe vuote&lt;/b&gt;&lt;p&gt;Accorcia le righe contenenti solo spazi.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1327"/>
+        <location filename="../ViewManager/ViewManager.py" line="1326"/>
         <source>&amp;Complete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2778"/>
+        <location filename="../ViewManager/ViewManager.py" line="2776"/>
         <source>Complete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1334"/>
+        <location filename="../ViewManager/ViewManager.py" line="1333"/>
         <source>Complete current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1336"/>
+        <location filename="../ViewManager/ViewManager.py" line="1335"/>
         <source>&lt;b&gt;Complete&lt;/b&gt;&lt;p&gt;Performs a completion of the word containing the cursor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1481"/>
+        <location filename="../ViewManager/ViewManager.py" line="1480"/>
         <source>Move left one character</source>
         <translation>Muovi a sinistra di 1 carattere</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1481"/>
+        <location filename="../ViewManager/ViewManager.py" line="1480"/>
         <source>Left</source>
         <translation>Sinistra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1495"/>
+        <location filename="../ViewManager/ViewManager.py" line="1494"/>
         <source>Move right one character</source>
         <translation>Muovi a destra di 1 carattere</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1495"/>
+        <location filename="../ViewManager/ViewManager.py" line="1494"/>
         <source>Right</source>
         <translation>Destra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1509"/>
+        <location filename="../ViewManager/ViewManager.py" line="1508"/>
         <source>Move up one line</source>
         <translation>Muovi in alto di una riga</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1509"/>
+        <location filename="../ViewManager/ViewManager.py" line="1508"/>
         <source>Up</source>
         <translation>Su</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1521"/>
+        <location filename="../ViewManager/ViewManager.py" line="1520"/>
         <source>Move down one line</source>
         <translation>Muovi in basso di una riga</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1521"/>
+        <location filename="../ViewManager/ViewManager.py" line="1520"/>
         <source>Down</source>
         <translation>Giù</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1533"/>
+        <location filename="../ViewManager/ViewManager.py" line="1532"/>
         <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="1567"/>
+        <location filename="../ViewManager/ViewManager.py" line="1566"/>
         <source>Alt+Left</source>
         <translation>Alt+Sinistra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1547"/>
+        <location filename="../ViewManager/ViewManager.py" line="1546"/>
         <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="2448"/>
+        <location filename="../ViewManager/ViewManager.py" line="2446"/>
         <source>Alt+Right</source>
         <translation>Alt+Destra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1561"/>
+        <location filename="../ViewManager/ViewManager.py" line="1560"/>
         <source>Move left one word</source>
         <translation>Muovi a sinistra una parola</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1612"/>
+        <location filename="../ViewManager/ViewManager.py" line="1611"/>
         <source>Ctrl+Left</source>
         <translation>Ctrl+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1576"/>
+        <location filename="../ViewManager/ViewManager.py" line="1575"/>
         <source>Move right one word</source>
         <translation>Muovi a destra una parola</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2202"/>
+        <location filename="../ViewManager/ViewManager.py" line="2200"/>
         <source>Ctrl+Right</source>
         <translation>Ctrl+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2403"/>
+        <location filename="../ViewManager/ViewManager.py" line="2401"/>
         <source>Home</source>
         <translation>Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1615"/>
+        <location filename="../ViewManager/ViewManager.py" line="1614"/>
         <source>Alt+Home</source>
         <translation>Alt+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2418"/>
+        <location filename="../ViewManager/ViewManager.py" line="2416"/>
         <source>End</source>
         <translation>Fine</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1638"/>
+        <location filename="../ViewManager/ViewManager.py" line="1637"/>
         <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="1728"/>
+        <location filename="../ViewManager/ViewManager.py" line="1727"/>
         <source>Ctrl+Down</source>
         <translation>Ctrl+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1650"/>
+        <location filename="../ViewManager/ViewManager.py" line="1649"/>
         <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="1711"/>
+        <location filename="../ViewManager/ViewManager.py" line="1710"/>
         <source>Ctrl+Up</source>
         <translation>Ctrl+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1661"/>
+        <location filename="../ViewManager/ViewManager.py" line="1660"/>
         <source>Move up one paragraph</source>
         <translation>Muovi in alto di un paragrafo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1661"/>
+        <location filename="../ViewManager/ViewManager.py" line="1660"/>
         <source>Alt+Up</source>
         <translation>Alt+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1670"/>
+        <location filename="../ViewManager/ViewManager.py" line="1669"/>
         <source>Move down one paragraph</source>
         <translation>Muovi in basso di un paragrafo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1670"/>
+        <location filename="../ViewManager/ViewManager.py" line="1669"/>
         <source>Alt+Down</source>
         <translation>Alt+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1682"/>
+        <location filename="../ViewManager/ViewManager.py" line="1681"/>
         <source>Move up one page</source>
         <translation>Muovi in alto di una pagina</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1682"/>
+        <location filename="../ViewManager/ViewManager.py" line="1681"/>
         <source>PgUp</source>
         <translation>PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1691"/>
+        <location filename="../ViewManager/ViewManager.py" line="1690"/>
         <source>Move down one page</source>
         <translation>Muovi in basso di una pagina</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1691"/>
+        <location filename="../ViewManager/ViewManager.py" line="1690"/>
         <source>PgDown</source>
         <translation>PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1714"/>
+        <location filename="../ViewManager/ViewManager.py" line="1713"/>
         <source>Ctrl+Home</source>
         <translation>Ctrl+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1731"/>
+        <location filename="../ViewManager/ViewManager.py" line="1730"/>
         <source>Ctrl+End</source>
         <translation>Ctrl+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1737"/>
+        <location filename="../ViewManager/ViewManager.py" line="1736"/>
         <source>Indent one level</source>
         <translation>Indenta un livello</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1737"/>
+        <location filename="../ViewManager/ViewManager.py" line="1736"/>
         <source>Tab</source>
         <translation>Tab</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1746"/>
+        <location filename="../ViewManager/ViewManager.py" line="1745"/>
         <source>Unindent one level</source>
         <translation>Deindenta di un livello</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1746"/>
+        <location filename="../ViewManager/ViewManager.py" line="1745"/>
         <source>Shift+Tab</source>
         <translation>Shift+Tab</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1756"/>
+        <location filename="../ViewManager/ViewManager.py" line="1755"/>
         <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="1756"/>
+        <location filename="../ViewManager/ViewManager.py" line="1755"/>
         <source>Shift+Left</source>
         <translation>Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1771"/>
+        <location filename="../ViewManager/ViewManager.py" line="1770"/>
         <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="1771"/>
+        <location filename="../ViewManager/ViewManager.py" line="1770"/>
         <source>Shift+Right</source>
         <translation>Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1786"/>
+        <location filename="../ViewManager/ViewManager.py" line="1785"/>
         <source>Extend selection up one line</source>
         <translation>Estendi selezione in alto di una riga</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1786"/>
+        <location filename="../ViewManager/ViewManager.py" line="1785"/>
         <source>Shift+Up</source>
         <translation>Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1801"/>
+        <location filename="../ViewManager/ViewManager.py" line="1800"/>
         <source>Extend selection down one line</source>
         <translation>Estendi selezione in basso di una riga</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1801"/>
+        <location filename="../ViewManager/ViewManager.py" line="1800"/>
         <source>Shift+Down</source>
         <translation>Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1816"/>
+        <location filename="../ViewManager/ViewManager.py" line="1815"/>
         <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="1852"/>
+        <location filename="../ViewManager/ViewManager.py" line="1851"/>
         <source>Alt+Shift+Left</source>
         <translation>Alt+Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1830"/>
+        <location filename="../ViewManager/ViewManager.py" line="1829"/>
         <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="2463"/>
+        <location filename="../ViewManager/ViewManager.py" line="2461"/>
         <source>Alt+Shift+Right</source>
         <translation>Alt+Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1844"/>
+        <location filename="../ViewManager/ViewManager.py" line="1843"/>
         <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="2557"/>
+        <location filename="../ViewManager/ViewManager.py" line="2555"/>
         <source>Ctrl+Shift+Left</source>
         <translation>Ctrl+Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1861"/>
+        <location filename="../ViewManager/ViewManager.py" line="1860"/>
         <source>Extend selection right one word</source>
         <translation>Estendi la selezione a destra di una parola</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2219"/>
+        <location filename="../ViewManager/ViewManager.py" line="2217"/>
         <source>Ctrl+Shift+Right</source>
         <translation>Ctrl+Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1890"/>
+        <location filename="../ViewManager/ViewManager.py" line="1889"/>
         <source>Shift+Home</source>
         <translation>Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2323"/>
+        <location filename="../ViewManager/ViewManager.py" line="2321"/>
         <source>Alt+Shift+Home</source>
         <translation>Alt+Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1907"/>
+        <location filename="../ViewManager/ViewManager.py" line="1906"/>
         <source>Shift+End</source>
         <translation>Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1913"/>
+        <location filename="../ViewManager/ViewManager.py" line="1912"/>
         <source>Extend selection up one paragraph</source>
         <translation>Estendi selezione in alto di un paragrafo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1913"/>
+        <location filename="../ViewManager/ViewManager.py" line="1912"/>
         <source>Alt+Shift+Up</source>
         <translation>Alt+Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1926"/>
+        <location filename="../ViewManager/ViewManager.py" line="1925"/>
         <source>Extend selection down one paragraph</source>
         <translation>Estendi selezione in basso di un paragrafo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1926"/>
+        <location filename="../ViewManager/ViewManager.py" line="1925"/>
         <source>Alt+Shift+Down</source>
         <translation>Alt+Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1939"/>
+        <location filename="../ViewManager/ViewManager.py" line="1938"/>
         <source>Extend selection up one page</source>
         <translation>Estendi selezione in alto di una pagina</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1939"/>
+        <location filename="../ViewManager/ViewManager.py" line="1938"/>
         <source>Shift+PgUp</source>
         <translation>Shift+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1951"/>
+        <location filename="../ViewManager/ViewManager.py" line="1950"/>
         <source>Extend selection down one page</source>
         <translation>Estendi selezione in basso di una pagina</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1951"/>
+        <location filename="../ViewManager/ViewManager.py" line="1950"/>
         <source>Shift+PgDown</source>
         <translation>Shift+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1978"/>
+        <location filename="../ViewManager/ViewManager.py" line="1977"/>
         <source>Ctrl+Shift+Home</source>
         <translation>Ctrl+Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1995"/>
+        <location filename="../ViewManager/ViewManager.py" line="1994"/>
         <source>Ctrl+Shift+End</source>
         <translation>Ctrl+Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2001"/>
+        <location filename="../ViewManager/ViewManager.py" line="2000"/>
         <source>Delete previous character</source>
         <translation>Cancella caratteri precedenti</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2001"/>
+        <location filename="../ViewManager/ViewManager.py" line="2000"/>
         <source>Backspace</source>
         <translation>Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2032"/>
+        <location filename="../ViewManager/ViewManager.py" line="2031"/>
         <source>Delete current character</source>
         <translation>Cancella il carattere corrente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2032"/>
+        <location filename="../ViewManager/ViewManager.py" line="2031"/>
         <source>Del</source>
         <translation>Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2046"/>
+        <location filename="../ViewManager/ViewManager.py" line="2045"/>
         <source>Delete word to left</source>
         <translation>Cancella parola a sinistra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2046"/>
+        <location filename="../ViewManager/ViewManager.py" line="2045"/>
         <source>Ctrl+Backspace</source>
         <translation>Ctrl+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2057"/>
+        <location filename="../ViewManager/ViewManager.py" line="2056"/>
         <source>Delete word to right</source>
         <translation>Cancella parola a destra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2057"/>
+        <location filename="../ViewManager/ViewManager.py" line="2056"/>
         <source>Ctrl+Del</source>
         <translation>Ctrl+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2067"/>
+        <location filename="../ViewManager/ViewManager.py" line="2066"/>
         <source>Delete line to left</source>
         <translation>Cancella riga a sinistra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2067"/>
+        <location filename="../ViewManager/ViewManager.py" line="2066"/>
         <source>Ctrl+Shift+Backspace</source>
         <translation>Ctrl+Shift+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2078"/>
+        <location filename="../ViewManager/ViewManager.py" line="2077"/>
         <source>Delete line to right</source>
         <translation>Cancella riga a destra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2087"/>
+        <location filename="../ViewManager/ViewManager.py" line="2086"/>
         <source>Ctrl+Shift+Del</source>
         <translation>Ctrl+Shift+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2093"/>
+        <location filename="../ViewManager/ViewManager.py" line="2092"/>
         <source>Insert new line</source>
         <translation>Inserisci riga</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2093"/>
+        <location filename="../ViewManager/ViewManager.py" line="2092"/>
         <source>Return</source>
         <translation>Return</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2116"/>
+        <location filename="../ViewManager/ViewManager.py" line="2115"/>
         <source>Delete current line</source>
         <translation>Cancella riga</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2116"/>
+        <location filename="../ViewManager/ViewManager.py" line="2115"/>
         <source>Ctrl+Shift+L</source>
         <translation>Ctrl+Shift+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2127"/>
+        <location filename="../ViewManager/ViewManager.py" line="2126"/>
         <source>Duplicate current line</source>
         <translation>Duplica riga</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2127"/>
+        <location filename="../ViewManager/ViewManager.py" line="2126"/>
         <source>Ctrl+D</source>
         <translation>Ctrl+D</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2138"/>
+        <location filename="../ViewManager/ViewManager.py" line="2137"/>
         <source>Swap current and previous lines</source>
         <translation>Scambia la riga con quella precedente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2138"/>
+        <location filename="../ViewManager/ViewManager.py" line="2137"/>
         <source>Ctrl+T</source>
         <translation>Ctrl+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2162"/>
+        <location filename="../ViewManager/ViewManager.py" line="2160"/>
         <source>Cut current line</source>
         <translation>Taglia riga</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2162"/>
+        <location filename="../ViewManager/ViewManager.py" line="2160"/>
         <source>Alt+Shift+L</source>
         <translation>Alt+Shift+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2172"/>
+        <location filename="../ViewManager/ViewManager.py" line="2170"/>
         <source>Copy current line</source>
         <translation>Copia riga</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2172"/>
+        <location filename="../ViewManager/ViewManager.py" line="2170"/>
         <source>Ctrl+Shift+T</source>
         <translation>Ctrl+Shift+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2183"/>
+        <location filename="../ViewManager/ViewManager.py" line="2181"/>
         <source>Toggle insert/overtype</source>
         <translation>Scambia inserisci/sovrascrivi</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2183"/>
+        <location filename="../ViewManager/ViewManager.py" line="2181"/>
         <source>Ins</source>
         <translation>Ins</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2747"/>
+        <location filename="../ViewManager/ViewManager.py" line="2745"/>
         <source>Convert selection to lower case</source>
         <translation>Converti selezione in minuscolo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2747"/>
+        <location filename="../ViewManager/ViewManager.py" line="2745"/>
         <source>Alt+Shift+U</source>
         <translation>Alt+Shift+U</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2759"/>
+        <location filename="../ViewManager/ViewManager.py" line="2757"/>
         <source>Convert selection to upper case</source>
         <translation>Converti selezione in maiuscolo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2759"/>
+        <location filename="../ViewManager/ViewManager.py" line="2757"/>
         <source>Ctrl+Shift+U</source>
         <translation>Ctrl+Shift+U</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2205"/>
+        <location filename="../ViewManager/ViewManager.py" line="2203"/>
         <source>Alt+End</source>
         <translation>Alt+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2225"/>
+        <location filename="../ViewManager/ViewManager.py" line="2223"/>
         <source>Formfeed</source>
         <translation>Formfeed</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2234"/>
+        <location filename="../ViewManager/ViewManager.py" line="2232"/>
         <source>Escape</source>
         <translation>Escape</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2234"/>
+        <location filename="../ViewManager/ViewManager.py" line="2232"/>
         <source>Esc</source>
         <translation>Esc</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2243"/>
+        <location filename="../ViewManager/ViewManager.py" line="2241"/>
         <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="2243"/>
+        <location filename="../ViewManager/ViewManager.py" line="2241"/>
         <source>Alt+Ctrl+Down</source>
         <translation>Alt+Ctrl+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2259"/>
+        <location filename="../ViewManager/ViewManager.py" line="2257"/>
         <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="2259"/>
+        <location filename="../ViewManager/ViewManager.py" line="2257"/>
         <source>Alt+Ctrl+Up</source>
         <translation>Alt+Ctrl+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2274"/>
+        <location filename="../ViewManager/ViewManager.py" line="2272"/>
         <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="2274"/>
+        <location filename="../ViewManager/ViewManager.py" line="2272"/>
         <source>Alt+Ctrl+Left</source>
         <translation>Alt+Ctrl+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2292"/>
+        <location filename="../ViewManager/ViewManager.py" line="2290"/>
         <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="2292"/>
+        <location filename="../ViewManager/ViewManager.py" line="2290"/>
         <source>Alt+Ctrl+Right</source>
         <translation>Alt+Ctrl+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2348"/>
+        <location filename="../ViewManager/ViewManager.py" line="2346"/>
         <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="2363"/>
+        <location filename="../ViewManager/ViewManager.py" line="2361"/>
         <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="3449"/>
+        <location filename="../ViewManager/ViewManager.py" line="3447"/>
         <source>Search</source>
         <translation>Ricerca</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2877"/>
+        <location filename="../ViewManager/ViewManager.py" line="2875"/>
         <source>&amp;Search...</source>
         <translation>&amp;Ricerca...</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="2883"/>
+        <source>Search for a text</source>
+        <translation>Cerca per un testo</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="2885"/>
-        <source>Search for a text</source>
-        <translation>Cerca per un testo</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2887"/>
         <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&apos;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="3003"/>
+        <location filename="../ViewManager/ViewManager.py" line="3001"/>
         <source>Replace</source>
         <translation>Rimpiazza</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3003"/>
+        <location filename="../ViewManager/ViewManager.py" line="3001"/>
         <source>&amp;Replace...</source>
         <translation>&amp;Rimpiazza...</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3008"/>
+        <source>Replace some text</source>
+        <translation>Sostituisci del testo</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3010"/>
-        <source>Replace some text</source>
-        <translation>Sostituisci del testo</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3012"/>
         <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&apos;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="3160"/>
+        <source>Goto Line</source>
+        <translation>Vai a riga</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3152"/>
+        <source>&amp;Goto Line...</source>
+        <translation>Vai a ri&amp;ga...</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3162"/>
-        <source>Goto Line</source>
-        <translation>Vai a riga</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3154"/>
-        <source>&amp;Goto Line...</source>
-        <translation>Vai a ri&amp;ga...</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3164"/>
         <source>&lt;b&gt;Goto Line&lt;/b&gt;&lt;p&gt;Go to a specific line of text in the current editor. A dialog is shown to enter the linenumber.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vai a Riga&lt;/b&gt;&lt;p&gt;Va ad una specifica riga di testo nell&apos;editor corrente. Viene mostrato un dialogo per inserire il numero di riga&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3179"/>
+        <source>Goto Brace</source>
+        <translation>Vai alla parentesi</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3171"/>
+        <source>Goto &amp;Brace</source>
+        <translation>Vai alla &amp;parentesi</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3181"/>
-        <source>Goto Brace</source>
-        <translation>Vai alla parentesi</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3173"/>
-        <source>Goto &amp;Brace</source>
-        <translation>Vai alla &amp;parentesi</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3183"/>
         <source>&lt;b&gt;Goto Brace&lt;/b&gt;&lt;p&gt;Go to the matching brace in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vai alla parentesi&lt;/b&gt;&lt;p&gt;Va alla parentesi corrispondete nell&apos;editor corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3261"/>
+        <location filename="../ViewManager/ViewManager.py" line="3259"/>
         <source>Search in Files</source>
         <translation>Cerca nei file</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3261"/>
+        <location filename="../ViewManager/ViewManager.py" line="3259"/>
         <source>Search in &amp;Files...</source>
         <translation>Cerca nei &amp;file...</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3267"/>
+        <source>Search for a text in files</source>
+        <translation>Cerca un testo nei file</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3269"/>
-        <source>Search for a text in files</source>
-        <translation>Cerca un testo nei file</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3271"/>
         <source>&lt;b&gt;Search in Files&lt;/b&gt;&lt;p&gt;Search for some text in the files of a directory tree or the project. A dialog is shown to enter the searchtext and options for the search and to display the result.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Cerca nei file&lt;/b&gt;&lt;p&gt;Cerca per del testo nei file di un albero di directory o del progetto. Un dialogo viene mostrato per inserire il testo cercato e le opzioni per la ricerca e la visualizzazione del risultato.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3487"/>
         <source>Zoom in</source>
         <translation>Ingrandisci</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3487"/>
         <source>Zoom &amp;in</source>
         <translation>Ingrand&amp;isci</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3496"/>
+        <source>Zoom in on the text</source>
+        <translation>Ingrandisci nel testo</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3498"/>
-        <source>Zoom in on the text</source>
-        <translation>Ingrandisci nel testo</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3500"/>
         <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="3508"/>
+        <location filename="../ViewManager/ViewManager.py" line="3506"/>
         <source>Zoom out</source>
         <translation>Riduci</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3508"/>
+        <location filename="../ViewManager/ViewManager.py" line="3506"/>
         <source>Zoom &amp;out</source>
         <translation>Rid&amp;uci</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3515"/>
+        <source>Zoom out on the text</source>
+        <translation>Riduci il testo</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3517"/>
-        <source>Zoom out on the text</source>
-        <translation>Riduci il testo</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3519"/>
         <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="3546"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>Zoom</source>
         <translation>Zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3546"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>&amp;Zoom</source>
         <translation>&amp;Zoom</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3552"/>
+        <source>Zoom the text</source>
+        <translation>Ingrandisci il testo</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3554"/>
-        <source>Zoom the text</source>
-        <translation>Ingrandisci il testo</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3556"/>
         <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>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3567"/>
+        <source>Toggle all folds</source>
+        <translation>Abilita/Disabilita tutti i raggruppamenti</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3563"/>
+        <source>&amp;Toggle all folds</source>
+        <translation type="unfinished">Abilita/Disabilita tutti i r&amp;aggruppamenti</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3569"/>
-        <source>Toggle all folds</source>
-        <translation>Abilita/Disabilita tutti i raggruppamenti</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3565"/>
-        <source>&amp;Toggle all folds</source>
-        <translation type="unfinished">Abilita/Disabilita tutti i r&amp;aggruppamenti</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3571"/>
         <source>&lt;b&gt;Toggle all folds&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Abilita/Disabilita tutti i raggruppamenti&lt;/b&gt;&lt;p&gt;Abilita/Disabilita tutti i raggruppamenti dell&apos;editor corrente.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3599"/>
+        <source>Toggle current fold</source>
+        <translation>Abilita/Disabilita il raggruppamento corrente</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3595"/>
+        <source>Toggle &amp;current fold</source>
+        <translation>Abilita/Disabilita il raggruppamento &amp;corrente</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3601"/>
-        <source>Toggle current fold</source>
-        <translation>Abilita/Disabilita il raggruppamento corrente</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3597"/>
-        <source>Toggle &amp;current fold</source>
-        <translation>Abilita/Disabilita il raggruppamento &amp;corrente</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3603"/>
         <source>&lt;b&gt;Toggle current fold&lt;/b&gt;&lt;p&gt;Toggle the folds of the current line of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Abilita/Disabilita il raggruppamento corrente&lt;/b&gt;&lt;p&gt;Abilita/Disabilita il raggruppamento alla riga corrente dell&apos;editor.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3631"/>
+        <source>Remove all highlights</source>
+        <translation>Rimuovi tutti gli highlight</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3633"/>
-        <source>Remove all highlights</source>
-        <translation>Rimuovi tutti gli highlight</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3635"/>
         <source>&lt;b&gt;Remove all highlights&lt;/b&gt;&lt;p&gt;Remove the highlights of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rimuovi tutti gli highlight&lt;/b&gt;&lt;p&gt;Rimuovi tutti gli highlight da tutti gli editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3681"/>
+        <location filename="../ViewManager/ViewManager.py" line="3679"/>
         <source>Split view</source>
         <translation>Dividi vista</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3681"/>
+        <location filename="../ViewManager/ViewManager.py" line="3679"/>
         <source>&amp;Split view</source>
         <translation>Dividi vi&amp;sta</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3684"/>
+        <source>Add a split to the view</source>
+        <translation>Aggiungi un divisione alla vista</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3686"/>
-        <source>Add a split to the view</source>
-        <translation>Aggiungi un divisione alla vista</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3688"/>
         <source>&lt;b&gt;Split view&lt;/b&gt;&lt;p&gt;Add a split to the view.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Dividi vista&lt;/b&gt;&lt;p&gt;Aggiungi un divisione alla vista.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3696"/>
+        <location filename="../ViewManager/ViewManager.py" line="3694"/>
         <source>Arrange horizontally</source>
         <translation>Sistema orizzontalmente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3696"/>
+        <location filename="../ViewManager/ViewManager.py" line="3694"/>
         <source>Arrange &amp;horizontally</source>
         <translation>Sistema o&amp;rizzontalmente</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3698"/>
+        <source>Arrange the splitted views horizontally</source>
+        <translation>Sistema le finestre divise orizzontalmente</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3700"/>
-        <source>Arrange the splitted views horizontally</source>
-        <translation>Sistema le finestre divise orizzontalmente</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3702"/>
         <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Sistema orizzontalmente&lt;/b&gt;&lt;p&gt;Sistema le finestre divise orizzontalmente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3711"/>
+        <location filename="../ViewManager/ViewManager.py" line="3709"/>
         <source>Remove split</source>
         <translation>Rimuovi divisione</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3711"/>
+        <location filename="../ViewManager/ViewManager.py" line="3709"/>
         <source>&amp;Remove split</source>
         <translation>&amp;Rimuovi divisione</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3714"/>
+        <source>Remove the current split</source>
+        <translation>Rimuovi la divisione corrente</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3716"/>
-        <source>Remove the current split</source>
-        <translation>Rimuovi la divisione corrente</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3718"/>
         <source>&lt;b&gt;Remove split&lt;/b&gt;&lt;p&gt;Remove the current split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rimuovi divisione&lt;/b&gt;&lt;p&gt;Rimuovi la divisione corrente.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3906"/>
+        <source>Start Macro Recording</source>
+        <translation>Avvia registrazione della macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3900"/>
+        <source>S&amp;tart Macro Recording</source>
+        <translation>Avvia regis&amp;trazione della macro</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3908"/>
-        <source>Start Macro Recording</source>
-        <translation>Avvia registrazione della macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3902"/>
-        <source>S&amp;tart Macro Recording</source>
-        <translation>Avvia regis&amp;trazione della macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3910"/>
         <source>&lt;b&gt;Start Macro Recording&lt;/b&gt;&lt;p&gt;Start recording editor commands into a new macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Avvia registrazione della macro&lt;/b&gt;&lt;p&gt;Avvia la registrazione dei comandi dell&apos;editor in una nuova macro.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3920"/>
+        <source>Stop Macro Recording</source>
+        <translation>Interrompi registrazione macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3916"/>
+        <source>Sto&amp;p Macro Recording</source>
+        <translation>Interrom&amp;pi registrazione macro</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3922"/>
-        <source>Stop Macro Recording</source>
-        <translation>Interrompi registrazione macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3918"/>
-        <source>Sto&amp;p Macro Recording</source>
-        <translation>Interrom&amp;pi registrazione macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3924"/>
         <source>&lt;b&gt;Stop Macro Recording&lt;/b&gt;&lt;p&gt;Stop recording editor commands into a new macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Interrompi registrazione macro&lt;/b&gt;&lt;p&gt;Interrompi la registrazione dei comandi dell&apos;editor in una nuova macro.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3934"/>
+        <source>Run Macro</source>
+        <translation>Esegui Macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3930"/>
+        <source>&amp;Run Macro</source>
+        <translation>Esegui Mac&amp;ro</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3936"/>
-        <source>Run Macro</source>
-        <translation>Esegui Macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3932"/>
-        <source>&amp;Run Macro</source>
-        <translation>Esegui Mac&amp;ro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3938"/>
         <source>&lt;b&gt;Run Macro&lt;/b&gt;&lt;p&gt;Run a previously recorded editor macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Esegui Macro&lt;/b&gt;&lt;p&gt;Esegui una macro precedentemente registrata.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3948"/>
+        <source>Delete Macro</source>
+        <translation>Cancella Macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3944"/>
+        <source>&amp;Delete Macro</source>
+        <translation>Canc&amp;ella Macro</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3950"/>
-        <source>Delete Macro</source>
-        <translation>Cancella Macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3946"/>
-        <source>&amp;Delete Macro</source>
-        <translation>Canc&amp;ella Macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3952"/>
         <source>&lt;b&gt;Delete Macro&lt;/b&gt;&lt;p&gt;Delete a previously recorded editor macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Cancella Macro&lt;/b&gt;&lt;p&gt;Cancella una macro precedentemente registrata.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3962"/>
+        <source>Load Macro</source>
+        <translation>Carica Macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3958"/>
+        <source>&amp;Load Macro</source>
+        <translation>C&amp;arica Macro</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3964"/>
-        <source>Load Macro</source>
-        <translation>Carica Macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3960"/>
-        <source>&amp;Load Macro</source>
-        <translation>C&amp;arica Macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3966"/>
         <source>&lt;b&gt;Load Macro&lt;/b&gt;&lt;p&gt;Load an editor macro from a file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Carica Macro&lt;/b&gt;&lt;p&gt;Carica una macro da un file.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3976"/>
+        <source>Save Macro</source>
+        <translation>Salva Macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3972"/>
+        <source>&amp;Save Macro</source>
+        <translation>&amp;Salva Macro</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3978"/>
-        <source>Save Macro</source>
-        <translation>Salva Macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3974"/>
-        <source>&amp;Save Macro</source>
-        <translation>&amp;Salva Macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3980"/>
         <source>&lt;b&gt;Save Macro&lt;/b&gt;&lt;p&gt;Save a previously recorded editor macro to a file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Salva Macro&lt;/b&gt;&lt;p&gt;Salva una macro precedentemente registrata.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4020"/>
+        <source>Toggle Bookmark</source>
+        <translation>Inverti bookmark</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <source>&amp;Toggle Bookmark</source>
+        <translation>Inver&amp;ti bookmark</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4022"/>
-        <source>Toggle Bookmark</source>
-        <translation>Inverti bookmark</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4014"/>
-        <source>&amp;Toggle Bookmark</source>
-        <translation>Inver&amp;ti bookmark</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4024"/>
         <source>&lt;b&gt;Toggle Bookmark&lt;/b&gt;&lt;p&gt;Toggle a bookmark at the current line of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Toggle bookmark&lt;/b&gt;&lt;p&gt;Attiva un bookmark sulla linea corrente dell&apos;editor.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4039"/>
+        <source>Next Bookmark</source>
+        <translation>Prossimo segnalibro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4031"/>
+        <source>&amp;Next Bookmark</source>
+        <translation>Prossimo seg&amp;nalibro</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4041"/>
-        <source>Next Bookmark</source>
-        <translation>Prossimo segnalibro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4033"/>
-        <source>&amp;Next Bookmark</source>
-        <translation>Prossimo seg&amp;nalibro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4043"/>
         <source>&lt;b&gt;Next Bookmark&lt;/b&gt;&lt;p&gt;Go to next bookmark of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Prossimo segnalibro&lt;/b&gt;&lt;p&gt;Vai al segnalibro seguente dell&apos;editor.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4057"/>
+        <source>Previous Bookmark</source>
+        <translation>Segnalibro precedente</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4049"/>
+        <source>&amp;Previous Bookmark</source>
+        <translation>Segnalibro &amp;precedente</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4059"/>
-        <source>Previous Bookmark</source>
-        <translation>Segnalibro precedente</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4051"/>
-        <source>&amp;Previous Bookmark</source>
-        <translation>Segnalibro &amp;precedente</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4061"/>
         <source>&lt;b&gt;Previous Bookmark&lt;/b&gt;&lt;p&gt;Go to previous bookmark of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Segnalibro precedente&lt;/b&gt;&lt;p&gt;Va al segnalibro precedente dell&apos;editor corrente.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4074"/>
+        <source>Clear Bookmarks</source>
+        <translation>Pulisci segnalibri</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <source>&amp;Clear Bookmarks</source>
+        <translation>Pulis&amp;ci segnalibri</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4076"/>
-        <source>Clear Bookmarks</source>
-        <translation>Pulisci segnalibri</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4069"/>
-        <source>&amp;Clear Bookmarks</source>
-        <translation>Pulis&amp;ci segnalibri</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4078"/>
         <source>&lt;b&gt;Clear Bookmarks&lt;/b&gt;&lt;p&gt;Clear bookmarks of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Pulisci Segnalibri&lt;/b&gt;&lt;p&gt;Pulisci i segnalibri di tutti gli editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4287"/>
+        <location filename="../ViewManager/ViewManager.py" line="4285"/>
         <source>&amp;Bookmarks</source>
         <translation>Segnali&amp;bri</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4529"/>
+        <location filename="../ViewManager/ViewManager.py" line="4527"/>
         <source>File Modified</source>
         <translation>File modificato</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5373"/>
+        <location filename="../ViewManager/ViewManager.py" line="5371"/>
         <source>&amp;Clear</source>
         <translation>Pulis&amp;ci</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5367"/>
+        <location filename="../ViewManager/ViewManager.py" line="5365"/>
         <source>&amp;Add</source>
         <translation>&amp;Aggiungi</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5370"/>
+        <location filename="../ViewManager/ViewManager.py" line="5368"/>
         <source>&amp;Edit...</source>
         <translation>&amp;Modifica...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="816"/>
+        <location filename="../ViewManager/ViewManager.py" line="815"/>
         <source>Search File</source>
         <translation>Cerca File</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="816"/>
+        <location filename="../ViewManager/ViewManager.py" line="815"/>
         <source>Search &amp;File...</source>
         <translation>Cerca &amp;File...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="822"/>
+        <location filename="../ViewManager/ViewManager.py" line="821"/>
         <source>Search for a file</source>
         <translation>Cerca un file</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="824"/>
+        <location filename="../ViewManager/ViewManager.py" line="823"/>
         <source>&lt;b&gt;Search File&lt;/b&gt;&lt;p&gt;Search for a file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Cerca file&lt;/b&gt;&lt;p&gt;Cerca un file.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1345"/>
+        <location filename="../ViewManager/ViewManager.py" line="1344"/>
         <source>Complete from Document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1355"/>
+        <location filename="../ViewManager/ViewManager.py" line="1354"/>
         <source>Complete current word from Document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1358"/>
+        <location filename="../ViewManager/ViewManager.py" line="1357"/>
         <source>&lt;b&gt;Complete from Document&lt;/b&gt;&lt;p&gt;Performs a completion from document of the word containing the cursor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1368"/>
+        <location filename="../ViewManager/ViewManager.py" line="1367"/>
         <source>Complete from APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1378"/>
+        <location filename="../ViewManager/ViewManager.py" line="1377"/>
         <source>Complete current word from APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1381"/>
+        <location filename="../ViewManager/ViewManager.py" line="1380"/>
         <source>&lt;b&gt;Complete from APIs&lt;/b&gt;&lt;p&gt;Performs a completion from APIs of the word containing the cursor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4090"/>
+        <source>Goto Syntax Error</source>
+        <translation>Vai all&apos;errore di sintassi</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4084"/>
+        <source>&amp;Goto Syntax Error</source>
+        <translation>&amp;Vai all&apos;errore di sintassi</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4092"/>
-        <source>Goto Syntax Error</source>
-        <translation>Vai all&apos;errore di sintassi</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4086"/>
-        <source>&amp;Goto Syntax Error</source>
-        <translation>&amp;Vai all&apos;errore di sintassi</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4094"/>
         <source>&lt;b&gt;Goto Syntax Error&lt;/b&gt;&lt;p&gt;Go to next syntax error of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vai all&apos;errore di sintassi&lt;/b&gt;&lt;p&gt;Vai all&apos;errore di sintassi successivo dell&apos;editor corrente.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4105"/>
+        <source>Clear Syntax Errors</source>
+        <translation>Pulisci errori di sintassi</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4100"/>
+        <source>Clear &amp;Syntax Errors</source>
+        <translation>Pulisci errori di &amp;sintassi</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4107"/>
-        <source>Clear Syntax Errors</source>
-        <translation>Pulisci errori di sintassi</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4102"/>
-        <source>Clear &amp;Syntax Errors</source>
-        <translation>Pulisci errori di &amp;sintassi</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4109"/>
         <source>&lt;b&gt;Clear Syntax Errors&lt;/b&gt;&lt;p&gt;Clear syntax errors of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Pulisci errori di sintassi&lt;/b&gt;&lt;p&gt;Pulisci gli errori di sintassi da tutti gli editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="938"/>
+        <location filename="../ViewManager/ViewManager.py" line="937"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation>Alt+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation>Shift+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1037"/>
+        <location filename="../ViewManager/ViewManager.py" line="1036"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation>Shift+Ins</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2013"/>
+        <location filename="../ViewManager/ViewManager.py" line="2012"/>
         <source>Shift+Backspace</source>
         <translation>Shift+Backspace</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4175"/>
+        <source>Next uncovered line</source>
+        <translation>Prossima linea non analizzata</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4169"/>
+        <source>&amp;Next uncovered line</source>
+        <translation>Prossima linea &amp;non analizzata</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4177"/>
-        <source>Next uncovered line</source>
-        <translation>Prossima linea non analizzata</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4171"/>
-        <source>&amp;Next uncovered line</source>
-        <translation>Prossima linea &amp;non analizzata</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4179"/>
         <source>&lt;b&gt;Next uncovered line&lt;/b&gt;&lt;p&gt;Go to next line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Prossima linea  non analizzata&lt;/b&gt;&lt;p&gt;Vai alla prossima riga dell&apos;editor corrente marcato come non analizzata.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4194"/>
+        <source>Previous uncovered line</source>
+        <translation>Linea non analizzata precedente</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4186"/>
+        <source>&amp;Previous uncovered line</source>
+        <translation>Linea non analizzata &amp;precedente</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4196"/>
-        <source>Previous uncovered line</source>
-        <translation>Linea non analizzata precedente</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4188"/>
-        <source>&amp;Previous uncovered line</source>
-        <translation>Linea non analizzata &amp;precedente</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4198"/>
         <source>&lt;b&gt;Previous uncovered line&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Linea non analizzata precedente&lt;/b&gt;&lt;p&gt;Vai alla prossima riga dell&apos;editor corrente marcato come non analizzata.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="662"/>
+        <location filename="../ViewManager/ViewManager.py" line="661"/>
         <source>Open a file</source>
         <translation>Apri un file</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="664"/>
+        <location filename="../ViewManager/ViewManager.py" line="663"/>
         <source>&lt;b&gt;Open a file&lt;/b&gt;&lt;p&gt;You will be asked for the name of a file to be opened in an editor window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Apri un file&lt;/b&gt;&lt;p&gt;Verrà richiesto il nome del file da aprire in una finestra dell&apos;editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3389"/>
+        <location filename="../ViewManager/ViewManager.py" line="3387"/>
         <source>Quicksearch</source>
         <translation>Quicksearch</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3090"/>
+        <location filename="../ViewManager/ViewManager.py" line="3088"/>
         <source>Ctrl+Shift+K</source>
         <comment>Search|Quicksearch</comment>
         <translation>Ctrl+Shift+K</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3098"/>
+        <location filename="../ViewManager/ViewManager.py" line="3096"/>
         <source>Perform a quicksearch</source>
         <translation>Esegui un quicksearch</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3111"/>
+        <location filename="../ViewManager/ViewManager.py" line="3109"/>
         <source>Quicksearch backwards</source>
         <translation>Quicksearch all&apos;indietro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3111"/>
+        <location filename="../ViewManager/ViewManager.py" line="3109"/>
         <source>Ctrl+Shift+J</source>
         <comment>Search|Quicksearch backwards</comment>
         <translation>Ctrl+Shift+J</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3121"/>
+        <location filename="../ViewManager/ViewManager.py" line="3119"/>
         <source>Perform a quicksearch backwards</source>
         <translation>Esegui una quicksearch all&apos;indietro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3090"/>
+        <location filename="../ViewManager/ViewManager.py" line="3088"/>
         <source>&amp;Quicksearch</source>
         <translation>&amp;Quicksearch</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3111"/>
+        <location filename="../ViewManager/ViewManager.py" line="3109"/>
         <source>Quicksearch &amp;backwards</source>
         <translation>Quicksearch &amp;all&apos;indietro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3133"/>
+        <location filename="../ViewManager/ViewManager.py" line="3131"/>
         <source>Quicksearch extend</source>
         <translation>Quicksearch estesa</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3133"/>
+        <location filename="../ViewManager/ViewManager.py" line="3131"/>
         <source>Quicksearch e&amp;xtend</source>
         <translation>Quicksearch es&amp;tesa</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3133"/>
+        <location filename="../ViewManager/ViewManager.py" line="3131"/>
         <source>Ctrl+Shift+H</source>
         <comment>Search|Quicksearch extend</comment>
         <translation>Ctrl+Shift+H</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3141"/>
+        <location filename="../ViewManager/ViewManager.py" line="3139"/>
         <source>Extend the quicksearch to the end of the current word</source>
         <translation>Estenti la quicksearch alla fine della parola corrente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3144"/>
+        <location filename="../ViewManager/ViewManager.py" line="3142"/>
         <source>&lt;b&gt;Quicksearch extend&lt;/b&gt;&lt;p&gt;This extends the quicksearch text to the end of the word currently found.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Quicksearch estesa&lt;/b&gt;&lt;p&gt;Estende il testo della quicksearch alla fine della parola trovata.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1130"/>
+        <location filename="../ViewManager/ViewManager.py" line="1129"/>
         <source>Smart indent</source>
         <translation>Smart indent</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1136"/>
+        <location filename="../ViewManager/ViewManager.py" line="1135"/>
         <source>Smart indent Line or Selection</source>
         <translation>Smart indent di una Linea o Selezione</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1138"/>
+        <location filename="../ViewManager/ViewManager.py" line="1137"/>
         <source>&lt;b&gt;Smart indent&lt;/b&gt;&lt;p&gt;Indents the current line or the lines of the current selection smartly.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Smart indent&lt;/b&gt;&lt;p&gt;Indenta la riga attuale o le righe selezionate in maniera furba.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3726"/>
+        <location filename="../ViewManager/ViewManager.py" line="3724"/>
         <source>Next split</source>
         <translation>Prossima divisione</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3726"/>
+        <location filename="../ViewManager/ViewManager.py" line="3724"/>
         <source>&amp;Next split</source>
         <translation>Prossima divisio&amp;ne</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3731"/>
+        <source>Move to the next split</source>
+        <translation>Vai alla prossima divisione</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3733"/>
-        <source>Move to the next split</source>
-        <translation>Vai alla prossima divisione</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3735"/>
         <source>&lt;b&gt;Next split&lt;/b&gt;&lt;p&gt;Move to the next split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Prossima divisione&lt;/b&gt;&lt;p&gt;Vai alla prossima divisione.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3743"/>
+        <location filename="../ViewManager/ViewManager.py" line="3741"/>
         <source>Previous split</source>
         <translation>Divisione precedente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3743"/>
+        <location filename="../ViewManager/ViewManager.py" line="3741"/>
         <source>&amp;Previous split</source>
         <translation>Divisione &amp;precedente</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3747"/>
+        <source>Move to the previous split</source>
+        <translation>Vai alla divisione precedente</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3749"/>
-        <source>Move to the previous split</source>
-        <translation>Vai alla divisione precedente</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3751"/>
         <source>&lt;b&gt;Previous split&lt;/b&gt;&lt;p&gt;Move to the previous split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Divisione precedente&lt;/b&gt;&lt;p&gt;Vai alla divisione precedente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2093"/>
+        <location filename="../ViewManager/ViewManager.py" line="2092"/>
         <source>Enter</source>
         <translation>Enter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1401"/>
+        <location filename="../ViewManager/ViewManager.py" line="1400"/>
         <source>Complete current word from Document and APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1391"/>
+        <location filename="../ViewManager/ViewManager.py" line="1390"/>
         <source>Complete from Document and APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1404"/>
+        <location filename="../ViewManager/ViewManager.py" line="1403"/>
         <source>&lt;b&gt;Complete from Document and APIs&lt;/b&gt;&lt;p&gt;Performs a completion from document and APIs of the word containing the cursor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3583"/>
+        <source>Toggle all folds (including children)</source>
+        <translation>Abilita/Disabilita tutti i raggruppamenti (inclusi i figli)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3577"/>
+        <source>Toggle all &amp;folds (including children)</source>
+        <translation>Abilita/Disabilita tutti i raggruppamenti (inclusi i &amp;figli)</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3585"/>
-        <source>Toggle all folds (including children)</source>
-        <translation>Abilita/Disabilita tutti i raggruppamenti (inclusi i figli)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3579"/>
-        <source>Toggle all &amp;folds (including children)</source>
-        <translation>Abilita/Disabilita tutti i raggruppamenti (inclusi i &amp;figli)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3587"/>
         <source>&lt;b&gt;Toggle all folds (including children)&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor including all children.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Abilita/Disabilita tutti i raggruppamenti (inclusi i figli)&lt;/b&gt;&lt;p&gt;Abilita/Disabilita tutti i raggruppamenti dell&apos;edito inclusi i figli.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2381"/>
+        <location filename="../ViewManager/ViewManager.py" line="2379"/>
         <source>Duplicate current selection</source>
         <translation>Duplica la selezione corrente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2381"/>
+        <location filename="../ViewManager/ViewManager.py" line="2379"/>
         <source>Ctrl+Shift+D</source>
         <translation>Ctrl+Shift+D</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="635"/>
+        <location filename="../ViewManager/ViewManager.py" line="634"/>
         <source>Ctrl+N</source>
         <comment>File|New</comment>
         <translation>Ctrl+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="654"/>
+        <location filename="../ViewManager/ViewManager.py" line="653"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation>Ctrl+O</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="675"/>
+        <location filename="../ViewManager/ViewManager.py" line="674"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation>Ctrl+W</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="712"/>
         <source>Ctrl+S</source>
         <comment>File|Save</comment>
         <translation>Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="729"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation>Ctrl+Shift+S</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="781"/>
+        <location filename="../ViewManager/ViewManager.py" line="780"/>
         <source>Ctrl+P</source>
         <comment>File|Print</comment>
         <translation>Ctrl+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="816"/>
+        <location filename="../ViewManager/ViewManager.py" line="815"/>
         <source>Alt+Ctrl+F</source>
         <comment>File|Search File</comment>
         <translation>Alt+Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="838"/>
+        <location filename="../ViewManager/ViewManager.py" line="837"/>
         <source>&amp;File</source>
         <translation>&amp;File</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="891"/>
+        <location filename="../ViewManager/ViewManager.py" line="890"/>
         <source>File</source>
         <translation>File</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="938"/>
+        <location filename="../ViewManager/ViewManager.py" line="937"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation>Ctrl+Z</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="957"/>
+        <location filename="../ViewManager/ViewManager.py" line="956"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation>Ctrl+Shift+Z</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="975"/>
+        <location filename="../ViewManager/ViewManager.py" line="974"/>
         <source>Ctrl+Y</source>
         <comment>Edit|Revert</comment>
         <translation>Ctrl+Y</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation>Ctrl+X</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1017"/>
+        <location filename="../ViewManager/ViewManager.py" line="1016"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1017"/>
+        <location filename="../ViewManager/ViewManager.py" line="1016"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+Ins</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1037"/>
+        <location filename="../ViewManager/ViewManager.py" line="1036"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation>Ctrl+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1057"/>
+        <location filename="../ViewManager/ViewManager.py" line="1056"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation>Alt+Shift+C</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1092"/>
+        <location filename="../ViewManager/ViewManager.py" line="1091"/>
         <source>Ctrl+I</source>
         <comment>Edit|Indent</comment>
         <translation>Ctrl+I</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1111"/>
+        <location filename="../ViewManager/ViewManager.py" line="1110"/>
         <source>Ctrl+Shift+I</source>
         <comment>Edit|Unindent</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1147"/>
+        <location filename="../ViewManager/ViewManager.py" line="1146"/>
         <source>Ctrl+M</source>
         <comment>Edit|Comment</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1166"/>
+        <location filename="../ViewManager/ViewManager.py" line="1165"/>
         <source>Alt+Ctrl+M</source>
         <comment>Edit|Uncomment</comment>
         <translation>Alt+Ctrl+M</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1240"/>
+        <location filename="../ViewManager/ViewManager.py" line="1239"/>
         <source>Ctrl+E</source>
         <comment>Edit|Select to brace</comment>
         <translation>Ctrl+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1258"/>
+        <location filename="../ViewManager/ViewManager.py" line="1257"/>
         <source>Ctrl+A</source>
         <comment>Edit|Select all</comment>
         <translation>Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1275"/>
         <source>Alt+Ctrl+A</source>
         <comment>Edit|Deselect all</comment>
         <translation>Alt+Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2788"/>
+        <location filename="../ViewManager/ViewManager.py" line="2786"/>
         <source>&amp;Edit</source>
         <translation>&amp;Edita</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2845"/>
+        <location filename="../ViewManager/ViewManager.py" line="2843"/>
         <source>Edit</source>
         <translation>Modifica</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2877"/>
+        <location filename="../ViewManager/ViewManager.py" line="2875"/>
         <source>Ctrl+F</source>
         <comment>Search|Search</comment>
         <translation>Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3003"/>
+        <location filename="../ViewManager/ViewManager.py" line="3001"/>
         <source>Ctrl+R</source>
         <comment>Search|Replace</comment>
         <translation>Ctrl+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3154"/>
+        <location filename="../ViewManager/ViewManager.py" line="3152"/>
         <source>Ctrl+G</source>
         <comment>Search|Goto Line</comment>
         <translation>Ctrl+G</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3173"/>
+        <location filename="../ViewManager/ViewManager.py" line="3171"/>
         <source>Ctrl+L</source>
         <comment>Search|Goto Brace</comment>
         <translation>Ctrl+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3261"/>
+        <location filename="../ViewManager/ViewManager.py" line="3259"/>
         <source>Shift+Ctrl+F</source>
         <comment>Search|Search Files</comment>
         <translation>Shift+Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3487"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation>Ctrl++</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3508"/>
+        <location filename="../ViewManager/ViewManager.py" line="3506"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation>Ctrl+-</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3546"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>Ctrl+#</source>
         <comment>View|Zoom</comment>
         <translation>Ctrl+#</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3726"/>
+        <location filename="../ViewManager/ViewManager.py" line="3724"/>
         <source>Ctrl+Alt+N</source>
         <comment>View|Next split</comment>
         <translation>Ctrl+Alt+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3743"/>
+        <location filename="../ViewManager/ViewManager.py" line="3741"/>
         <source>Ctrl+Alt+P</source>
         <comment>View|Previous split</comment>
         <translation>Ctrl+Alt+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3835"/>
+        <location filename="../ViewManager/ViewManager.py" line="3833"/>
         <source>&amp;View</source>
         <translation>&amp;Visualizza</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3872"/>
+        <location filename="../ViewManager/ViewManager.py" line="3870"/>
         <source>View</source>
         <translation>Visualizza</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3996"/>
+        <location filename="../ViewManager/ViewManager.py" line="3994"/>
         <source>&amp;Macros</source>
         <translation>&amp;Macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4014"/>
+        <location filename="../ViewManager/ViewManager.py" line="4012"/>
         <source>Alt+Ctrl+T</source>
         <comment>Bookmark|Toggle</comment>
         <translation>Alt+Ctrl+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4033"/>
+        <location filename="../ViewManager/ViewManager.py" line="4031"/>
         <source>Ctrl+PgDown</source>
         <comment>Bookmark|Next</comment>
         <translation>Ctrl+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4051"/>
+        <location filename="../ViewManager/ViewManager.py" line="4049"/>
         <source>Ctrl+PgUp</source>
         <comment>Bookmark|Previous</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4069"/>
+        <location filename="../ViewManager/ViewManager.py" line="4067"/>
         <source>Alt+Ctrl+C</source>
         <comment>Bookmark|Clear</comment>
         <translation>Alt+Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4333"/>
+        <location filename="../ViewManager/ViewManager.py" line="4331"/>
         <source>Bookmarks</source>
         <translation>Segnalibri</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4485"/>
+        <location filename="../ViewManager/ViewManager.py" line="4483"/>
         <source>Open files</source>
         <translation>Apri Files</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4212"/>
+        <source>Next Task</source>
+        <translation>Task seguente</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4206"/>
+        <source>&amp;Next Task</source>
+        <translation>Task segue&amp;nte</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4214"/>
-        <source>Next Task</source>
-        <translation>Task seguente</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4208"/>
-        <source>&amp;Next Task</source>
-        <translation>Task segue&amp;nte</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4216"/>
         <source>&lt;b&gt;Next Task&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a task.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Task seguente&lt;/b&gt;&lt;p&gt;Vai alla prossima riga dell&apos;editor che ha un task.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4229"/>
+        <source>Previous Task</source>
+        <translation>Task Precedente</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4222"/>
+        <source>&amp;Previous Task</source>
+        <translation>Task &amp;Precedente</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4231"/>
-        <source>Previous Task</source>
-        <translation>Task Precedente</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4224"/>
-        <source>&amp;Previous Task</source>
-        <translation>Task &amp;Precedente</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4233"/>
         <source>&lt;b&gt;Previous Task&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a task.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Task Precedente&lt;/b&gt;&lt;p&gt;Vai alla precedente riga dell&apos;editor che ha un task.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3354"/>
+        <location filename="../ViewManager/ViewManager.py" line="3352"/>
         <source>&amp;Search</source>
         <translation>&amp;Ricerca</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2897"/>
+        <location filename="../ViewManager/ViewManager.py" line="2895"/>
         <source>Search next</source>
         <translation>Cerca seguente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2897"/>
+        <location filename="../ViewManager/ViewManager.py" line="2895"/>
         <source>Search &amp;next</source>
         <translation>Cerca segue&amp;nte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2897"/>
+        <location filename="../ViewManager/ViewManager.py" line="2895"/>
         <source>F3</source>
         <comment>Search|Search next</comment>
         <translation>F3</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2918"/>
+        <location filename="../ViewManager/ViewManager.py" line="2916"/>
         <source>Search previous</source>
         <translation>Cerca precedente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2918"/>
+        <location filename="../ViewManager/ViewManager.py" line="2916"/>
         <source>Search &amp;previous</source>
         <translation>Cerca &amp;precedente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2918"/>
+        <location filename="../ViewManager/ViewManager.py" line="2916"/>
         <source>Shift+F3</source>
         <comment>Search|Search previous</comment>
         <translation>Shift+F3</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1249"/>
+        <location filename="../ViewManager/ViewManager.py" line="1248"/>
         <source>&lt;b&gt;Select to brace&lt;/b&gt;&lt;p&gt;Select text of the current editor to the matching brace.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Seleziona fino alla parentesi&lt;/b&gt;&lt;p&gt;Seleziona il testo dell&apos;editor fino alla parentesi corrispondente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1268"/>
+        <location filename="../ViewManager/ViewManager.py" line="1267"/>
         <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Select all text of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Seleziona tutto&lt;/b&gt;&lt;p&gt;Seleziona tutto il testo dell&apos;editor corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1285"/>
+        <location filename="../ViewManager/ViewManager.py" line="1284"/>
         <source>&lt;b&gt;Deselect All&lt;/b&gt;&lt;p&gt;Deselect all text of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Deseleziona tutto&lt;/b&gt;&lt;p&gt;Deseleziona tutto il testo dell&apos;editor corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="914"/>
+        <location filename="../ViewManager/ViewManager.py" line="913"/>
         <source>Export as</source>
         <translation>Esporta come</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3435"/>
+        <location filename="../ViewManager/ViewManager.py" line="3433"/>
         <source>Quicksearch Textedit</source>
         <translation>Quicksearch Textedit</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1414"/>
+        <location filename="../ViewManager/ViewManager.py" line="1413"/>
         <source>Calltip</source>
         <translation>Calltip</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1414"/>
+        <location filename="../ViewManager/ViewManager.py" line="1413"/>
         <source>&amp;Calltip</source>
         <translation>&amp;Calltip</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1414"/>
+        <location filename="../ViewManager/ViewManager.py" line="1413"/>
         <source>Meta+Alt+Space</source>
         <comment>Edit|Calltip</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1421"/>
+        <location filename="../ViewManager/ViewManager.py" line="1420"/>
         <source>Show Calltips</source>
         <translation>Mostra Calltip</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1423"/>
+        <location filename="../ViewManager/ViewManager.py" line="1422"/>
         <source>&lt;b&gt;Calltip&lt;/b&gt;&lt;p&gt;Show calltips based on the characters immediately to the left of the cursor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Calltip&lt;/b&gt;&lt;p&gt;Mostra calltip basati sul carattere immediatamente a sinistra del cursore.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="2904"/>
+        <source>Search next occurrence of text</source>
+        <translation>Cerca prossima ricorrenza del testo</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="2906"/>
-        <source>Search next occurrence of text</source>
-        <translation>Cerca prossima ricorrenza del testo</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2908"/>
         <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&apos;editor corrente. Il testo inserito precedentemente e opzioni verranno riutilizzate.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="2924"/>
+        <source>Search previous occurrence of text</source>
+        <translation>Cerca la precedente  ricorrenza del testo</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="2926"/>
-        <source>Search previous occurrence of text</source>
-        <translation>Cerca la precedente  ricorrenza del testo</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2928"/>
         <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&apos;editor corrente. Il testo inserito precedentemente e opzioni verranno riutilizzate.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2938"/>
+        <location filename="../ViewManager/ViewManager.py" line="2936"/>
         <source>Clear search markers</source>
         <translation>Pulisci marcatori di ricerca</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2938"/>
+        <location filename="../ViewManager/ViewManager.py" line="2936"/>
         <source>Ctrl+3</source>
         <comment>Search|Clear search markers</comment>
         <translation>Ctrl+3</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="2944"/>
+        <source>Clear all displayed search markers</source>
+        <translation>Pulisci tutti i marcatori di ricerca mostrati</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="2946"/>
-        <source>Clear all displayed search markers</source>
-        <translation>Pulisci tutti i marcatori di ricerca mostrati</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2948"/>
         <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="3100"/>
+        <location filename="../ViewManager/ViewManager.py" line="3098"/>
         <source>&lt;b&gt;Quicksearch&lt;/b&gt;&lt;p&gt;This activates the quicksearch function of the IDE by giving focus to the quicksearch entry field. If this field is already active and contains text, it searches for the next occurrence of this text.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Quicksearch&lt;/b&gt;&lt;p&gt;Attiva la ricerca veloce dell&apos;IDE attivando il focus del campo ricerca veloce. Se il campo è già attivo e contiene del testo, viene cercata la successiva occorrenza del testo.&lt;/P&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3124"/>
+        <location filename="../ViewManager/ViewManager.py" line="3122"/>
         <source>&lt;b&gt;Quicksearch backwards&lt;/b&gt;&lt;p&gt;This searches the previous occurrence of the quicksearch text.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Quicksearch all&apos;indietro&lt;/b&gt;&lt;p&gt;Cerca la precedente occorrenza del testo della ricerca veloce.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3408"/>
+        <location filename="../ViewManager/ViewManager.py" line="3406"/>
         <source>&lt;p&gt;Enter the searchtext directly into this field. The search will be performed case insensitive. The quicksearch function is activated upon activation of the quicksearch next action (default key Ctrl+Shift+K), if this entry field does not have the input focus. Otherwise it searches for the next occurrence of the text entered. The quicksearch backwards action (default key Ctrl+Shift+J) searches backward. Activating the &apos;quicksearch extend&apos; action (default key Ctrl+Shift+H) extends the current searchtext to the end of the currently found word. The quicksearch can be ended by pressing the Return key while the quicksearch entry has the the input focus.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Inserisci il testo da cercare direttamente in questo campo. La ricerca verrà effettuata ignorando le maiuscole/minuscole. La funzione quicksearch è attivata dall&apos;azione di ricerca della successiva (tasto default Ctrl+Shift+K), se questo campo non ha il focus. Altrimenti cerca per la successiva occorrenza del testo inserito. La quicksearch all&apos;indietro (tasto default Ctrl+Shift+J) cerca la precedente occorrenza. Attivando la &apos;quicksearch estesa&apos; (tasto default Ctrl+Shift+H) estende la ricerca alla fine della parola trovata. La ricerca veloce può essere conclusa premento Return mentre il campo di input ha il focus.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="799"/>
+        <location filename="../ViewManager/ViewManager.py" line="798"/>
         <source>Print Preview</source>
         <translation>Anteprima Stampa</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="804"/>
+        <location filename="../ViewManager/ViewManager.py" line="803"/>
         <source>Print preview of the current file</source>
         <translation>Antreprima del file corrente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="806"/>
+        <location filename="../ViewManager/ViewManager.py" line="805"/>
         <source>&lt;b&gt;Print Preview&lt;/b&gt;&lt;p&gt;Print preview of the current editor window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Anteprima di stampa&lt;/b&gt;&lt;p&gt;Anteprima di stampa del file corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2103"/>
+        <location filename="../ViewManager/ViewManager.py" line="2102"/>
         <source>Insert new line below current line</source>
         <translation>Inserisci una nuova riga sotto la linea corrente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2103"/>
+        <location filename="../ViewManager/ViewManager.py" line="2102"/>
         <source>Shift+Return</source>
         <translation>Shift+Return</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2103"/>
+        <location filename="../ViewManager/ViewManager.py" line="2102"/>
         <source>Shift+Enter</source>
         <translation>Shift+Enter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3281"/>
+        <location filename="../ViewManager/ViewManager.py" line="3279"/>
         <source>Replace in Files</source>
         <translation>Sostituisci nei file</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3281"/>
+        <location filename="../ViewManager/ViewManager.py" line="3279"/>
         <source>Replace in F&amp;iles...</source>
         <translation>Sostituisci nei f&amp;ile...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3281"/>
+        <location filename="../ViewManager/ViewManager.py" line="3279"/>
         <source>Shift+Ctrl+R</source>
         <comment>Search|Replace in Files</comment>
         <translation>Shift+Ctrl+R</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3286"/>
+        <source>Search for a text in files and replace it</source>
+        <translation>Cerca e sostituisci un testo nei file</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3288"/>
-        <source>Search for a text in files and replace it</source>
-        <translation>Cerca e sostituisci un testo nei file</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3290"/>
         <source>&lt;b&gt;Replace in Files&lt;/b&gt;&lt;p&gt;Search for some text in the files of a directory tree or the project and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and to display the result.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Sostituisci nei File&lt;/b&gt;&lt;p&gt;Cerca per del testo nei file di una direcotry o del progetto e lo sostituisce. Un dialogo viene mostrato per inserire il testo da cercare, il testo da inserire e le opzioni per la ricerca e la visualizzazione del risultato.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4366"/>
+        <location filename="../ViewManager/ViewManager.py" line="4364"/>
         <source>Shift+F7</source>
         <comment>Spelling|Spell Check</comment>
         <translation>Shift+F7</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4375"/>
+        <location filename="../ViewManager/ViewManager.py" line="4373"/>
         <source>Perform spell check of current editor</source>
         <translation>Esegui la correzione automatica nella finestra corrente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4385"/>
+        <location filename="../ViewManager/ViewManager.py" line="4383"/>
         <source>Automatic spell checking</source>
         <translation>Controllo sintassi automatico</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4385"/>
+        <location filename="../ViewManager/ViewManager.py" line="4383"/>
         <source>&amp;Automatic spell checking</source>
         <translation>Controllo sintassi &amp;automatico</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4391"/>
+        <source>(De-)Activate automatic spell checking</source>
+        <translation>(Dis-)Attiva il controllo sintassi automatico</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4393"/>
-        <source>(De-)Activate automatic spell checking</source>
-        <translation>(Dis-)Attiva il controllo sintassi automatico</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4395"/>
         <source>&lt;b&gt;Automatic spell checking&lt;/b&gt;&lt;p&gt;Activate or deactivate the automatic spell checking function of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Controllo sintassi automatico&lt;/b&gt;&lt;p&gt;Attiva o disattiva la funzione di controllo sintassi automatico per tutti gli editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4462"/>
+        <location filename="../ViewManager/ViewManager.py" line="4460"/>
         <source>Spelling</source>
         <translation>Spelling</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4529"/>
+        <location filename="../ViewManager/ViewManager.py" line="4527"/>
         <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="../ViewManager/ViewManager.py" line="4928"/>
+        <location filename="../ViewManager/ViewManager.py" line="4926"/>
         <source>Line: {0:5}</source>
         <translation>Linea: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4934"/>
+        <location filename="../ViewManager/ViewManager.py" line="4932"/>
         <source>Pos: {0:5}</source>
         <translation>Pos: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4124"/>
+        <location filename="../ViewManager/ViewManager.py" line="4122"/>
         <source>Next warning message</source>
         <translation>Warning successivo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4118"/>
+        <location filename="../ViewManager/ViewManager.py" line="4116"/>
         <source>&amp;Next warning message</source>
         <translation>Warni&amp;ng successivo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4143"/>
+        <location filename="../ViewManager/ViewManager.py" line="4141"/>
         <source>Previous warning message</source>
         <translation>Messaggio di warning precedente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4135"/>
+        <location filename="../ViewManager/ViewManager.py" line="4133"/>
         <source>&amp;Previous warning message</source>
         <translation>Messaggio di warning &amp;precedente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4161"/>
+        <location filename="../ViewManager/ViewManager.py" line="4159"/>
         <source>Clear Warning Messages</source>
         <translation>Pulisci messaggi di warning</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4154"/>
+        <location filename="../ViewManager/ViewManager.py" line="4152"/>
         <source>Clear &amp;Warning Messages</source>
         <translation>Pulisci messaggi di &amp;warning</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1082"/>
+        <location filename="../ViewManager/ViewManager.py" line="1081"/>
         <source>Join Lines</source>
         <translation>Unisci linee</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1075"/>
+        <location filename="../ViewManager/ViewManager.py" line="1074"/>
         <source>Ctrl+J</source>
         <comment>Edit|Join Lines</comment>
         <translation>Ctrl+J</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1084"/>
+        <location filename="../ViewManager/ViewManager.py" line="1083"/>
         <source>&lt;b&gt;Join Lines&lt;/b&gt;&lt;p&gt;Join the current and the next lines.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Unisci linee&lt;/b&gt;&lt;p&gt;Unisci la linea corrente e la successiva.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3202"/>
+        <location filename="../ViewManager/ViewManager.py" line="3200"/>
         <source>Goto Last Edit Location</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3191"/>
+        <location filename="../ViewManager/ViewManager.py" line="3189"/>
         <source>Goto Last &amp;Edit Location</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3191"/>
+        <location filename="../ViewManager/ViewManager.py" line="3189"/>
         <source>Ctrl+Shift+G</source>
         <comment>Search|Goto Last Edit Location</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3205"/>
+        <location filename="../ViewManager/ViewManager.py" line="3203"/>
         <source>&lt;b&gt;Goto Last Edit Location&lt;/b&gt;&lt;p&gt;Go to the location of the last edit in the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3214"/>
+        <location filename="../ViewManager/ViewManager.py" line="3212"/>
         <source>Goto Previous Method or Class</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3214"/>
+        <location filename="../ViewManager/ViewManager.py" line="3212"/>
         <source>Ctrl+Shift+Up</source>
         <comment>Search|Goto Previous Method or Class</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3224"/>
+        <location filename="../ViewManager/ViewManager.py" line="3222"/>
         <source>Go to the previous method or class definition</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3228"/>
+        <location filename="../ViewManager/ViewManager.py" line="3226"/>
         <source>&lt;b&gt;Goto Previous Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the previous method or class definition and highlights the name.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3238"/>
+        <location filename="../ViewManager/ViewManager.py" line="3236"/>
         <source>Goto Next Method or Class</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3238"/>
+        <location filename="../ViewManager/ViewManager.py" line="3236"/>
         <source>Ctrl+Shift+Down</source>
         <comment>Search|Goto Next Method or Class</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3246"/>
+        <source>Go to the next method or class definition</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3248"/>
-        <source>Go to the next method or class definition</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3250"/>
         <source>&lt;b&gt;Goto Next Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the next method or class definition and highlights the name.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3759"/>
+        <location filename="../ViewManager/ViewManager.py" line="3757"/>
         <source>Preview</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3762"/>
+        <source>Preview the current file in the web browser</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3764"/>
-        <source>Preview the current file in the web browser</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3766"/>
         <source>&lt;b&gt;Preview&lt;/b&gt;&lt;p&gt;This opens the web browser with a preview of the current file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1490"/>
+        <location filename="../ViewManager/ViewManager.py" line="1489"/>
         <source>Meta+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1503"/>
+        <location filename="../ViewManager/ViewManager.py" line="1502"/>
         <source>Meta+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1515"/>
+        <location filename="../ViewManager/ViewManager.py" line="1514"/>
         <source>Meta+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1527"/>
+        <location filename="../ViewManager/ViewManager.py" line="1526"/>
         <source>Meta+N</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1588"/>
+        <location filename="../ViewManager/ViewManager.py" line="1587"/>
         <source>Move to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1604"/>
+        <location filename="../ViewManager/ViewManager.py" line="1603"/>
         <source>Move to start of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1621"/>
+        <location filename="../ViewManager/ViewManager.py" line="1620"/>
         <source>Move to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1629"/>
+        <location filename="../ViewManager/ViewManager.py" line="1628"/>
         <source>Meta+E</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1697"/>
+        <location filename="../ViewManager/ViewManager.py" line="1696"/>
         <source>Meta+V</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1703"/>
+        <location filename="../ViewManager/ViewManager.py" line="1702"/>
         <source>Move to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1720"/>
+        <location filename="../ViewManager/ViewManager.py" line="1719"/>
         <source>Move to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1765"/>
+        <location filename="../ViewManager/ViewManager.py" line="1764"/>
         <source>Meta+Shift+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1780"/>
+        <location filename="../ViewManager/ViewManager.py" line="1779"/>
         <source>Meta+Shift+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1795"/>
+        <location filename="../ViewManager/ViewManager.py" line="1794"/>
         <source>Meta+Shift+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1810"/>
+        <location filename="../ViewManager/ViewManager.py" line="1809"/>
         <source>Meta+Shift+N</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1878"/>
+        <location filename="../ViewManager/ViewManager.py" line="1877"/>
         <source>Extend selection to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1896"/>
+        <location filename="../ViewManager/ViewManager.py" line="1895"/>
         <source>Extend selection to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1904"/>
+        <location filename="../ViewManager/ViewManager.py" line="1903"/>
         <source>Meta+Shift+E</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1961"/>
+        <location filename="../ViewManager/ViewManager.py" line="1960"/>
         <source>Meta+Shift+V</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1967"/>
+        <location filename="../ViewManager/ViewManager.py" line="1966"/>
         <source>Extend selection to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1975"/>
+        <location filename="../ViewManager/ViewManager.py" line="1974"/>
         <source>Ctrl+Shift+Up</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1984"/>
+        <location filename="../ViewManager/ViewManager.py" line="1983"/>
         <source>Extend selection to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1992"/>
+        <location filename="../ViewManager/ViewManager.py" line="1991"/>
         <source>Ctrl+Shift+Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2010"/>
+        <location filename="../ViewManager/ViewManager.py" line="2009"/>
         <source>Meta+H</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2019"/>
+        <location filename="../ViewManager/ViewManager.py" line="2018"/>
         <source>Delete previous character if not at start of line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2040"/>
+        <location filename="../ViewManager/ViewManager.py" line="2039"/>
         <source>Meta+D</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2084"/>
+        <location filename="../ViewManager/ViewManager.py" line="2083"/>
         <source>Meta+K</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2194"/>
+        <location filename="../ViewManager/ViewManager.py" line="2192"/>
         <source>Move to end of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2211"/>
+        <location filename="../ViewManager/ViewManager.py" line="2209"/>
         <source>Extend selection to end of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2253"/>
+        <location filename="../ViewManager/ViewManager.py" line="2251"/>
         <source>Meta+Alt+Shift+N</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2268"/>
+        <location filename="../ViewManager/ViewManager.py" line="2266"/>
         <source>Meta+Alt+Shift+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2286"/>
+        <location filename="../ViewManager/ViewManager.py" line="2284"/>
         <source>Meta+Alt+Shift+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2304"/>
+        <location filename="../ViewManager/ViewManager.py" line="2302"/>
         <source>Meta+Alt+Shift+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2310"/>
+        <location filename="../ViewManager/ViewManager.py" line="2308"/>
         <source>Extend rectangular selection to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2329"/>
+        <location filename="../ViewManager/ViewManager.py" line="2327"/>
         <source>Extend rectangular selection to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2339"/>
+        <location filename="../ViewManager/ViewManager.py" line="2337"/>
         <source>Meta+Alt+Shift+E</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2342"/>
+        <location filename="../ViewManager/ViewManager.py" line="2340"/>
         <source>Alt+Shift+End</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2363"/>
+        <location filename="../ViewManager/ViewManager.py" line="2361"/>
         <source>Alt+Shift+PgDown</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2375"/>
+        <location filename="../ViewManager/ViewManager.py" line="2373"/>
         <source>Meta+Alt+Shift+V</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2395"/>
+        <location filename="../ViewManager/ViewManager.py" line="2393"/>
         <source>Scroll to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2410"/>
+        <location filename="../ViewManager/ViewManager.py" line="2408"/>
         <source>Scroll to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2425"/>
+        <location filename="../ViewManager/ViewManager.py" line="2423"/>
         <source>Scroll vertically to center current line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2433"/>
+        <location filename="../ViewManager/ViewManager.py" line="2431"/>
         <source>Meta+L</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2440"/>
+        <location filename="../ViewManager/ViewManager.py" line="2438"/>
         <source>Move to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2455"/>
+        <location filename="../ViewManager/ViewManager.py" line="2453"/>
         <source>Extend selection to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2471"/>
+        <location filename="../ViewManager/ViewManager.py" line="2469"/>
         <source>Move to end of previous word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2483"/>
+        <location filename="../ViewManager/ViewManager.py" line="2481"/>
         <source>Extend selection to end of previous word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2495"/>
+        <location filename="../ViewManager/ViewManager.py" line="2493"/>
         <source>Move to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2503"/>
+        <location filename="../ViewManager/ViewManager.py" line="2501"/>
         <source>Meta+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2510"/>
+        <location filename="../ViewManager/ViewManager.py" line="2508"/>
         <source>Extend selection to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2521"/>
+        <location filename="../ViewManager/ViewManager.py" line="2519"/>
         <source>Meta+Shift+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2528"/>
+        <location filename="../ViewManager/ViewManager.py" line="2526"/>
         <source>Extend rectangular selection to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2538"/>
+        <location filename="../ViewManager/ViewManager.py" line="2536"/>
         <source>Meta+Alt+Shift+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2546"/>
+        <location filename="../ViewManager/ViewManager.py" line="2544"/>
         <source>Extend selection to start of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2565"/>
+        <location filename="../ViewManager/ViewManager.py" line="2563"/>
         <source>Move to start of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2579"/>
+        <location filename="../ViewManager/ViewManager.py" line="2577"/>
         <source>Extend selection to start of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2594"/>
+        <location filename="../ViewManager/ViewManager.py" line="2592"/>
         <source>Move to first visible character in display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2611"/>
+        <location filename="../ViewManager/ViewManager.py" line="2609"/>
         <source>Extend selection to first visible character in display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2628"/>
+        <location filename="../ViewManager/ViewManager.py" line="2626"/>
         <source>Move to end of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2642"/>
+        <location filename="../ViewManager/ViewManager.py" line="2640"/>
         <source>Extend selection to end of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2657"/>
+        <location filename="../ViewManager/ViewManager.py" line="2655"/>
         <source>Stuttered move up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2669"/>
+        <location filename="../ViewManager/ViewManager.py" line="2667"/>
         <source>Stuttered extend selection up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2682"/>
+        <location filename="../ViewManager/ViewManager.py" line="2680"/>
         <source>Stuttered move down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2694"/>
+        <location filename="../ViewManager/ViewManager.py" line="2692"/>
         <source>Stuttered extend selection down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2707"/>
+        <location filename="../ViewManager/ViewManager.py" line="2705"/>
         <source>Delete right to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2715"/>
+        <location filename="../ViewManager/ViewManager.py" line="2713"/>
         <source>Alt+Del</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2722"/>
+        <location filename="../ViewManager/ViewManager.py" line="2720"/>
         <source>Move selected lines up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2734"/>
+        <location filename="../ViewManager/ViewManager.py" line="2732"/>
         <source>Move selected lines down one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2348"/>
+        <location filename="../ViewManager/ViewManager.py" line="2346"/>
         <source>Alt+Shift+PgUp</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1185"/>
+        <location filename="../ViewManager/ViewManager.py" line="1184"/>
         <source>Toggle Comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1185"/>
+        <location filename="../ViewManager/ViewManager.py" line="1184"/>
         <source>Ctrl+Shift+M</source>
         <comment>Edit|Toggle Comment</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1193"/>
+        <location filename="../ViewManager/ViewManager.py" line="1192"/>
         <source>Toggle the comment of the current line, selection or comment block</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1197"/>
+        <location filename="../ViewManager/ViewManager.py" line="1196"/>
         <source>&lt;b&gt;Toggle Comment&lt;/b&gt;&lt;p&gt;If the current line does not start with a block comment, the current line or selection is commented. If it is already commented, this comment block is uncommented. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3525"/>
         <source>Zoom reset</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3525"/>
         <source>Zoom &amp;reset</source>
         <translation type="unfinished">&amp;Reset zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3525"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation type="unfinished">Ctrl+0</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3535"/>
+        <location filename="../ViewManager/ViewManager.py" line="3533"/>
         <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="3537"/>
+        <location filename="../ViewManager/ViewManager.py" line="3535"/>
         <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="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3487"/>
         <source>Zoom In</source>
         <comment>View|Zoom in</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3508"/>
+        <location filename="../ViewManager/ViewManager.py" line="3506"/>
         <source>Zoom Out</source>
         <comment>View|Zoom out</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="764"/>
+        <location filename="../ViewManager/ViewManager.py" line="763"/>
         <source>Save a&amp;ll</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4246"/>
+        <source>Next Change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4240"/>
+        <source>&amp;Next Change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4248"/>
-        <source>Next Change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4242"/>
-        <source>&amp;Next Change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4250"/>
         <source>&lt;b&gt;Next Change&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4264"/>
+        <source>Previous Change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4257"/>
+        <source>&amp;Previous Change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4266"/>
-        <source>Previous Change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4259"/>
-        <source>&amp;Previous Change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4268"/>
         <source>&lt;b&gt;Previous Change&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4366"/>
+        <location filename="../ViewManager/ViewManager.py" line="4364"/>
         <source>Check spelling</source>
         <translation type="unfinished">Controllo sillabazione</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4366"/>
+        <location filename="../ViewManager/ViewManager.py" line="4364"/>
         <source>Check &amp;spelling...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4377"/>
+        <location filename="../ViewManager/ViewManager.py" line="4375"/>
         <source>&lt;b&gt;Check spelling&lt;/b&gt;&lt;p&gt;Perform a spell check of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4424"/>
+        <source>Edit Dictionary</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4426"/>
-        <source>Edit Dictionary</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4428"/>
         <source>Project Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4431"/>
+        <location filename="../ViewManager/ViewManager.py" line="4429"/>
         <source>Project Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4436"/>
+        <location filename="../ViewManager/ViewManager.py" line="4434"/>
         <source>User Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4439"/>
+        <location filename="../ViewManager/ViewManager.py" line="4437"/>
         <source>User Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6639"/>
+        <location filename="../ViewManager/ViewManager.py" line="6637"/>
         <source>Edit Spelling Dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6614"/>
+        <location filename="../ViewManager/ViewManager.py" line="6612"/>
         <source>Editing {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6596"/>
+        <location filename="../ViewManager/ViewManager.py" line="6594"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6626"/>
+        <location filename="../ViewManager/ViewManager.py" line="6624"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6639"/>
+        <location filename="../ViewManager/ViewManager.py" line="6637"/>
         <source>The spelling dictionary was saved successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2957"/>
+        <location filename="../ViewManager/ViewManager.py" line="2955"/>
         <source>Search current word forward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2957"/>
+        <location filename="../ViewManager/ViewManager.py" line="2955"/>
         <source>Ctrl+.</source>
         <comment>Search|Search current word forward</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2968"/>
+        <location filename="../ViewManager/ViewManager.py" line="2966"/>
         <source>Search next occurrence of the current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2971"/>
+        <location filename="../ViewManager/ViewManager.py" line="2969"/>
         <source>&lt;b&gt;Search current word forward&lt;/b&gt;&lt;p&gt;Search the next occurrence of the current word of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2980"/>
+        <location filename="../ViewManager/ViewManager.py" line="2978"/>
         <source>Search current word backward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2980"/>
+        <location filename="../ViewManager/ViewManager.py" line="2978"/>
         <source>Ctrl+,</source>
         <comment>Search|Search current word backward</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2991"/>
+        <location filename="../ViewManager/ViewManager.py" line="2989"/>
         <source>Search previous occurrence of the current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2994"/>
+        <location filename="../ViewManager/ViewManager.py" line="2992"/>
         <source>&lt;b&gt;Search current word backward&lt;/b&gt;&lt;p&gt;Search the previous occurrence of the current word of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3301"/>
+        <location filename="../ViewManager/ViewManager.py" line="3299"/>
         <source>Search in Open Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3301"/>
+        <location filename="../ViewManager/ViewManager.py" line="3299"/>
         <source>Search in Open Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3301"/>
+        <location filename="../ViewManager/ViewManager.py" line="3299"/>
         <source>Meta+Ctrl+Alt+F</source>
         <comment>Search|Search Open Files</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3310"/>
+        <source>Search for a text in open files</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3312"/>
-        <source>Search for a text in open files</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3314"/>
         <source>&lt;b&gt;Search in Open Files&lt;/b&gt;&lt;p&gt;Search for some text in the currently opened files. A dialog is shown to enter the searchtext and options for the search and to display the result.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3324"/>
+        <location filename="../ViewManager/ViewManager.py" line="3322"/>
         <source>Replace in Open Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3324"/>
+        <location filename="../ViewManager/ViewManager.py" line="3322"/>
         <source>Meta+Ctrl+Alt+R</source>
         <comment>Search|Replace in Open Files</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3332"/>
+        <source>Search for a text in open files and replace it</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3334"/>
-        <source>Search for a text in open files and replace it</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3336"/>
         <source>&lt;b&gt;Replace in Open Files&lt;/b&gt;&lt;p&gt;Search for some text in the currently opened files and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and to display the result.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3324"/>
+        <location filename="../ViewManager/ViewManager.py" line="3322"/>
         <source>Replace in Open Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1450"/>
+        <location filename="../ViewManager/ViewManager.py" line="1449"/>
         <source>Sort</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1450"/>
+        <location filename="../ViewManager/ViewManager.py" line="1449"/>
         <source>Ctrl+Alt+S</source>
         <comment>Edit|Sort</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1457"/>
+        <location filename="../ViewManager/ViewManager.py" line="1456"/>
         <source>Sort the lines containing the rectangular selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1460"/>
+        <location filename="../ViewManager/ViewManager.py" line="1459"/>
         <source>&lt;b&gt;Sort&lt;/b&gt;&lt;p&gt;Sort the lines spanned by a rectangular selection based on the selection ignoring leading and trailing whitespace.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4955"/>
+        <location filename="../ViewManager/ViewManager.py" line="4953"/>
         <source>Language: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4962"/>
+        <location filename="../ViewManager/ViewManager.py" line="4960"/>
         <source>EOL Mode: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3643"/>
+        <location filename="../ViewManager/ViewManager.py" line="3641"/>
         <source>New Document View</source>
         <translation type="unfinished">Nuova vista Documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3643"/>
+        <location filename="../ViewManager/ViewManager.py" line="3641"/>
         <source>New &amp;Document View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3646"/>
+        <source>Open a new view of the current document</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3648"/>
-        <source>Open a new view of the current document</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3650"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3660"/>
+        <location filename="../ViewManager/ViewManager.py" line="3658"/>
         <source>New Document View (with new split)</source>
         <translation type="unfinished">Nuova vista Documento (con nuova divisione)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3667"/>
+        <location filename="../ViewManager/ViewManager.py" line="3665"/>
         <source>Open a new view of the current document in a new split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3670"/>
+        <location filename="../ViewManager/ViewManager.py" line="3668"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document in a new split. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4126"/>
+        <location filename="../ViewManager/ViewManager.py" line="4124"/>
         <source>&lt;b&gt;Next warning message&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4145"/>
+        <location filename="../ViewManager/ViewManager.py" line="4143"/>
         <source>&lt;b&gt;Previous warning message&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4163"/>
+        <location filename="../ViewManager/ViewManager.py" line="4161"/>
         <source>&lt;b&gt;Clear Warning Messages&lt;/b&gt;&lt;p&gt;Clear pyflakes warning messages of all editors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1327"/>
+        <location filename="../ViewManager/ViewManager.py" line="1326"/>
         <source>Ctrl+Space</source>
         <comment>Edit|Complete</comment>
         <translation type="unfinished">Ctrl+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1345"/>
+        <location filename="../ViewManager/ViewManager.py" line="1344"/>
         <source>Ctrl+Shift+Space</source>
         <comment>Edit|Complete from Document</comment>
         <translation type="unfinished">Ctrl+Shift+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1368"/>
+        <location filename="../ViewManager/ViewManager.py" line="1367"/>
         <source>Ctrl+Alt+Space</source>
         <comment>Edit|Complete from APIs</comment>
         <translation type="unfinished">Ctrl+Alt+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1391"/>
+        <location filename="../ViewManager/ViewManager.py" line="1390"/>
         <source>Alt+Shift+Space</source>
         <comment>Edit|Complete from Document and APIs</comment>
         <translation type="unfinished">Alt+Shift+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="748"/>
+        <location filename="../ViewManager/ViewManager.py" line="747"/>
         <source>Save Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="748"/>
+        <location filename="../ViewManager/ViewManager.py" line="747"/>
         <source>Save &amp;Copy...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="753"/>
+        <location filename="../ViewManager/ViewManager.py" line="752"/>
         <source>Save a copy of the current file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="755"/>
+        <location filename="../ViewManager/ViewManager.py" line="754"/>
         <source>&lt;b&gt;Save Copy&lt;/b&gt;&lt;p&gt;Save a copy of the contents of current editor window. The file can be entered in a file selection dialog.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -86827,141 +86832,141 @@
         <translation type="unfinished">Ctrl+G</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3022"/>
+        <location filename="../ViewManager/ViewManager.py" line="3020"/>
         <source>Replace and Search</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3022"/>
+        <location filename="../ViewManager/ViewManager.py" line="3020"/>
         <source>Meta+R</source>
         <comment>Search|Replace and Search</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3032"/>
+        <location filename="../ViewManager/ViewManager.py" line="3030"/>
         <source>Replace the found text and search the next occurrence</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3035"/>
+        <location filename="../ViewManager/ViewManager.py" line="3033"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3046"/>
+        <location filename="../ViewManager/ViewManager.py" line="3044"/>
         <source>Replace Occurrence</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3046"/>
+        <location filename="../ViewManager/ViewManager.py" line="3044"/>
         <source>Ctrl+Meta+R</source>
         <comment>Search|Replace Occurrence</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3054"/>
+        <source>Replace the found text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3056"/>
-        <source>Replace the found text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3058"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3068"/>
+        <location filename="../ViewManager/ViewManager.py" line="3066"/>
         <source>Replace All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3068"/>
+        <location filename="../ViewManager/ViewManager.py" line="3066"/>
         <source>Shift+Meta+R</source>
         <comment>Search|Replace All</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3076"/>
+        <source>Replace search text occurrences</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3078"/>
-        <source>Replace search text occurrences</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3080"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1432"/>
+        <location filename="../ViewManager/ViewManager.py" line="1431"/>
         <source>Code Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1432"/>
+        <location filename="../ViewManager/ViewManager.py" line="1431"/>
         <source>Ctrl+Alt+I</source>
         <comment>Edit|Code Info</comment>
         <translation type="unfinished">Ctrl+Alt+I</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1440"/>
+        <location filename="../ViewManager/ViewManager.py" line="1439"/>
         <source>Show Code Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1442"/>
+        <location filename="../ViewManager/ViewManager.py" line="1441"/>
         <source>&lt;b&gt;Code Info&lt;/b&gt;&lt;p&gt;Show code information based on the cursor position.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3614"/>
+        <source>Clear all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3610"/>
+        <source>Clear &amp;all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3616"/>
-        <source>Clear all folds</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3612"/>
-        <source>Clear &amp;all folds</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3618"/>
         <source>&lt;b&gt;Clear all folds&lt;/b&gt;&lt;p&gt;Clear all folds of the current editor, i.e. ensure that all lines are displayed unfolded.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2150"/>
+        <location filename="../ViewManager/ViewManager.py" line="2148"/>
         <source>Reverse selected lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2150"/>
+        <location filename="../ViewManager/ViewManager.py" line="2148"/>
         <source>Meta+Alt+R</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3776"/>
+        <location filename="../ViewManager/ViewManager.py" line="3774"/>
         <source>Python AST Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3779"/>
+        <source>Show the AST for the current Python file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3781"/>
-        <source>Show the AST for the current Python file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3783"/>
         <source>&lt;b&gt;Python AST Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the AST of the current Python source file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3793"/>
+        <location filename="../ViewManager/ViewManager.py" line="3791"/>
         <source>Python Disassembly Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3798"/>
+        <source>Show the Disassembly for the current Python file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3800"/>
-        <source>Show the Disassembly for the current Python file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3802"/>
         <source>&lt;b&gt;Python Disassembly Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the Disassembly of the current Python source file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -89841,7 +89846,7 @@
 <context>
     <name>WebBrowserTools</name>
     <message>
-        <location filename="../WebBrowser/Tools/WebBrowserTools.py" line="249"/>
+        <location filename="../WebBrowser/Tools/WebBrowserTools.py" line="251"/>
         <source>&lt;unknown&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -92598,57 +92603,57 @@
     <name>YandexEngine</name>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="38"/>
-        <source>Invalid API key.</source>
+        <source>Yandex: Invalid API key.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="39"/>
-        <source>API key has been blocked.</source>
+        <source>Yandex: API key has been blocked.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="40"/>
-        <source>Daily limit for requests has been reached.</source>
+        <source>Yandex: Daily limit for requests has been reached.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="41"/>
-        <source>Daily limit for the volume of translated text reached.</source>
+        <source>Yandex: Daily limit for the volume of translated text reached.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="43"/>
-        <source>Text size exceeds the maximum.</source>
+        <source>Yandex: Text size exceeds the maximum.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="44"/>
-        <source>Text could not be translated.</source>
+        <source>Yandex: Text could not be translated.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="45"/>
-        <source>The specified translation direction is not supported.</source>
+        <source>Yandex: The specified translation direction is not supported.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="86"/>
-        <source>Only texts up to {0} characters are allowed.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="91"/>
-        <source>A valid Yandex key is required.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="106"/>
-        <source>Invalid response received</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="112"/>
-        <source>Unknown error code ({0}) received.</source>
+        <source>Yandex: Only texts up to {0} characters are allowed.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="109"/>
+        <source>Yandex: Invalid response received</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="115"/>
+        <source>Yandex: Unknown error code ({0}) received.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="94"/>
+        <source>Yandex: A valid key is required.</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -93091,417 +93096,417 @@
 <context>
     <name>pycodestyle</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="24"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="22"/>
         <source>indentation contains mixed spaces and tabs</source>
         <translation type="unfinished">indentazione contiene spazi e tab mischiati</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="27"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="25"/>
         <source>indentation is not a multiple of four</source>
         <translation type="unfinished">identazione non è un multiplo di quattro</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="30"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="28"/>
         <source>expected an indented block</source>
         <translation type="unfinished">atteso un blocco identato</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="33"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="31"/>
         <source>unexpected indentation</source>
         <translation type="unfinished">identazione non attesa</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="36"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="34"/>
         <source>indentation is not a multiple of four (comment)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="39"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="37"/>
         <source>expected an indented block (comment)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="42"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="40"/>
         <source>unexpected indentation (comment)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="48"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="46"/>
         <source>continuation line indentation is not a multiple of four</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="51"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="49"/>
         <source>continuation line missing indentation or outdented</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="54"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="52"/>
         <source>closing bracket does not match indentation of opening bracket&apos;s line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="58"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="56"/>
         <source>closing bracket does not match visual indentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="61"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="59"/>
         <source>continuation line with same indent as next logical line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="64"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="62"/>
         <source>continuation line over-indented for hanging indent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="67"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="65"/>
         <source>continuation line over-indented for visual indent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="70"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="68"/>
         <source>continuation line under-indented for visual indent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="73"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="71"/>
         <source>visually indented line with same indent as next logical line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="76"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="74"/>
         <source>continuation line unaligned for hanging indent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="79"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="77"/>
         <source>closing bracket is missing indentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="82"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="80"/>
         <source>indentation contains tabs</source>
         <translation type="unfinished">identazione contiene tab</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="85"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="83"/>
         <source>whitespace after &apos;{0}&apos;</source>
         <translation type="unfinished">spazio dopo &apos;{0}&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="94"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="92"/>
         <source>whitespace before &apos;{0}&apos;</source>
         <translation type="unfinished">spazio prima &apos;{0}&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="97"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="95"/>
         <source>multiple spaces before operator</source>
         <translation type="unfinished">spazi multipli prima dell&apos;operatore</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="100"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="98"/>
         <source>multiple spaces after operator</source>
         <translation type="unfinished">spazi multipli dopo l&apos;operatore</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="103"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="101"/>
         <source>tab before operator</source>
         <translation type="unfinished">tab prima dell&apos;operatore</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="106"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="104"/>
         <source>tab after operator</source>
         <translation type="unfinished">tab dopo l&apos;operatore</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="109"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="107"/>
         <source>missing whitespace around operator</source>
         <translation type="unfinished">spazi intorno all&apos;operatore mancanti</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="112"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="110"/>
         <source>missing whitespace around arithmetic operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="115"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="113"/>
         <source>missing whitespace around bitwise or shift operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="118"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="116"/>
         <source>missing whitespace around modulo operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="121"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="119"/>
         <source>missing whitespace after &apos;{0}&apos;</source>
         <translation type="unfinished">spazi dopo &apos;{0}&apos; mancanti</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="124"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="122"/>
         <source>multiple spaces after &apos;{0}&apos;</source>
         <translation type="unfinished">spazi multipli dopo &apos;{0}&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="127"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="125"/>
         <source>tab after &apos;{0}&apos;</source>
         <translation type="unfinished">tab dopo &apos;{0}&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="130"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="128"/>
         <source>unexpected spaces around keyword / parameter equals</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="136"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="134"/>
         <source>at least two spaces before inline comment</source>
         <translation type="unfinished">al massimo due spazi prima di un commento inline</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="139"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="137"/>
         <source>inline comment should start with &apos;# &apos;</source>
         <translation type="unfinished">commento inline deve iniziare con &apos;#&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="142"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="140"/>
         <source>block comment should start with &apos;# &apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="145"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="143"/>
         <source>too many leading &apos;#&apos; for block comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="148"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="146"/>
         <source>multiple spaces after keyword</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="151"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="149"/>
         <source>multiple spaces before keyword</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="154"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="152"/>
         <source>tab after keyword</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="157"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="155"/>
         <source>tab before keyword</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="160"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="158"/>
         <source>missing whitespace after keyword</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="163"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="161"/>
         <source>trailing whitespace</source>
         <translation type="unfinished">spazi all&apos;inizio</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="166"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="164"/>
         <source>no newline at end of file</source>
         <translation type="unfinished">nessun ritorno a capo alla fine del file</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="169"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="167"/>
         <source>blank line contains whitespace</source>
         <translation type="unfinished">attesa 1 line vuota, 0 trovate</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="194"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="192"/>
         <source>too many blank lines ({0})</source>
         <translation type="unfinished">troppe linee vuote ({0})</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="181"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="179"/>
         <source>blank lines found after function decorator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="197"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="195"/>
         <source>blank line at end of file</source>
         <translation type="unfinished">linea vuota alla fine del file</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="200"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="198"/>
         <source>multiple imports on one line</source>
         <translation type="unfinished">import multipli su una linea</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="203"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="201"/>
         <source>module level import not at top of file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="206"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="204"/>
         <source>line too long ({0} &gt; {1} characters)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="209"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="207"/>
         <source>the backslash is redundant between brackets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="212"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="210"/>
         <source>line break before binary operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="221"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="219"/>
         <source>.has_key() is deprecated, use &apos;in&apos;</source>
         <translation type="unfinished">.has_key è deprecato, usa &apos;in&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="224"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="222"/>
         <source>deprecated form of raising exception</source>
         <translation type="unfinished">forma di sollevamento eccezioni deprecata</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="227"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="225"/>
         <source>&apos;&lt;&gt;&apos; is deprecated, use &apos;!=&apos;</source>
         <translation type="unfinished">&apos;&lt;&gt;&apos; è deprecato, usa &apos;!=&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="230"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="228"/>
         <source>backticks are deprecated, use &apos;repr()&apos;</source>
         <translation type="unfinished">virgolette rovesciare sono deprecate, usa &apos;repr()&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="239"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="237"/>
         <source>multiple statements on one line (colon)</source>
         <translation type="unfinished">istruzioni multiple su una linea (due punti)</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="242"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="240"/>
         <source>multiple statements on one line (semicolon)</source>
         <translation type="unfinished">istruzioni multiple su una linea (punto e virgola)</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="245"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="243"/>
         <source>statement ends with a semicolon</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="248"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="246"/>
         <source>multiple statements on one line (def)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="254"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="252"/>
         <source>comparison to {0} should be {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="257"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="255"/>
         <source>test for membership should be &apos;not in&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="260"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="258"/>
         <source>test for object identity should be &apos;is not&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="263"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="261"/>
         <source>do not compare types, use &apos;isinstance()&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="269"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="267"/>
         <source>do not assign a lambda expression, use a def</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="272"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="270"/>
         <source>ambiguous variable name &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="275"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="273"/>
         <source>ambiguous class definition &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="278"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="276"/>
         <source>ambiguous function definition &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="281"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="279"/>
         <source>{0}: {1}</source>
         <translation type="unfinished">{0}: {1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="284"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="282"/>
         <source>{0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="266"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="264"/>
         <source>do not use bare except</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="184"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="182"/>
         <source>expected {0} blank lines after class or function definition, found {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="236"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="234"/>
         <source>&apos;async&apos; and &apos;await&apos; are reserved keywords starting with Python 3.7</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="133"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="131"/>
         <source>missing whitespace around parameter equals</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="175"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="173"/>
         <source>expected {0} blank lines, found {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="188"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="186"/>
         <source>expected {0} blank lines before a nested definition, found {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="215"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="213"/>
         <source>line break after binary operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="233"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="231"/>
         <source>invalid escape sequence &apos;\{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="191"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="189"/>
         <source>too many blank lines ({0}) before a nested definition, expected {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="178"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="176"/>
         <source>too many blank lines ({0}), expected {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="45"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="43"/>
         <source>over-indented</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="218"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="216"/>
         <source>doc line too long ({0} &gt; {1} characters)</source>
         <translation type="unfinished"></translation>
     </message>
--- a/eric6/i18n/eric6_pt.ts	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/i18n/eric6_pt.ts	Sun Oct 04 16:28:51 2020 +0200
@@ -1138,72 +1138,72 @@
 <context>
     <name>AnnotationsChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="808"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="806"/>
         <source>missing type annotation for function argument &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="811"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="809"/>
         <source>missing type annotation for &apos;*{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="814"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="812"/>
         <source>missing type annotation for &apos;**{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="823"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="821"/>
         <source>missing return type annotation for public function</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="826"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="824"/>
         <source>missing return type annotation for protected function</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="829"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="827"/>
         <source>missing return type annotation for private function</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="832"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="830"/>
         <source>missing return type annotation for special method</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="835"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="833"/>
         <source>missing return type annotation for staticmethod</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="838"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="836"/>
         <source>missing return type annotation for classmethod</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="850"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="848"/>
         <source>{0}: {1}</source>
         <translation type="unfinished">{0}: {1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="817"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="815"/>
         <source>missing type annotation for &apos;self&apos; in method</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="820"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="818"/>
         <source>missing type annotation for &apos;cls&apos; in classmethod</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="842"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="840"/>
         <source>type annotation coverage of {0}% is too low</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="846"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="844"/>
         <source>type annotation is too complex ({0} &gt; {1})</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3520,7 +3520,7 @@
 <context>
     <name>CodeStyleChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="1130"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="1128"/>
         <source>No message defined for code &apos;{0}&apos;.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -4247,142 +4247,142 @@
 <context>
     <name>CodeStyleFixer</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="858"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="856"/>
         <source>Triple single quotes converted to triple double quotes.</source>
         <translation>Três aspas simples convertidas a três aspas duplas.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="861"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="859"/>
         <source>Introductory quotes corrected to be {0}&quot;&quot;&quot;</source>
         <translation>Corrigidas as aspas introdutórias para ser {0}&quot;&quot;&quot;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="864"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="862"/>
         <source>Single line docstring put on one line.</source>
         <translation>Docstring de linha única posta numa linha.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="867"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="865"/>
         <source>Period added to summary line.</source>
         <translation>Ponto adicionado à linha sumário.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="894"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="892"/>
         <source>Blank line before function/method docstring removed.</source>
         <translation>Retirada a linha vazia antes da docstring de função/método.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="873"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="871"/>
         <source>Blank line inserted before class docstring.</source>
         <translation>Linha branca inserida antes da docstring de classe.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="876"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="874"/>
         <source>Blank line inserted after class docstring.</source>
         <translation>Inserida linha vazia depois da docstring de classe.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="879"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="877"/>
         <source>Blank line inserted after docstring summary.</source>
         <translation>Inserida linha vazia depois da docstring de sumário.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="882"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="880"/>
         <source>Blank line inserted after last paragraph of docstring.</source>
         <translation>Inserida linha vazia depois do último parágrafo da docstring.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="885"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="883"/>
         <source>Leading quotes put on separate line.</source>
         <translation>Aspas iniciais postas numa linha separada.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="888"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="886"/>
         <source>Trailing quotes put on separate line.</source>
         <translation>Aspas finais postas numa linha separada.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="891"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="889"/>
         <source>Blank line before class docstring removed.</source>
         <translation>Retirada linha vazia antes da docstring de classe.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="897"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="895"/>
         <source>Blank line after class docstring removed.</source>
         <translation>Retirada linha vazia depois da docstring de classe.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="900"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="898"/>
         <source>Blank line after function/method docstring removed.</source>
         <translation>Retirada a linha vazia depois da docstring de função/método.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="903"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="901"/>
         <source>Blank line after last paragraph removed.</source>
         <translation>Retirada linha vazia depois do último parágrafo.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="906"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="904"/>
         <source>Tab converted to 4 spaces.</source>
         <translation>Tabulação convertida a 4 espaços.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="909"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="907"/>
         <source>Indentation adjusted to be a multiple of four.</source>
         <translation>Ajustada a indentação a múltiplos de quatro.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="912"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="910"/>
         <source>Indentation of continuation line corrected.</source>
         <translation>Corrigida a indentação da linha de continuação.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="915"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="913"/>
         <source>Indentation of closing bracket corrected.</source>
         <translation>Corrigida a indentação de parêntesis de fecho.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="918"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="916"/>
         <source>Missing indentation of continuation line corrected.</source>
         <translation>Corrigida falta de indentação na linha de continuação.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="921"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="919"/>
         <source>Closing bracket aligned to opening bracket.</source>
         <translation>Parêntesis de fecho alinhado com parêntesis de abertura.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="924"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="922"/>
         <source>Indentation level changed.</source>
         <translation>Alterado o nível da indentação.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="927"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="925"/>
         <source>Indentation level of hanging indentation changed.</source>
         <translation>Alterado o nível da indentação pendente.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="930"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="928"/>
         <source>Visual indentation corrected.</source>
         <translation>Indentação visual corrigida.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="945"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="943"/>
         <source>Extraneous whitespace removed.</source>
         <translation>Espaço estranho retirado.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="942"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="940"/>
         <source>Missing whitespace added.</source>
         <translation>Adicionado espaço branco em falta.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="948"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="946"/>
         <source>Whitespace around comment sign corrected.</source>
         <translation>Corrigido espaço em volta do símbolo de comentário.</translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="952"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="950"/>
         <source>%n blank line(s) inserted.</source>
         <translation>
             <numerusform>inserida uma linha vazia.</numerusform>
@@ -4390,7 +4390,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="955"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="953"/>
         <source>%n superfluous lines removed</source>
         <translation>
             <numerusform>retirada uma linha desnecessária</numerusform>
@@ -4398,72 +4398,72 @@
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="959"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="957"/>
         <source>Superfluous blank lines removed.</source>
         <translation>Retiradas linhas vazias desnecessárias.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="962"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="960"/>
         <source>Superfluous blank lines after function decorator removed.</source>
         <translation>Retiradas linhas vazias desnecessárias após o decorador de função.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="965"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="963"/>
         <source>Imports were put on separate lines.</source>
         <translation>Imports foram postos em linhas separadas.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="968"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="966"/>
         <source>Long lines have been shortened.</source>
         <translation>Foram encolhidas as linhas compridas.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="971"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="969"/>
         <source>Redundant backslash in brackets removed.</source>
         <translation>Retirada barra invertida redundante entre parêntesis.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="977"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="975"/>
         <source>Compound statement corrected.</source>
         <translation>Instrução composta corrigida.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="980"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="978"/>
         <source>Comparison to None/True/False corrected.</source>
         <translation>Corrigida a comparação a None/True/False.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="983"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="981"/>
         <source>&apos;{0}&apos; argument added.</source>
         <translation>Adicionado o argumento &apos;{0}&apos;.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="986"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="984"/>
         <source>&apos;{0}&apos; argument removed.</source>
         <translation>Removido o argumento &apos;{0}&apos;.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="989"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="987"/>
         <source>Whitespace stripped from end of line.</source>
         <translation>Eliminado o espaço no fim de linha.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="992"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="990"/>
         <source>newline added to end of file.</source>
         <translation>adicionada uma linha nova ao fim do ficheiro.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="995"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="993"/>
         <source>Superfluous trailing blank lines removed from end of file.</source>
         <translation>Retiradas linhas vazias desnecessárias do fim do ficheiro.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="998"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="996"/>
         <source>&apos;&lt;&gt;&apos; replaced by &apos;!=&apos;.</source>
         <translation>&apos;&lt;&gt;&apos; substituido por &apos;!=&apos;.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="1002"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="1000"/>
         <source>Could not save the file! Skipping it. Reason: {0}</source>
         <translation>Não se pode gravar ficheiro! Saltando-o. Motivo: {0}</translation>
     </message>
@@ -4974,22 +4974,22 @@
 <context>
     <name>ComplexityChecker</name>
     <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="477"/>
+        <source>&apos;{0}&apos; is too complex ({1})</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="479"/>
-        <source>&apos;{0}&apos; is too complex ({1})</source>
+        <source>source code line is too complex ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="481"/>
-        <source>source code line is too complex ({0})</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="483"/>
         <source>overall source code line complexity is too high ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="486"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="484"/>
         <source>{0}: {1}</source>
         <translation type="unfinished">{0}: {1}</translation>
     </message>
@@ -8482,30 +8482,30 @@
 <context>
     <name>DeepLEngine</name>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="73"/>
-        <source>Text to be translated exceeds the translation limit of {0} characters.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="95"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="98"/>
         <source>Invalid response received from DeepL</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="98"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="101"/>
         <source>DeepL call returned an unknown result</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="102"/>
-        <source>&lt;p&gt;No translation found&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="79"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="82"/>
         <source>A valid DeepL Pro key is required.</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="73"/>
+        <source>DeepL: Text to be translated exceeds the translation limit of {0} characters.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="105"/>
+        <source>&lt;p&gt;DeepL: No translation found&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>DeleteFilesConfirmationDialog</name>
@@ -8773,37 +8773,37 @@
 <context>
     <name>DocStyleChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="291"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="289"/>
         <source>module is missing a docstring</source>
         <translation>falta uma docstring ao modulo</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="293"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="291"/>
         <source>public function/method is missing a docstring</source>
         <translation>falta uma docstring ao método/função pública</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="296"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="294"/>
         <source>private function/method may be missing a docstring</source>
         <translation>pode faltar uma docstring ao método/função privada</translation>
     </message>
     <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="297"/>
+        <source>public class is missing a docstring</source>
+        <translation>falta uma docstring à classe pública</translation>
+    </message>
+    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="299"/>
-        <source>public class is missing a docstring</source>
-        <translation>falta uma docstring à classe pública</translation>
+        <source>private class may be missing a docstring</source>
+        <translation>pode faltar uma docstring à classe privada</translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="301"/>
-        <source>private class may be missing a docstring</source>
-        <translation>pode faltar uma docstring à classe privada</translation>
+        <source>docstring not surrounded by &quot;&quot;&quot;</source>
+        <translation>docstring não envolvida por &quot;&quot;&quot;</translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="303"/>
-        <source>docstring not surrounded by &quot;&quot;&quot;</source>
-        <translation>docstring não envolvida por &quot;&quot;&quot;</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="305"/>
         <source>docstring containing \ not surrounded by r&quot;&quot;&quot;</source>
         <translation>docstring contém \ não envolvida por r&quot;&quot;&quot;</translation>
     </message>
@@ -8813,202 +8813,202 @@
         <translation type="obsolete">docstring contém carácteres unicódigo não envolvida por u&quot;&quot;&quot;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="308"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="306"/>
         <source>one-liner docstring on multiple lines</source>
         <translation>docstring de uma linha em múltiplas linhas</translation>
     </message>
     <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="308"/>
+        <source>docstring has wrong indentation</source>
+        <translation>docstring tem indentação errada</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="357"/>
+        <source>docstring summary does not end with a period</source>
+        <translation>sumário de docstring não termina com um ponto final</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="314"/>
+        <source>docstring summary is not in imperative mood (Does instead of Do)</source>
+        <translation>sumário de docstring não está no modo imperativo (Faz em vez de Faça)</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="318"/>
+        <source>docstring summary looks like a function&apos;s/method&apos;s signature</source>
+        <translation>sumário de docstring parece uma assinatura de método/função</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="321"/>
+        <source>docstring does not mention the return value type</source>
+        <translation>docstring não menciona o tipo de valor devolvido</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="324"/>
+        <source>function/method docstring is separated by a blank line</source>
+        <translation>docstring de método/função está separada por uma linha em branco</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="327"/>
+        <source>class docstring is not preceded by a blank line</source>
+        <translation>docstring de class não antecedida por uma linha em branco</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="330"/>
+        <source>class docstring is not followed by a blank line</source>
+        <translation>docstring de classe não está seguida por uma linha em branco</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="391"/>
+        <source>docstring summary is not followed by a blank line</source>
+        <translation>sumário de docstring não seguido por uma linha em branco</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="336"/>
+        <source>last paragraph of docstring is not followed by a blank line</source>
+        <translation>último parágrafo da docstring não está seguido por uma linha em branco</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="344"/>
+        <source>private function/method is missing a docstring</source>
+        <translation>falta uma docstring ao método/função privado</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="347"/>
+        <source>private class is missing a docstring</source>
+        <translation>falta uma docstring à classe privada</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="351"/>
+        <source>leading quotes of docstring not on separate line</source>
+        <translation>aspas iniciais da docstring não estão em linha separada</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="354"/>
+        <source>trailing quotes of docstring not on separate line</source>
+        <translation>aspas de fecho da docstring não estão numa linha separada</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="361"/>
+        <source>docstring does not contain a @return line but function/method returns something</source>
+        <translation>docstring sem linha @return mas a função/método devolve algo</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="365"/>
+        <source>docstring contains a @return line but function/method doesn&apos;t return anything</source>
+        <translation>docstring com linha @return mas a função/método não devolve nada</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="369"/>
+        <source>docstring does not contain enough @param/@keyparam lines</source>
+        <translation>docstring sem linhas @param/@keyparam suficientes</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="372"/>
+        <source>docstring contains too many @param/@keyparam lines</source>
+        <translation>docstring com demasiadas linhas @param/@keyparam</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="375"/>
+        <source>keyword only arguments must be documented with @keyparam lines</source>
+        <translation>argumentos de palavra chave devem de estar documentados com linhas @keyparam</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="378"/>
+        <source>order of @param/@keyparam lines does not match the function/method signature</source>
+        <translation>ordem das linhas @param/@keyparam não coincidem com a assinatura de função/método</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="381"/>
+        <source>class docstring is preceded by a blank line</source>
+        <translation>docstring de classe está antecedida por uma linha em branco</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="383"/>
+        <source>class docstring is followed by a blank line</source>
+        <translation>docstring de classe está seguida por uma linha em branco</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="385"/>
+        <source>function/method docstring is preceded by a blank line</source>
+        <translation>docstring de função/método precedida por uma linha em branco</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="388"/>
+        <source>function/method docstring is followed by a blank line</source>
+        <translation>docstring de função/método seguida de uma linha em branco</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="394"/>
+        <source>last paragraph of docstring is followed by a blank line</source>
+        <translation>último parágrafo da docstring seguido de uma linha em branco</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="397"/>
+        <source>docstring does not contain a @exception line but function/method raises an exception</source>
+        <translation>docstring sem linha @exception mas a função/método cria uma exceção</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="401"/>
+        <source>docstring contains a @exception line but function/method doesn&apos;t raise an exception</source>
+        <translation>docstring contém uma linha @exception mas o método/função não levanta uma exceção</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="424"/>
+        <source>{0}: {1}</source>
+        <translation>{0}: {1}</translation>
+    </message>
+    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="310"/>
-        <source>docstring has wrong indentation</source>
-        <translation>docstring tem indentação errada</translation>
+        <source>docstring does not contain a summary</source>
+        <translation>docstring não contém um sumário</translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="359"/>
-        <source>docstring summary does not end with a period</source>
-        <translation>sumário de docstring não termina com um ponto final</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="316"/>
-        <source>docstring summary is not in imperative mood (Does instead of Do)</source>
-        <translation>sumário de docstring não está no modo imperativo (Faz em vez de Faça)</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="320"/>
-        <source>docstring summary looks like a function&apos;s/method&apos;s signature</source>
-        <translation>sumário de docstring parece uma assinatura de método/função</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="323"/>
-        <source>docstring does not mention the return value type</source>
-        <translation>docstring não menciona o tipo de valor devolvido</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="326"/>
-        <source>function/method docstring is separated by a blank line</source>
-        <translation>docstring de método/função está separada por uma linha em branco</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="329"/>
-        <source>class docstring is not preceded by a blank line</source>
-        <translation>docstring de class não antecedida por uma linha em branco</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="332"/>
-        <source>class docstring is not followed by a blank line</source>
-        <translation>docstring de classe não está seguida por uma linha em branco</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="393"/>
-        <source>docstring summary is not followed by a blank line</source>
-        <translation>sumário de docstring não seguido por uma linha em branco</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="338"/>
-        <source>last paragraph of docstring is not followed by a blank line</source>
-        <translation>último parágrafo da docstring não está seguido por uma linha em branco</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="346"/>
-        <source>private function/method is missing a docstring</source>
-        <translation>falta uma docstring ao método/função privado</translation>
+        <source>docstring summary does not start with &apos;{0}&apos;</source>
+        <translation>sumário de docstring não começa com &apos;{0}&apos;</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="405"/>
+        <source>raised exception &apos;{0}&apos; is not documented in docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="408"/>
+        <source>documented exception &apos;{0}&apos; is not raised</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="411"/>
+        <source>docstring does not contain a @signal line but class defines signals</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="414"/>
+        <source>docstring contains a @signal line but class doesn&apos;t define signals</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="417"/>
+        <source>defined signal &apos;{0}&apos; is not documented in docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="420"/>
+        <source>documented signal &apos;{0}&apos; is not defined</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="349"/>
-        <source>private class is missing a docstring</source>
-        <translation>falta uma docstring à classe privada</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="353"/>
-        <source>leading quotes of docstring not on separate line</source>
-        <translation>aspas iniciais da docstring não estão em linha separada</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="356"/>
-        <source>trailing quotes of docstring not on separate line</source>
-        <translation>aspas de fecho da docstring não estão numa linha separada</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="363"/>
-        <source>docstring does not contain a @return line but function/method returns something</source>
-        <translation>docstring sem linha @return mas a função/método devolve algo</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="367"/>
-        <source>docstring contains a @return line but function/method doesn&apos;t return anything</source>
-        <translation>docstring com linha @return mas a função/método não devolve nada</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="371"/>
-        <source>docstring does not contain enough @param/@keyparam lines</source>
-        <translation>docstring sem linhas @param/@keyparam suficientes</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="374"/>
-        <source>docstring contains too many @param/@keyparam lines</source>
-        <translation>docstring com demasiadas linhas @param/@keyparam</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="377"/>
-        <source>keyword only arguments must be documented with @keyparam lines</source>
-        <translation>argumentos de palavra chave devem de estar documentados com linhas @keyparam</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="380"/>
-        <source>order of @param/@keyparam lines does not match the function/method signature</source>
-        <translation>ordem das linhas @param/@keyparam não coincidem com a assinatura de função/método</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="383"/>
-        <source>class docstring is preceded by a blank line</source>
-        <translation>docstring de classe está antecedida por uma linha em branco</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="385"/>
-        <source>class docstring is followed by a blank line</source>
-        <translation>docstring de classe está seguida por uma linha em branco</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="387"/>
-        <source>function/method docstring is preceded by a blank line</source>
-        <translation>docstring de função/método precedida por uma linha em branco</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="390"/>
-        <source>function/method docstring is followed by a blank line</source>
-        <translation>docstring de função/método seguida de uma linha em branco</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="396"/>
-        <source>last paragraph of docstring is followed by a blank line</source>
-        <translation>último parágrafo da docstring seguido de uma linha em branco</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="399"/>
-        <source>docstring does not contain a @exception line but function/method raises an exception</source>
-        <translation>docstring sem linha @exception mas a função/método cria uma exceção</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="403"/>
-        <source>docstring contains a @exception line but function/method doesn&apos;t raise an exception</source>
-        <translation>docstring contém uma linha @exception mas o método/função não levanta uma exceção</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="426"/>
-        <source>{0}: {1}</source>
-        <translation>{0}: {1}</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="312"/>
-        <source>docstring does not contain a summary</source>
-        <translation>docstring não contém um sumário</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="361"/>
-        <source>docstring summary does not start with &apos;{0}&apos;</source>
-        <translation>sumário de docstring não começa com &apos;{0}&apos;</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="407"/>
-        <source>raised exception &apos;{0}&apos; is not documented in docstring</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="410"/>
-        <source>documented exception &apos;{0}&apos; is not raised</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="413"/>
-        <source>docstring does not contain a @signal line but class defines signals</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="416"/>
-        <source>docstring contains a @signal line but class doesn&apos;t define signals</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="419"/>
-        <source>defined signal &apos;{0}&apos; is not documented in docstring</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="422"/>
-        <source>documented signal &apos;{0}&apos; is not defined</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="351"/>
         <source>class docstring is still a default string</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="344"/>
-        <source>function docstring is still a default string</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="342"/>
+        <source>function docstring is still a default string</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="340"/>
         <source>module docstring is still a default string</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11497,7 +11497,7 @@
         <translation>Desselecionar tudo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7835"/>
+        <location filename="../QScintilla/Editor.py" line="7834"/>
         <source>Check spelling...</source>
         <translation>Verificação ortográfica...</translation>
     </message>
@@ -11722,7 +11722,7 @@
         <translation>Editar ponto de interrupção...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5605"/>
+        <location filename="../QScintilla/Editor.py" line="5604"/>
         <source>Enable breakpoint</source>
         <translation>Habilitar pontos de interrupção</translation>
     </message>
@@ -11887,272 +11887,272 @@
         <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="4767"/>
+        <location filename="../QScintilla/Editor.py" line="4766"/>
         <source>Autocompletion</source>
         <translation>Autocompletar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4767"/>
+        <location filename="../QScintilla/Editor.py" line="4766"/>
         <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="5608"/>
+        <location filename="../QScintilla/Editor.py" line="5607"/>
         <source>Disable breakpoint</source>
         <translation>Inabilitar ponto de interrupção</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5983"/>
+        <location filename="../QScintilla/Editor.py" line="5982"/>
         <source>Code Coverage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5983"/>
+        <location filename="../QScintilla/Editor.py" line="5982"/>
         <source>Please select a coverage file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6046"/>
+        <location filename="../QScintilla/Editor.py" line="6045"/>
         <source>Show Code Coverage Annotations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6039"/>
+        <location filename="../QScintilla/Editor.py" line="6038"/>
         <source>All lines have been covered.</source>
         <translation>Foram cobertas as linhas todas.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6046"/>
+        <location filename="../QScintilla/Editor.py" line="6045"/>
         <source>There is no coverage file available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6163"/>
+        <location filename="../QScintilla/Editor.py" line="6162"/>
         <source>Profile Data</source>
         <translation>Dados de Perfil</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6163"/>
+        <location filename="../QScintilla/Editor.py" line="6162"/>
         <source>Please select a profile file</source>
         <translation>Escolha um ficheiro de perfil por favor</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6325"/>
+        <location filename="../QScintilla/Editor.py" line="6324"/>
         <source>Syntax Error</source>
         <translation>Erro de Sintaxe</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6325"/>
+        <location filename="../QScintilla/Editor.py" line="6324"/>
         <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="6714"/>
+        <location filename="../QScintilla/Editor.py" line="6713"/>
         <source>Macro Name</source>
         <translation>Nome de Macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6714"/>
+        <location filename="../QScintilla/Editor.py" line="6713"/>
         <source>Select a macro name:</source>
         <translation>Selecionar um nome de macro:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6742"/>
+        <location filename="../QScintilla/Editor.py" line="6741"/>
         <source>Load macro file</source>
         <translation>Carregar ficheiro macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6785"/>
+        <location filename="../QScintilla/Editor.py" line="6784"/>
         <source>Macro files (*.macro)</source>
         <translation>Ficheiros Macro (*.macro)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6765"/>
+        <location filename="../QScintilla/Editor.py" line="6764"/>
         <source>Error loading macro</source>
         <translation>Erro ao carregar macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6756"/>
+        <location filename="../QScintilla/Editor.py" line="6755"/>
         <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="6765"/>
+        <location filename="../QScintilla/Editor.py" line="6764"/>
         <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="6785"/>
+        <location filename="../QScintilla/Editor.py" line="6784"/>
         <source>Save macro file</source>
         <translation>Gravar ficheiro macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6802"/>
+        <location filename="../QScintilla/Editor.py" line="6801"/>
         <source>Save macro</source>
         <translation>Gravar macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6802"/>
+        <location filename="../QScintilla/Editor.py" line="6801"/>
         <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="6818"/>
+        <location filename="../QScintilla/Editor.py" line="6817"/>
         <source>Error saving macro</source>
         <translation>Erro ao gravar macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6818"/>
+        <location filename="../QScintilla/Editor.py" line="6817"/>
         <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="6831"/>
+        <location filename="../QScintilla/Editor.py" line="6830"/>
         <source>Start Macro Recording</source>
         <translation>Iniciar Registo de Macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6831"/>
+        <location filename="../QScintilla/Editor.py" line="6830"/>
         <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="6857"/>
+        <location filename="../QScintilla/Editor.py" line="6856"/>
         <source>Macro Recording</source>
         <translation>Gravação de Macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6857"/>
+        <location filename="../QScintilla/Editor.py" line="6856"/>
         <source>Enter name of the macro:</source>
         <translation>Introduza o nome de macro:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6997"/>
+        <location filename="../QScintilla/Editor.py" line="6996"/>
         <source>File changed</source>
         <translation>Ficheiro alterado</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7167"/>
+        <location filename="../QScintilla/Editor.py" line="7166"/>
         <source>{0} (ro)</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7308"/>
+        <location filename="../QScintilla/Editor.py" line="7307"/>
         <source>Drop Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7308"/>
+        <location filename="../QScintilla/Editor.py" line="7307"/>
         <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="7329"/>
+        <location filename="../QScintilla/Editor.py" line="7328"/>
         <source>Resources</source>
         <translation>Recursos</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7331"/>
+        <location filename="../QScintilla/Editor.py" line="7330"/>
         <source>Add file...</source>
         <translation>Adicionar Ficheiro...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7333"/>
+        <location filename="../QScintilla/Editor.py" line="7332"/>
         <source>Add files...</source>
         <translation>Adicionar Ficheiros...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7335"/>
+        <location filename="../QScintilla/Editor.py" line="7334"/>
         <source>Add aliased file...</source>
         <translation>Adicionar ficheiro com pseudónimo...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7338"/>
+        <location filename="../QScintilla/Editor.py" line="7337"/>
         <source>Add localized resource...</source>
         <translation>Adicionar recursos localizado...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7342"/>
+        <location filename="../QScintilla/Editor.py" line="7341"/>
         <source>Add resource frame</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7361"/>
+        <location filename="../QScintilla/Editor.py" line="7360"/>
         <source>Add file resource</source>
         <translation>Adicionar recurso de ficheiro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7377"/>
+        <location filename="../QScintilla/Editor.py" line="7376"/>
         <source>Add file resources</source>
         <translation>Adicionar recursos de ficheiro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7404"/>
+        <location filename="../QScintilla/Editor.py" line="7403"/>
         <source>Add aliased file resource</source>
         <translation>Adicionar recurso de ficheiro com pseudónimo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7404"/>
+        <location filename="../QScintilla/Editor.py" line="7403"/>
         <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="7470"/>
+        <location filename="../QScintilla/Editor.py" line="7469"/>
         <source>Package Diagram</source>
         <translation>Diagrama do Pacote</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7470"/>
+        <location filename="../QScintilla/Editor.py" line="7469"/>
         <source>Include class attributes?</source>
         <translation>Incluir atributos de classes?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7492"/>
+        <location filename="../QScintilla/Editor.py" line="7491"/>
         <source>Imports Diagram</source>
         <translation>Diagrama de Imports</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7492"/>
+        <location filename="../QScintilla/Editor.py" line="7491"/>
         <source>Include imports from external modules?</source>
         <translation>Incluir imports de módulos externos?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7506"/>
+        <location filename="../QScintilla/Editor.py" line="7505"/>
         <source>Application Diagram</source>
         <translation>Diagrama da Aplicação</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7506"/>
+        <location filename="../QScintilla/Editor.py" line="7505"/>
         <source>Include module names?</source>
         <translation>Incluir nome dos módulos?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7838"/>
+        <location filename="../QScintilla/Editor.py" line="7837"/>
         <source>Add to dictionary</source>
         <translation>Adicionar dicionário</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7840"/>
+        <location filename="../QScintilla/Editor.py" line="7839"/>
         <source>Ignore All</source>
         <translation>Ignorar Tudo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6602"/>
+        <location filename="../QScintilla/Editor.py" line="6601"/>
         <source>Warning: {0}</source>
         <translation>Aviso: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6609"/>
+        <location filename="../QScintilla/Editor.py" line="6608"/>
         <source>Error: {0}</source>
         <translation>Erro: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6993"/>
+        <location filename="../QScintilla/Editor.py" line="6992"/>
         <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="5176"/>
+        <location filename="../QScintilla/Editor.py" line="5175"/>
         <source>Call-Tips Provider</source>
         <translation type="unfinished"></translation>
     </message>
@@ -12177,27 +12177,27 @@
         <translation>Alteração anterior</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8256"/>
+        <location filename="../QScintilla/Editor.py" line="8255"/>
         <source>Sort Lines</source>
         <translation>Ordenar Linhas</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8256"/>
+        <location filename="../QScintilla/Editor.py" line="8255"/>
         <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="6537"/>
+        <location filename="../QScintilla/Editor.py" line="6536"/>
         <source>Warning</source>
         <translation>Aviso</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6537"/>
+        <location filename="../QScintilla/Editor.py" line="6536"/>
         <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="6599"/>
+        <location filename="../QScintilla/Editor.py" line="6598"/>
         <source>Style: {0}</source>
         <translation>Estilo: {0}</translation>
     </message>
@@ -12222,7 +12222,7 @@
         <translation>Reabrir Com Codificação</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6987"/>
+        <location filename="../QScintilla/Editor.py" line="6986"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric6. Reread it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; foi alterado enquanto estava aberto em eric6. Recarregar?&lt;/p&gt;</translation>
     </message>
@@ -12237,27 +12237,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4897"/>
+        <location filename="../QScintilla/Editor.py" line="4896"/>
         <source>Auto-Completion Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4897"/>
+        <location filename="../QScintilla/Editor.py" line="4896"/>
         <source>The completion list provider &apos;{0}&apos; was already registered. Ignoring duplicate request.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5176"/>
+        <location filename="../QScintilla/Editor.py" line="5175"/>
         <source>The call-tips provider &apos;{0}&apos; was already registered. Ignoring duplicate request.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8345"/>
+        <location filename="../QScintilla/Editor.py" line="8344"/>
         <source>Register Mouse Click Handler</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8345"/>
+        <location filename="../QScintilla/Editor.py" line="8344"/>
         <source>A mouse click handler for &quot;{0}&quot; was already registered by &quot;{1}&quot;. Aborting request by &quot;{2}&quot;...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -12287,12 +12287,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8466"/>
+        <location filename="../QScintilla/Editor.py" line="8465"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8466"/>
+        <location filename="../QScintilla/Editor.py" line="8465"/>
         <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"></translation>
     </message>
@@ -14111,27 +14111,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="681"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="685"/>
         <source>Delete Sub-Style</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="681"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="685"/>
         <source>&lt;p&gt;Shall the sub-style &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="721"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="725"/>
         <source>{0} - Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="749"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="753"/>
         <source>Reset Sub-Styles to Default</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="749"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="753"/>
         <source>&lt;p&gt;Do you really want to reset all defined sub-styles of &lt;b&gt;{0}&lt;/b&gt; to the default values?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -18001,7 +18001,7 @@
 <context>
     <name>EricdocPlugin</name>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="102"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="81"/>
         <source>Qt Help Tools</source>
         <translation>Ferramentas de Ajuda de Qt</translation>
     </message>
@@ -18011,22 +18011,22 @@
         <translation>Gerador de Documentação do Eric6</translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="145"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="124"/>
         <source>Generate documentation (eric6_doc)</source>
         <translation>Criar documentação (eric6_doc)</translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="145"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="124"/>
         <source>Generate &amp;documentation (eric6_doc)</source>
         <translation>Criar &amp;documentação (eric6_doc)</translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="149"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="128"/>
         <source>Generate API documentation using eric6_doc</source>
         <translation>Criar documentação da API utilizando eric6_doc</translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="151"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="130"/>
         <source>&lt;b&gt;Generate documentation&lt;/b&gt;&lt;p&gt;Generate API documentation using eric6_doc.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Criar documentação&lt;/b&gt;&lt;p&gt;Criar documentação da API utilizando eric6_doc.&lt;/p&gt;</translation>
     </message>
@@ -26978,27 +26978,27 @@
 <context>
     <name>Globals</name>
     <message>
-        <location filename="../Globals/__init__.py" line="452"/>
+        <location filename="../Globals/__init__.py" line="421"/>
         <source>{0:4.2f} Bytes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Globals/__init__.py" line="456"/>
+        <location filename="../Globals/__init__.py" line="425"/>
         <source>{0:4.2f} KiB</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Globals/__init__.py" line="460"/>
+        <location filename="../Globals/__init__.py" line="429"/>
         <source>{0:4.2f} MiB</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Globals/__init__.py" line="464"/>
+        <location filename="../Globals/__init__.py" line="433"/>
         <source>{0:4.2f} GiB</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Globals/__init__.py" line="468"/>
+        <location filename="../Globals/__init__.py" line="437"/>
         <source>{0:4.2f} TiB</source>
         <translation type="unfinished"></translation>
     </message>
@@ -27008,12 +27008,22 @@
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GlosbeEngine.py" line="85"/>
         <source>Invalid response received</source>
-        <translation>Recibida resposta inválida</translation>
+        <translation type="obsolete">Recibida resposta inválida</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GlosbeEngine.py" line="99"/>
         <source>No translation found.</source>
-        <translation>Não se encontrou tradução.</translation>
+        <translation type="obsolete">Não se encontrou tradução.</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GlosbeEngine.py" line="85"/>
+        <source>Glosbe: Invalid response received</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GlosbeEngine.py" line="99"/>
+        <source>Glosbe: No translation found.</source>
+        <translation type="unfinished"></translation>
     </message>
 </context>
 <context>
@@ -27021,17 +27031,32 @@
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV1Engine.py" line="165"/>
         <source>Only texts up to {0} characters are allowed.</source>
-        <translation>Só estão permitidos textos até {0} caracteres.</translation>
+        <translation type="obsolete">Só estão permitidos textos até {0} caracteres.</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV1Engine.py" line="98"/>
         <source>Invalid response received</source>
-        <translation>Recibida resposta inválida</translation>
+        <translation type="obsolete">Recibida resposta inválida</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV1Engine.py" line="135"/>
         <source>No translation found.</source>
-        <translation>Não se encontrou tradução.</translation>
+        <translation type="obsolete">Não se encontrou tradução.</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV1Engine.py" line="98"/>
+        <source>Google V1: Invalid response received</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV1Engine.py" line="135"/>
+        <source>Google V1: No translation found.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV1Engine.py" line="165"/>
+        <source>Google V1: Only texts up to {0} characters are allowed.</source>
+        <translation type="unfinished"></translation>
     </message>
 </context>
 <context>
@@ -27039,17 +27064,32 @@
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="72"/>
         <source>A valid Google Translate key is required.</source>
-        <translation>É necessário uma chave válida de Google Translate.</translation>
+        <translation type="obsolete">É necessário uma chave válida de Google Translate.</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="83"/>
         <source>Invalid response received</source>
-        <translation>Recibida resposta inválida</translation>
+        <translation type="obsolete">Recibida resposta inválida</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="89"/>
         <source>No translation available.</source>
-        <translation>Sem tradução disponível.</translation>
+        <translation type="obsolete">Sem tradução disponível.</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="72"/>
+        <source>Google V2: A valid Google Translate key is required.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="84"/>
+        <source>Google V2: Invalid response received</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="90"/>
+        <source>Google V2: No translation available.</source>
+        <translation type="unfinished"></translation>
     </message>
 </context>
 <context>
@@ -40173,34 +40213,44 @@
 <context>
     <name>IbmWatsonEngine</name>
     <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="147"/>
+        <source>Invalid response received</source>
+        <translation type="obsolete">Recibida resposta inválida</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="150"/>
+        <source>No translation available.</source>
+        <translation type="obsolete">Sem tradução disponível.</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
+        <source>Error Getting Available Translations</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
+        <source>IBM Watson: No translation available.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="183"/>
-        <source>A valid IBM Watson Language Translator key is required.</source>
+        <source>IBM Watson: A valid Language Translator key is required.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="192"/>
-        <source>A valid IBM Watson Language Translator URL is required.</source>
+        <source>IBM Watson: A valid Language Translator URL is required.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="244"/>
-        <source>Invalid response received</source>
-        <translation type="unfinished">Recibida resposta inválida</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
-        <source>No translation available.</source>
-        <translation type="unfinished">Sem tradução disponível.</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
-        <source>Error Getting Available Translations</source>
+        <source>IBM Watson: Invalid response received</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="232"/>
-        <source>The server sent an error indication.
-Error: {0}</source>
+        <source>IBM Watson: The server sent an error indication.
+ Error: {0}</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -46004,147 +46054,147 @@
 <context>
     <name>Lexers</name>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="84"/>
+        <source>Bash</source>
+        <translation></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="86"/>
-        <source>Bash</source>
+        <source>Batch</source>
         <translation></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="88"/>
-        <source>Batch</source>
+        <source>C/C++</source>
         <translation></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="90"/>
-        <source>C/C++</source>
+        <source>C#</source>
         <translation></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="92"/>
-        <source>C#</source>
+        <source>CMake</source>
         <translation></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="94"/>
-        <source>CMake</source>
-        <translation></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="96"/>
         <source>CSS</source>
         <translation></translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="98"/>
+        <source>D</source>
+        <translation></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="100"/>
-        <source>D</source>
-        <translation></translation>
+        <source>Diff</source>
+        <translation>Diff</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="102"/>
-        <source>Diff</source>
-        <translation>Diff</translation>
+        <source>Fortran</source>
+        <translation></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="104"/>
-        <source>Fortran</source>
+        <source>Fortran77</source>
         <translation></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="106"/>
-        <source>Fortran77</source>
+        <source>HTML/PHP/XML</source>
         <translation></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="108"/>
-        <source>HTML/PHP/XML</source>
+        <source>IDL</source>
         <translation></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="110"/>
-        <source>IDL</source>
+        <source>Java</source>
         <translation></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="112"/>
-        <source>Java</source>
+        <source>JavaScript</source>
         <translation></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="114"/>
-        <source>JavaScript</source>
+        <source>Lua</source>
         <translation></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="116"/>
-        <source>Lua</source>
-        <translation></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="118"/>
         <source>Makefile</source>
         <translation></translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="122"/>
+        <source>Pascal</source>
+        <translation></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="124"/>
-        <source>Pascal</source>
+        <source>Perl</source>
         <translation></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="126"/>
-        <source>Perl</source>
-        <translation></translation>
+        <source>PostScript</source>
+        <translation>PostScript</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="128"/>
-        <source>PostScript</source>
-        <translation>PostScript</translation>
+        <source>Povray</source>
+        <translation></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="130"/>
-        <source>Povray</source>
-        <translation></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="132"/>
         <source>Properties</source>
         <translation>Propriedades</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="141"/>
+        <source>Ruby</source>
+        <translation></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="143"/>
-        <source>Ruby</source>
+        <source>SQL</source>
         <translation></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="145"/>
-        <source>SQL</source>
+        <source>TCL</source>
         <translation></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="147"/>
-        <source>TCL</source>
+        <source>TeX</source>
         <translation></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="149"/>
-        <source>TeX</source>
+        <source>VHDL</source>
         <translation></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="151"/>
-        <source>VHDL</source>
+        <source>XML</source>
         <translation></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="153"/>
-        <source>XML</source>
-        <translation></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="155"/>
         <source>YAML</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="183"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="173"/>
         <source>Pygments</source>
         <translation></translation>
     </message>
@@ -46159,332 +46209,332 @@
         <translation type="obsolete">Ficheiros GUI de Python (*.pyw *.pyw2 *.pyw3)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="575"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="562"/>
         <source>Quixote Template Files (*.ptl)</source>
         <translation>Ficheiros Modelos de Quixote (*.ptl)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="578"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="565"/>
         <source>Ruby Files (*.rb)</source>
         <translation>Ficheiros Ruby (*.rb)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="581"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="568"/>
         <source>IDL Files (*.idl)</source>
         <translation>Ficheiros IDL (*.idl)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="408"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="398"/>
         <source>C Files (*.h *.c)</source>
         <translation>Ficheiros C (*.h *.c)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="411"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="401"/>
         <source>C++ Files (*.h *.hpp *.hh *.cxx *.cpp *.cc)</source>
         <translation>Ficheiros C++ (*.h *.hpp *.hh *.cxx *.cpp *.cc)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="596"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="583"/>
         <source>C# Files (*.cs)</source>
         <translation>Ficheiros C# (*.cs)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="417"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="407"/>
         <source>HTML Files (*.html *.htm *.asp *.shtml)</source>
         <translation>Ficheiros HTML (*.html *.htm *.asp *.shtml)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="608"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="595"/>
         <source>CSS Files (*.css)</source>
         <translation>Ficheiros CSS (*.css)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="611"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="598"/>
         <source>QSS Files (*.qss)</source>
         <translation>Ficheiros QSS (*.qss)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="426"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="416"/>
         <source>PHP Files (*.php *.php3 *.php4 *.php5 *.phtml)</source>
         <translation>Ficheiros PHP (*.php *.php3 *.php4 *.php5 *.phtml)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="429"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="419"/>
         <source>XML Files (*.xml *.xsl *.xslt *.dtd *.svg *.xul *.xsd)</source>
         <translation>Ficheiros XML (*.xml *.xsl *.xslt *.dtd *.svg *.xul *.xsd)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="623"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="610"/>
         <source>Qt Resource Files (*.qrc)</source>
         <translation>Ficheiro de Recursos Qt (*.qrc)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="435"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="425"/>
         <source>D Files (*.d *.di)</source>
         <translation>Ficheiros D (*.d *.di)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="632"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="619"/>
         <source>Java Files (*.java)</source>
         <translation>Ficheiros Java (*.java)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="635"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="622"/>
         <source>JavaScript Files (*.js)</source>
         <translation>Ficheiros JavaScript (*.js)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="638"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="625"/>
         <source>SQL Files (*.sql)</source>
         <translation>Ficheiros SQL (*.sql)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="641"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="628"/>
         <source>Docbook Files (*.docbook)</source>
         <translation>Ficheiros Docbook (*.docbook)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="450"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="440"/>
         <source>Perl Files (*.pl *.pm *.ph)</source>
         <translation>Ficheiros Perl (*.pl *.pm *.ph)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="650"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="637"/>
         <source>Lua Files (*.lua)</source>
         <translation>Ficheiros Lua (*.lua)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="456"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="446"/>
         <source>Tex Files (*.tex *.sty *.aux *.toc *.idx)</source>
         <translation>Ficheiros Tex (*.tex *.sty *.aux *.toc *.idx)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="653"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="640"/>
         <source>Shell Files (*.sh)</source>
         <translation>Ficheiros Shell (*.sh)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="462"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="452"/>
         <source>Batch Files (*.bat *.cmd)</source>
         <translation>Ficheiros Batch (*.bat *.cmd)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="465"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="455"/>
         <source>Diff Files (*.diff *.patch)</source>
         <translation>Ficheiros Diff (*.diff *.patch)</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="458"/>
+        <source>Makefiles (*makefile Makefile *.mak)</source>
+        <translation type="unfinished">Ficheiros Makefile (*.mak)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="461"/>
+        <source>Properties Files (*.properties *.ini *.inf *.reg *.cfg *.cnf *.rc)</source>
+        <translation>Ficheiros Propriedades (*.properties *.ini *.inf *.reg *.cfg *.cnf *.rc)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="664"/>
+        <source>Povray Files (*.pov)</source>
+        <translation>Ficheiros Povray (*.pov)</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="468"/>
-        <source>Makefiles (*makefile Makefile *.mak)</source>
-        <translation type="unfinished">Ficheiros Makefile (*.mak)</translation>
+        <source>CMake Files (CMakeLists.txt *.cmake *.ctest)</source>
+        <translation>Ficheiros CMake (CMakeLists.txt *.cmake *.ctest)</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="471"/>
-        <source>Properties Files (*.properties *.ini *.inf *.reg *.cfg *.cnf *.rc)</source>
-        <translation>Ficheiros Propriedades (*.properties *.ini *.inf *.reg *.cfg *.cnf *.rc)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="677"/>
-        <source>Povray Files (*.pov)</source>
-        <translation>Ficheiros Povray (*.pov)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="478"/>
-        <source>CMake Files (CMakeLists.txt *.cmake *.ctest)</source>
-        <translation>Ficheiros CMake (CMakeLists.txt *.cmake *.ctest)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="481"/>
         <source>VHDL Files (*.vhd *.vhdl)</source>
         <translation>Ficheiros VHDL (*.vhd *.vhdl)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="484"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="474"/>
         <source>TCL/Tk Files (*.tcl *.tk)</source>
         <translation>Ficheiros TCL/Tk (*.tcl *.tk)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="487"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="477"/>
         <source>Fortran Files (*.f90 *.f95 *.f2k)</source>
         <translation>Ficheiros Fortran (*.f90 *.f95 *.f2k)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="490"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="480"/>
         <source>Fortran77 Files (*.f *.for)</source>
         <translation>Ficheiros Fortran77 (*.f *.for)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="493"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="483"/>
         <source>Pascal Files (*.dpr *.dpk *.pas *.dfm *.inc *.pp)</source>
         <translation>Ficheiros Pascal (*.dpr *.dpk *.pas *.dfm *.inc *.pp)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="704"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="691"/>
         <source>PostScript Files (*.ps)</source>
         <translation>Ficheiros PostScript (*.ps)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="499"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="489"/>
         <source>YAML Files (*.yaml *.yml)</source>
         <translation>Ficheiros YAML (*.yaml *.yml)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="746"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="730"/>
         <source>All Files (*)</source>
         <translation>Ficheiros Todos (*)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="560"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="547"/>
         <source>Python3 Files (*.py)</source>
         <translation>Ficheiros Python3 (*.py)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="563"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="550"/>
         <source>Python3 GUI Files (*.pyw)</source>
         <translation>Ficheiros GUI de Python3 (*.pyw)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="587"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="574"/>
         <source>C Files (*.c)</source>
         <translation>Ficheiros C (*.c)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="590"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="577"/>
         <source>C++ Files (*.cpp)</source>
         <translation>Ficheiros C++ (*.cpp)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="593"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="580"/>
         <source>C++/C Header Files (*.h)</source>
         <translation>Ficheiros de Cabeçalho C++/C (*.h)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="599"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="586"/>
         <source>HTML Files (*.html)</source>
         <translation>Ficheiros HTML (*.html)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="602"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="589"/>
         <source>PHP Files (*.php)</source>
         <translation>Ficheiros PHP (*.php)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="605"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="592"/>
         <source>ASP Files (*.asp)</source>
         <translation>Ficheiros ASP (*.asp)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="614"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="601"/>
         <source>XML Files (*.xml)</source>
         <translation>Ficheiros XML (*.xml)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="617"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="604"/>
         <source>XSL Files (*.xsl)</source>
         <translation>Ficheiros XSL (*.xsl)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="620"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="607"/>
         <source>DTD Files (*.dtd)</source>
         <translation>Ficheiros DTD (*.dtd)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="626"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="613"/>
         <source>D Files (*.d)</source>
         <translation>Ficheiros D (*.d)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="629"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="616"/>
         <source>D Interface Files (*.di)</source>
         <translation>Ficheiros Interface D (*.di)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="644"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="631"/>
         <source>Perl Files (*.pl)</source>
         <translation>Ficheiros Perl (*.pl)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="647"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="634"/>
         <source>Perl Module Files (*.pm)</source>
         <translation>Ficheiros Módulos Perl (*.pm)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="656"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="643"/>
         <source>Batch Files (*.bat)</source>
         <translation>Ficheiros Batch (*.bat)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="659"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="646"/>
         <source>TeX Files (*.tex)</source>
         <translation>Ficheiros TeX (*.tex)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="662"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="649"/>
         <source>TeX Template Files (*.sty)</source>
         <translation>Ficheiros Modelos TeX (*.sty)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="665"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="652"/>
         <source>Diff Files (*.diff)</source>
         <translation>Ficheiros Diff (*.diff)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="668"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="655"/>
         <source>Make Files (*.mak)</source>
         <translation>Ficheiros Make (*.mak)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="671"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="658"/>
         <source>Properties Files (*.ini)</source>
         <translation>Ficheiros de Propriedades (*.ini)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="674"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="661"/>
         <source>Configuration Files (*.cfg)</source>
         <translation>Ficheiros de Configuração (*.cfg)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="680"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="667"/>
         <source>CMake Files (CMakeLists.txt)</source>
         <translation>Ficheiros CMake (CMakeLists.txt)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="683"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="670"/>
         <source>CMake Macro Files (*.cmake)</source>
         <translation>Ficheiros Macro CMake (*.cmake)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="686"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="673"/>
         <source>VHDL Files (*.vhd)</source>
         <translation>Ficheiros VHDL (*.vhd)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="689"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="676"/>
         <source>TCL Files (*.tcl)</source>
         <translation>Ficheiros TCL (*.tcl)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="692"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="679"/>
         <source>Tk Files (*.tk)</source>
         <translation>Ficheiros Tk (*.tk)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="695"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="682"/>
         <source>Fortran Files (*.f95)</source>
         <translation>Ficheiros Fortran (*.f95)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="698"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="685"/>
         <source>Fortran77 Files (*.f)</source>
         <translation>Ficheiros Fortran77 (*.f)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="701"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="688"/>
         <source>Pascal Files (*.pas)</source>
         <translation>Ficheiros Pascal (*.pas)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="707"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="694"/>
         <source>YAML Files (*.yml)</source>
         <translation>Ficheiros YAML (*.yml)</translation>
     </message>
@@ -46499,135 +46549,140 @@
         <translation type="obsolete">Ficheiros GUI de Python2 (*.pyw2)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="137"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="135"/>
         <source>Python3</source>
         <translation></translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="118"/>
+        <source>Matlab</source>
+        <translation></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="120"/>
-        <source>Matlab</source>
-        <translation></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="122"/>
         <source>Octave</source>
         <translation>Octave</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="502"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="495"/>
         <source>Matlab Files (*.m *.m.matlab)</source>
         <translation>Ficheiros Matlab (*.m *.m.matlab)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="710"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="700"/>
         <source>Matlab Files (*.m)</source>
         <translation>Ficheiros Matlab (*.m)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="713"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="703"/>
         <source>Octave Files (*.m.octave)</source>
         <translation>Ficheiros Octave (*.m.octave)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="505"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="498"/>
         <source>Octave Files (*.m *.m.octave)</source>
         <translation>Ficheiros Octave (*.m *.m.octave)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="141"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="139"/>
         <source>QSS</source>
         <translation>QSS</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="155"/>
+        <source>Gettext</source>
+        <translation>Gettext</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="157"/>
-        <source>Gettext</source>
-        <translation>Gettext</translation>
+        <source>CoffeeScript</source>
+        <translation>CoffeeScript</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="706"/>
+        <source>Gettext Files (*.po)</source>
+        <translation>Ficheiros Gettext (*.po)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="709"/>
+        <source>CoffeeScript Files (*.coffee)</source>
+        <translation>Ficheiros CoffeeScript (*.coffee)</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="159"/>
-        <source>CoffeeScript</source>
-        <translation>CoffeeScript</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="716"/>
-        <source>Gettext Files (*.po)</source>
-        <translation>Ficheiros Gettext (*.po)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="719"/>
-        <source>CoffeeScript Files (*.coffee)</source>
-        <translation>Ficheiros CoffeeScript (*.coffee)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="165"/>
         <source>JSON</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="725"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="712"/>
         <source>JSON Files (*.json)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="170"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="161"/>
         <source>Markdown</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="730"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="715"/>
         <source>Markdown Files (*.md)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="134"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="132"/>
         <source>Protocol (protobuf)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="584"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="571"/>
         <source>Protocol Files (*.proto)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="98"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="96"/>
         <source>Cython</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="393"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="383"/>
         <source>Cython Files (*.pyx *.pxd *.pxi)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="566"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="553"/>
         <source>Cython Files (*.pyx)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="569"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="556"/>
         <source>Cython Declaration Files (*.pxd)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="572"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="559"/>
         <source>Cython Include Files (*.pxi)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="139"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="137"/>
         <source>MicroPython</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="387"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="377"/>
         <source>Python Files (*.py *.py3)</source>
         <translation type="unfinished">Ficheiros Python (*.py *.py3)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="390"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="380"/>
         <source>Python GUI Files (*.pyw *.pyw3)</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="697"/>
+        <source>TOML Files (*.toml)</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>LfConvertDataDialog</name>
@@ -48642,24 +48697,39 @@
 <context>
     <name>MicrosoftEngine</name>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="187"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="190"/>
         <source>You have not registered for the Microsoft Translation service.</source>
         <translation>Não se registou para o serviço Microsoft Translation.</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="193"/>
         <source>No valid access token available.</source>
-        <translation>Não há nenhum passe válido disponível.</translation>
+        <translation type="obsolete">Não há nenhum passe válido disponível.</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="170"/>
         <source>No translation available.</source>
-        <translation>Sem tradução disponível.</translation>
+        <translation type="obsolete">Sem tradução disponível.</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="205"/>
         <source>No Text-to-Speech for the selected language available.</source>
-        <translation>Não está disponível Text-to-Speech para o idioma selecionado.</translation>
+        <translation type="obsolete">Não está disponível Text-to-Speech para o idioma selecionado.</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="196"/>
+        <source>MS Translator: No valid access token available.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="173"/>
+        <source>MS Translator: No translation available.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="211"/>
+        <source>MS Translator: No Text-to-Speech for the selected language available.</source>
+        <translation type="unfinished"></translation>
     </message>
 </context>
 <context>
@@ -49059,238 +49129,238 @@
         <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="2176"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2175"/>
         <source>About</source>
         <translation>Acerca</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2176"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2175"/>
         <source>&amp;About</source>
         <translation>A&amp;cerca</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2180"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2179"/>
         <source>Display information about this software</source>
         <translation>Mostra a informação acerca deste software</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2182"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2181"/>
         <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="2188"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2187"/>
         <source>About Qt</source>
         <translation>Acerca de Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2188"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2187"/>
         <source>About &amp;Qt</source>
         <translation>Acerca de &amp;Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2192"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2191"/>
         <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="2194"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2193"/>
         <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="2201"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2200"/>
         <source>What&apos;s This?</source>
         <translation>O que é Isto?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2201"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2200"/>
         <source>&amp;What&apos;s This?</source>
         <translation>O &amp;que é Isto?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2201"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2200"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation></translation>
     </message>
     <message>
+        <location filename="../QScintilla/MiniEditor.py" line="2206"/>
+        <source>Context sensitive help</source>
+        <translation>Ajuda sensível ao contexto</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/MiniEditor.py" line="2207"/>
-        <source>Context sensitive help</source>
-        <translation>Ajuda sensível ao contexto</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2208"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Mostrar ajuda sensível a contexto&lt;/b&gt;&lt;p&gt;No modo &apos;Que é Isto?&apos; o cursor do rato mostra uma flecha com um ponto de  interrogação, e pode clicar nos elementos da interface para ver uma breve descrição do que fazem e como se usam. Nas caixas de diálogo, pode-se aceder a esta característica através do botão de ajuda contextual da barra de título.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2224"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2223"/>
         <source>&amp;File</source>
         <translation>&amp;Ficheiro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2236"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2235"/>
         <source>&amp;Edit</source>
         <translation>&amp;Editar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2256"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2255"/>
         <source>&amp;Help</source>
         <translation>&amp;Ajuda</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2268"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2267"/>
         <source>File</source>
         <translation>Ficheiro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2281"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2280"/>
         <source>Edit</source>
         <translation>Editar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2291"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2290"/>
         <source>Find</source>
         <translation>Encontrar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2298"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2297"/>
         <source>Help</source>
         <translation>Ajuda</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2311"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2310"/>
         <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="2318"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2317"/>
         <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="2325"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2324"/>
         <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="2330"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2329"/>
         <source>Ready</source>
         <translation>Preparado</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2357"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2356"/>
         <source>The document has unsaved changes.</source>
         <translation>O documento tem alterações por gravar.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2386"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2385"/>
         <source>Open File</source>
         <translation>Abrir Ficheiro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2386"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2385"/>
         <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="2415"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2414"/>
         <source>File loaded</source>
         <translation>Ficheiro carregado</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2496"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2495"/>
         <source>Save File</source>
         <translation>Gravar Ficheiro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2496"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2495"/>
         <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="2504"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2503"/>
         <source>File saved</source>
         <translation>Ficheiro gravado</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2851"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2849"/>
         <source>Untitled</source>
         <translation>Sem Título</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2533"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2532"/>
         <source>{0}[*] - {1}</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2533"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2532"/>
         <source>Mini Editor</source>
         <translation>Mini Editor</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2814"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2812"/>
         <source>Printing...</source>
         <translation>A imprimir...</translation>
     </message>
     <message>
+        <location filename="../QScintilla/MiniEditor.py" line="2830"/>
+        <source>Printing completed</source>
+        <translation>Impressão completa</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/MiniEditor.py" line="2832"/>
-        <source>Printing completed</source>
-        <translation>Impressão completa</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2834"/>
         <source>Error while printing</source>
         <translation>Erro durante a impressão</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2837"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2835"/>
         <source>Printing aborted</source>
         <translation>Impressão cancelada</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2892"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2890"/>
         <source>Select all</source>
         <translation>Selecionar tudo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2893"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2891"/>
         <source>Deselect all</source>
         <translation>Desselecionar tudo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2907"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2905"/>
         <source>Languages</source>
         <translation>Idiomas</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2910"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2908"/>
         <source>No Language</source>
         <translation>Sem Idioma</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2934"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2932"/>
         <source>Guessed</source>
         <translation>Adivinhado</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2956"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2954"/>
         <source>Alternatives</source>
         <translation>Alternativas</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2952"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2950"/>
         <source>Alternatives ({0})</source>
         <translation>Alternativas ({0})</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2972"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2970"/>
         <source>Pygments Lexer</source>
         <translation>Analizador Léxico Pygments</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2972"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2970"/>
         <source>Select the Pygments lexer to apply.</source>
         <translation>Selecionar o analizador léxico Pygments a aplicar.</translation>
     </message>
@@ -49305,7 +49375,7 @@
         <translation>O Mini Editor de eric6 é um componente de edição baseado em QScintilla. Pode usar-se para simples tarefas de edição que não necessitam a potencia de um editor desenvolvido.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2357"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2356"/>
         <source>eric6 Mini Editor</source>
         <translation>Mini Editor eric6</translation>
     </message>
@@ -49330,17 +49400,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3490"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3488"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3490"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3488"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2516"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2515"/>
         <source>[*] - {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -49348,463 +49418,463 @@
 <context>
     <name>MiscellaneousChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="492"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="490"/>
         <source>coding magic comment not found</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="495"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="493"/>
         <source>unknown encoding ({0}) found in coding magic comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="498"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="496"/>
         <source>copyright notice not present</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="501"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="499"/>
         <source>copyright notice contains invalid author</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="702"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="700"/>
         <source>found {0} formatter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="705"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="703"/>
         <source>format string does contain unindexed parameters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="708"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="706"/>
         <source>docstring does contain unindexed parameters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="711"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="709"/>
         <source>other string does contain unindexed parameters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="714"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="712"/>
         <source>format call uses too large index ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="717"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="715"/>
         <source>format call uses missing keyword ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="720"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="718"/>
         <source>format call uses keyword arguments but no named entries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="723"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="721"/>
         <source>format call uses variable arguments but no numbered entries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="726"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="724"/>
         <source>format call uses implicit and explicit indexes together</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="729"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="727"/>
         <source>format call provides unused index ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="732"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="730"/>
         <source>format call provides unused keyword ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="751"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="749"/>
         <source>expected these __future__ imports: {0}; but only got: {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="754"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="752"/>
         <source>expected these __future__ imports: {0}; but got none</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="761"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="759"/>
         <source>print statement found</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="764"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="762"/>
         <source>one element tuple found</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="800"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="798"/>
         <source>{0}: {1}</source>
         <translation type="unfinished">{0}: {1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="504"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="502"/>
         <source>&quot;{0}&quot; is a Python builtin and is being shadowed; consider renaming the variable</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="508"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="506"/>
         <source>&quot;{0}&quot; is used as an argument and thus shadows a Python builtin; consider renaming the argument</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="512"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="510"/>
         <source>unnecessary generator - rewrite as a list comprehension</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="515"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="513"/>
         <source>unnecessary generator - rewrite as a set comprehension</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="518"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="516"/>
         <source>unnecessary generator - rewrite as a dict comprehension</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="521"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="519"/>
         <source>unnecessary list comprehension - rewrite as a set comprehension</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="524"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="522"/>
         <source>unnecessary list comprehension - rewrite as a dict comprehension</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="530"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="528"/>
         <source>unnecessary list comprehension - &quot;{0}&quot; can take a generator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="770"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="768"/>
         <source>mutable default argument of type {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="555"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="553"/>
         <source>sort keys - &apos;{0}&apos; should be before &apos;{1}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="738"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="736"/>
         <source>logging statement uses &apos;%&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="744"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="742"/>
         <source>logging statement uses f-string</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="747"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="745"/>
         <source>logging statement uses &apos;warn&apos; instead of &apos;warning&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="735"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="733"/>
         <source>logging statement uses string.format()</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="741"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="739"/>
         <source>logging statement uses &apos;+&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="757"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="755"/>
         <source>gettext import with alias _ found: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="648"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="646"/>
         <source>Python does not support the unary prefix increment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="657"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="655"/>
         <source>&apos;sys.maxint&apos; is not defined in Python 3 - use &apos;sys.maxsize&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="660"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="658"/>
         <source>&apos;BaseException.message&apos; has been deprecated as of Python 2.6 and is removed in Python 3 - use &apos;str(e)&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="664"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="662"/>
         <source>assigning to &apos;os.environ&apos; does not clear the environment - use &apos;os.environ.clear()&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="688"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="686"/>
         <source>Python 3 does not include &apos;.iter*&apos; methods on dictionaries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="691"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="689"/>
         <source>Python 3 does not include &apos;.view*&apos; methods on dictionaries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="694"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="692"/>
         <source>&apos;.next()&apos; does not exist in Python 3</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="697"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="695"/>
         <source>&apos;__metaclass__&apos; does nothing on Python 3 - use &apos;class MyClass(BaseClass, metaclass=...)&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="773"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="771"/>
         <source>mutable default argument of function call &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="651"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="649"/>
         <source>using .strip() with multi-character strings is misleading</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="678"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="676"/>
         <source>using &apos;hasattr(x, &quot;__call__&quot;)&apos; to test if &apos;x&apos; is callable is unreliable</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="668"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="666"/>
         <source>loop control variable {0} not used within the loop body - start the name with an underscore</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="776"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="774"/>
         <source>None should not be added at any return if function has no return value except None</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="780"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="778"/>
         <source>an explicit value at every return should be added if function has a return value except None</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="784"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="782"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="788"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="786"/>
         <source>a value should not be assigned to a variable if it will be used as a return value only</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="654"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="652"/>
         <source>do not call assert False since python -O removes these calls</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="672"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="670"/>
         <source>unncessary f-string</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="675"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="673"/>
         <source>cannot use &apos;self.__class__&apos; as first argument of &apos;super()&apos; call</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="682"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="680"/>
         <source>do not call getattr with a constant attribute value</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="685"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="683"/>
         <source>do not call setattr with a constant attribute value</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="796"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="794"/>
         <source>commented code lines should be removed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="792"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="790"/>
         <source>prefer implied line continuation inside parentheses, brackets and braces as opposed to a backslash</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="559"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="557"/>
         <source>use of &apos;datetime.datetime()&apos; without &apos;tzinfo&apos; argument should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="563"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="561"/>
         <source>use of &apos;datetime.datetime.today()&apos; should be avoided.
 Use &apos;datetime.datetime.now(tz=)&apos; instead.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="567"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="565"/>
         <source>use of &apos;datetime.datetime.utcnow()&apos; should be avoided.
 Use &apos;datetime.datetime.now(tz=)&apos; instead.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="571"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="569"/>
         <source>use of &apos;datetime.datetime.utcfromtimestamp()&apos; should be avoided.
 Use &apos;datetime.datetime.fromtimestamp(, tz=)&apos; instead.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="575"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="573"/>
         <source>use of &apos;datetime.datetime.now()&apos; without &apos;tz&apos; argument should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="579"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="577"/>
         <source>use of &apos;datetime.datetime.fromtimestamp()&apos; without &apos;tz&apos; argument should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="583"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="581"/>
         <source>use of &apos;datetime.datetime.strptime()&apos; should be followed by &apos;.replace(tzinfo=)&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="590"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="588"/>
         <source>use of &apos;datetime.date()&apos; should be avoided.
 Use &apos;datetime.datetime(, tzinfo=).date()&apos; instead.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="594"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="592"/>
         <source>use of &apos;datetime.date.today()&apos; should be avoided.
 Use &apos;datetime.datetime.now(tz=).date()&apos; instead.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="598"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="596"/>
         <source>use of &apos;datetime.date.fromtimestamp()&apos; should be avoided.
 Use &apos;datetime.datetime.fromtimestamp(tz=).date()&apos; instead.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="608"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="606"/>
         <source>use of &apos;datetime.time()&apos; without &apos;tzinfo&apos; argument should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="587"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="585"/>
         <source>use of &apos;datetime.datetime.fromordinal()&apos; should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="602"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="600"/>
         <source>use of &apos;datetime.date.fromordinal()&apos; should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="605"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="603"/>
         <source>use of &apos;datetime.date.fromisoformat()&apos; should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="527"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="525"/>
         <source>unnecessary {0} call - rewrite as a literal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="533"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="531"/>
         <source>unnecessary {0} literal - rewrite as a {1} literal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="536"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="534"/>
         <source>unnecessary {0} passed to tuple() - rewrite as a {1} literal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="539"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="537"/>
         <source>unnecessary {0} passed to list() - rewrite as a {1} literal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="542"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="540"/>
         <source>unnecessary list call - remove the outer call to list()</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="545"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="543"/>
         <source>unnecessary list comprehension - &quot;in&quot; can take a generator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="548"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="546"/>
         <source>unnecessary {0} passed to tuple() - remove the outer call to {1}()</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="551"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="549"/>
         <source>unnecessary {0} passed to list() - remove the outer call to {1}()</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="613"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="611"/>
         <source>&apos;sys.version[:3]&apos; referenced (Python 3.10), use &apos;sys.version_info&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="616"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="614"/>
         <source>&apos;sys.version[2]&apos; referenced (Python 3.10), use &apos;sys.version_info&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="619"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="617"/>
         <source>&apos;sys.version&apos; compared to string (Python 3.10), use &apos;sys.version_info&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="623"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="621"/>
         <source>&apos;sys.version_info[0] == 3&apos; referenced (Python 4), use &apos;&gt;=&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="626"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="624"/>
         <source>&apos;six.PY3&apos; referenced (Python 4), use &apos;not six.PY2&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="629"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="627"/>
         <source>&apos;sys.version_info[1]&apos; compared to integer (Python 4), compare &apos;sys.version_info&apos; to tuple</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="633"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="631"/>
         <source>&apos;sys.version_info.minor&apos; compared to integer (Python 4), compare &apos;sys.version_info&apos; to tuple</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="637"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="635"/>
         <source>&apos;sys.version[0]&apos; referenced (Python 10), use &apos;sys.version_info&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="640"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="638"/>
         <source>&apos;sys.version&apos; compared to string (Python 10), use &apos;sys.version_info&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="644"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="642"/>
         <source>&apos;sys.version[:1]&apos; referenced (Python 10), use &apos;sys.version_info&apos;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -50249,83 +50319,93 @@
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MyMemoryEngine.py" line="72"/>
         <source>Only texts up to {0} characters are allowed.</source>
-        <translation>Só estão permitidos textos até {0} caracteres.</translation>
+        <translation type="obsolete">Só estão permitidos textos até {0} caracteres.</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MyMemoryEngine.py" line="95"/>
         <source>Invalid response received</source>
-        <translation>Recibida resposta inválida</translation>
+        <translation type="obsolete">Recibida resposta inválida</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MyMemoryEngine.py" line="72"/>
+        <source>MyMemory: Only texts up to {0} characters are allowed.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MyMemoryEngine.py" line="99"/>
+        <source>MyMemory: Invalid response received</source>
+        <translation type="unfinished"></translation>
     </message>
 </context>
 <context>
     <name>NamingStyleChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="432"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="430"/>
         <source>class names should use CapWords convention</source>
         <translation>nomes de classes devem usar a convenção de Maiúsculas</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="435"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="433"/>
         <source>function name should be lowercase</source>
         <translation>nome de função deve estar em minúsculas</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="438"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="436"/>
         <source>argument name should be lowercase</source>
         <translation>nome do argumento deve ser em minúsculas</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="441"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="439"/>
         <source>first argument of a class method should be named &apos;cls&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="444"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="442"/>
         <source>first argument of a method should be named &apos;self&apos;</source>
         <translation>primeiro argumento de um método deve chamar-se &apos;self&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="447"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="445"/>
         <source>first argument of a static method should not be named &apos;self&apos; or &apos;cls</source>
         <translation>primeiro argumento de um método estático não deve chamar-se &apos;self&apos; ou &apos;cls</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="451"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="449"/>
         <source>module names should be lowercase</source>
         <translation>nomes de módulos devem estar em minúsculas</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="454"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="452"/>
         <source>package names should be lowercase</source>
         <translation>nomes de pacotes devem ser em minúsculas</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="457"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="455"/>
         <source>constant imported as non constant</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="460"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="458"/>
         <source>lowercase imported as non lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="463"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="461"/>
         <source>camelcase imported as lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="466"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="464"/>
         <source>camelcase imported as constant</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="469"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="467"/>
         <source>variable in function should be lowercase</source>
         <translation>variável na função deve estar em minúsculas</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="472"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="470"/>
         <source>names &apos;l&apos;, &apos;O&apos; and &apos;I&apos; should be avoided</source>
         <translation>nomes &apos;I&apos;, &apos;O&apos; e &apos;l&apos; devem ser evitados</translation>
     </message>
@@ -57592,12 +57672,22 @@
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/PromtEngine.py" line="97"/>
         <source>Invalid response received</source>
-        <translation>Recibida resposta inválida</translation>
+        <translation type="obsolete">Recibida resposta inválida</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/PromtEngine.py" line="106"/>
         <source>This direction of translation is not available.</source>
-        <translation>Esta direção de tradução não está disponivel.</translation>
+        <translation type="obsolete">Esta direção de tradução não está disponivel.</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/PromtEngine.py" line="97"/>
+        <source>Promt: Invalid response received</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/PromtEngine.py" line="106"/>
+        <source>Promt: This direction of translation is not available.</source>
+        <translation type="unfinished"></translation>
     </message>
 </context>
 <context>
@@ -59817,7 +59907,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="694"/>
+        <location filename="../UI/PythonDisViewer.py" line="696"/>
         <source>Code Object &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -59827,22 +59917,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="450"/>
+        <location filename="../UI/PythonDisViewer.py" line="452"/>
         <source>No editor has been opened.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="462"/>
+        <location filename="../UI/PythonDisViewer.py" line="464"/>
         <source>The current editor does not contain any source code.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="468"/>
+        <location filename="../UI/PythonDisViewer.py" line="470"/>
         <source>The current editor does not contain Python source code.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="517"/>
+        <location filename="../UI/PythonDisViewer.py" line="519"/>
         <source>Disassembly of last traceback</source>
         <translation type="unfinished"></translation>
     </message>
@@ -59872,72 +59962,72 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="809"/>
+        <location filename="../UI/PythonDisViewer.py" line="811"/>
         <source>Name</source>
         <translation type="unfinished">Nome</translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="811"/>
-        <source>Filename</source>
-        <translation type="unfinished">Nome do Ficheiro</translation>
-    </message>
-    <message>
         <location filename="../UI/PythonDisViewer.py" line="813"/>
-        <source>First Line</source>
-        <translation type="unfinished"></translation>
+        <source>Filename</source>
+        <translation type="unfinished">Nome do Ficheiro</translation>
     </message>
     <message>
         <location filename="../UI/PythonDisViewer.py" line="815"/>
-        <source>Argument Count</source>
+        <source>First Line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/PythonDisViewer.py" line="817"/>
+        <source>Argument Count</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="819"/>
         <source>Positional-only Arguments</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="823"/>
-        <source>Number of Locals</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/PythonDisViewer.py" line="825"/>
-        <source>Stack Size</source>
+        <source>Number of Locals</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/PythonDisViewer.py" line="827"/>
+        <source>Stack Size</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="829"/>
         <source>Flags</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="830"/>
+        <location filename="../UI/PythonDisViewer.py" line="832"/>
         <source>Constants</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="833"/>
+        <location filename="../UI/PythonDisViewer.py" line="835"/>
         <source>Names</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="836"/>
+        <location filename="../UI/PythonDisViewer.py" line="838"/>
         <source>Variable Names</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="839"/>
+        <location filename="../UI/PythonDisViewer.py" line="841"/>
         <source>Free Variables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="842"/>
+        <location filename="../UI/PythonDisViewer.py" line="844"/>
         <source>Cell Variables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="820"/>
+        <location filename="../UI/PythonDisViewer.py" line="822"/>
         <source>Keyword-only Arguments</source>
         <translation type="unfinished"></translation>
     </message>
@@ -82765,3162 +82855,3162 @@
 <context>
     <name>ViewManager</name>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="635"/>
+        <location filename="../ViewManager/ViewManager.py" line="634"/>
         <source>New</source>
         <translation>Novo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="635"/>
+        <location filename="../ViewManager/ViewManager.py" line="634"/>
         <source>&amp;New</source>
         <translation>&amp;Novo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="635"/>
+        <location filename="../ViewManager/ViewManager.py" line="634"/>
         <source>Ctrl+N</source>
         <comment>File|New</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="643"/>
+        <location filename="../ViewManager/ViewManager.py" line="642"/>
         <source>Open an empty editor window</source>
         <translation>Abrir uma janela do editor vazia</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="646"/>
+        <location filename="../ViewManager/ViewManager.py" line="645"/>
         <source>&lt;b&gt;New&lt;/b&gt;&lt;p&gt;An empty editor window will be created.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Novo&lt;/b&gt;&lt;p&gt;Será criada uma janela do editor vazia.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="654"/>
+        <location filename="../ViewManager/ViewManager.py" line="653"/>
         <source>Open</source>
         <translation>Abrir</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="654"/>
+        <location filename="../ViewManager/ViewManager.py" line="653"/>
         <source>&amp;Open...</source>
         <translation>&amp;Abrir...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="654"/>
+        <location filename="../ViewManager/ViewManager.py" line="653"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="662"/>
+        <location filename="../ViewManager/ViewManager.py" line="661"/>
         <source>Open a file</source>
         <translation>Abrir um ficheiro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="664"/>
+        <location filename="../ViewManager/ViewManager.py" line="663"/>
         <source>&lt;b&gt;Open a file&lt;/b&gt;&lt;p&gt;You will be asked for the name of a file to be opened in an editor window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Abrir um ficheiro&lt;/b&gt;&lt;p&gt;Será perguntado pelo nome de um ficheiro para abrir numa janela do editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="675"/>
+        <location filename="../ViewManager/ViewManager.py" line="674"/>
         <source>Close</source>
         <translation>Fechar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="675"/>
+        <location filename="../ViewManager/ViewManager.py" line="674"/>
         <source>&amp;Close</source>
         <translation>Fe&amp;char</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="675"/>
+        <location filename="../ViewManager/ViewManager.py" line="674"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="683"/>
+        <location filename="../ViewManager/ViewManager.py" line="682"/>
         <source>Close the current window</source>
         <translation>Fechar a janela atual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="686"/>
+        <location filename="../ViewManager/ViewManager.py" line="685"/>
         <source>&lt;b&gt;Close Window&lt;/b&gt;&lt;p&gt;Close the current window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Fechar Janela&lt;/b&gt;&lt;p&gt;Fecha a janela atual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="694"/>
+        <location filename="../ViewManager/ViewManager.py" line="693"/>
         <source>Close All</source>
         <translation>Fechar Tudo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="694"/>
+        <location filename="../ViewManager/ViewManager.py" line="693"/>
         <source>Clos&amp;e All</source>
         <translation>F&amp;echar Tudo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="698"/>
+        <location filename="../ViewManager/ViewManager.py" line="697"/>
         <source>Close all editor windows</source>
         <translation>Fechar todas as janelas do editor</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="701"/>
+        <location filename="../ViewManager/ViewManager.py" line="700"/>
         <source>&lt;b&gt;Close All Windows&lt;/b&gt;&lt;p&gt;Close all editor windows.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Fechar as Janelas Todas&lt;/b&gt;&lt;p&gt;Fecha todas as janelas do editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="712"/>
         <source>Save</source>
         <translation>Gravar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="712"/>
         <source>&amp;Save</source>
         <translation>&amp;Gravar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="712"/>
         <source>Ctrl+S</source>
         <comment>File|Save</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="720"/>
+        <location filename="../ViewManager/ViewManager.py" line="719"/>
         <source>Save the current file</source>
         <translation>Gravar o ficheiro atual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="722"/>
+        <location filename="../ViewManager/ViewManager.py" line="721"/>
         <source>&lt;b&gt;Save File&lt;/b&gt;&lt;p&gt;Save the contents of current editor window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Gravar Ficheiro&lt;/b&gt;&lt;p&gt;Grava o conteúdo da janela atual do editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="729"/>
         <source>Save as</source>
         <translation>Gravar como</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="729"/>
         <source>Save &amp;as...</source>
         <translation>Gravar co&amp;mo...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="729"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="737"/>
+        <location filename="../ViewManager/ViewManager.py" line="736"/>
         <source>Save the current file to a new one</source>
         <translation>Gravar o ficheiro atual para um novo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="739"/>
+        <location filename="../ViewManager/ViewManager.py" line="738"/>
         <source>&lt;b&gt;Save File as&lt;/b&gt;&lt;p&gt;Save the contents of current editor window to a new file. The file can be entered in a file selection dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Gravar Ficheiro como&lt;/b&gt;&lt;p&gt;Gravar o conteúdo da janela do editor atual num ficheiro novo. O ficheiro pode ser introduzido com uma caixa de diálogo de seleção de ficheiros.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="764"/>
+        <location filename="../ViewManager/ViewManager.py" line="763"/>
         <source>Save all</source>
         <translation>Gravar tudo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="769"/>
+        <location filename="../ViewManager/ViewManager.py" line="768"/>
         <source>Save all files</source>
         <translation>Gravar os ficheiros todos</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="771"/>
+        <location filename="../ViewManager/ViewManager.py" line="770"/>
         <source>&lt;b&gt;Save All Files&lt;/b&gt;&lt;p&gt;Save the contents of all editor windows.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Gravar os Ficheiros Todos&lt;/b&gt;&lt;p&gt;Gravar os conteúdos de todas as janaelas do editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="781"/>
+        <location filename="../ViewManager/ViewManager.py" line="780"/>
         <source>Print</source>
         <translation>Imprimir</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="781"/>
+        <location filename="../ViewManager/ViewManager.py" line="780"/>
         <source>&amp;Print</source>
         <translation>Im&amp;primir</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="781"/>
+        <location filename="../ViewManager/ViewManager.py" line="780"/>
         <source>Ctrl+P</source>
         <comment>File|Print</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="788"/>
+        <location filename="../ViewManager/ViewManager.py" line="787"/>
         <source>Print the current file</source>
         <translation>Imprimir o ficheiro atual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="790"/>
+        <location filename="../ViewManager/ViewManager.py" line="789"/>
         <source>&lt;b&gt;Print File&lt;/b&gt;&lt;p&gt;Print the contents of current editor window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Imprimir Ficheiro&lt;/b&gt;&lt;p&gt;Imprime o conteúdo da janela do editor atual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="799"/>
+        <location filename="../ViewManager/ViewManager.py" line="798"/>
         <source>Print Preview</source>
         <translation>Antevisão da Impressão</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="804"/>
+        <location filename="../ViewManager/ViewManager.py" line="803"/>
         <source>Print preview of the current file</source>
         <translation>Antevisão da impressão do ficheiro atual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="806"/>
+        <location filename="../ViewManager/ViewManager.py" line="805"/>
         <source>&lt;b&gt;Print Preview&lt;/b&gt;&lt;p&gt;Print preview of the current editor window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Antevisão da Impressão&lt;/b&gt;&lt;p&gt;Antevisão de impressão da janela do editor atual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="816"/>
+        <location filename="../ViewManager/ViewManager.py" line="815"/>
         <source>Search File</source>
         <translation>Procurar Ficheiro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="816"/>
+        <location filename="../ViewManager/ViewManager.py" line="815"/>
         <source>Search &amp;File...</source>
         <translation>Procurar &amp;Ficheiro...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="816"/>
+        <location filename="../ViewManager/ViewManager.py" line="815"/>
         <source>Alt+Ctrl+F</source>
         <comment>File|Search File</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="822"/>
+        <location filename="../ViewManager/ViewManager.py" line="821"/>
         <source>Search for a file</source>
         <translation>Procurar um ficheiro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="824"/>
+        <location filename="../ViewManager/ViewManager.py" line="823"/>
         <source>&lt;b&gt;Search File&lt;/b&gt;&lt;p&gt;Search for a file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Procurar Ficheiro&lt;/b&gt;&lt;p&gt;Procurar um ficheiro.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="838"/>
+        <location filename="../ViewManager/ViewManager.py" line="837"/>
         <source>&amp;File</source>
         <translation>&amp;Ficheiro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="840"/>
+        <location filename="../ViewManager/ViewManager.py" line="839"/>
         <source>Open &amp;Recent Files</source>
         <translation>Abrir Ficheiros Rece&amp;ntes</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="843"/>
+        <location filename="../ViewManager/ViewManager.py" line="842"/>
         <source>Open &amp;Bookmarked Files</source>
         <translation>Abrir Ficheiros &amp;Marcados</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="891"/>
+        <location filename="../ViewManager/ViewManager.py" line="890"/>
         <source>File</source>
         <translation>Ficheiro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="914"/>
+        <location filename="../ViewManager/ViewManager.py" line="913"/>
         <source>Export as</source>
         <translation>Exportar como</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="938"/>
+        <location filename="../ViewManager/ViewManager.py" line="937"/>
         <source>Undo</source>
         <translation>Desfazer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="938"/>
+        <location filename="../ViewManager/ViewManager.py" line="937"/>
         <source>&amp;Undo</source>
         <translation>Desfa&amp;zer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="938"/>
+        <location filename="../ViewManager/ViewManager.py" line="937"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="938"/>
+        <location filename="../ViewManager/ViewManager.py" line="937"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="947"/>
+        <location filename="../ViewManager/ViewManager.py" line="946"/>
         <source>Undo the last change</source>
         <translation>Desfazer a última alteração</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="949"/>
+        <location filename="../ViewManager/ViewManager.py" line="948"/>
         <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last change done in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Desfazer&lt;/b&gt;&lt;p&gt;Desfazer a última alteração feita no editor atual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="957"/>
+        <location filename="../ViewManager/ViewManager.py" line="956"/>
         <source>Redo</source>
         <translation>Refazer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="957"/>
+        <location filename="../ViewManager/ViewManager.py" line="956"/>
         <source>&amp;Redo</source>
         <translation>&amp;Refazer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="957"/>
+        <location filename="../ViewManager/ViewManager.py" line="956"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="965"/>
+        <location filename="../ViewManager/ViewManager.py" line="964"/>
         <source>Redo the last change</source>
         <translation>Refazer a última alteração</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="967"/>
+        <location filename="../ViewManager/ViewManager.py" line="966"/>
         <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last change done in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Refazer&lt;/b&gt;&lt;p&gt;Refazer a últma alteração feita no editor atual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="984"/>
+        <location filename="../ViewManager/ViewManager.py" line="983"/>
         <source>Revert to last saved state</source>
         <translation>Voltar ao último estado gravado</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="975"/>
+        <location filename="../ViewManager/ViewManager.py" line="974"/>
         <source>Re&amp;vert to last saved state</source>
         <translation>&amp;Voltar ao último estado gravado</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="975"/>
+        <location filename="../ViewManager/ViewManager.py" line="974"/>
         <source>Ctrl+Y</source>
         <comment>Edit|Revert</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="985"/>
         <source>&lt;b&gt;Revert to last saved state&lt;/b&gt;&lt;p&gt;Undo all changes up to the last saved state of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Voltar ao último estado gravado&lt;/b&gt;&lt;p&gt;Desfazer todas as alterações feitas no editor atual depois da última vez que foi gravado.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <source>Cut</source>
         <translation>Cortar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <source>Cu&amp;t</source>
         <translation>Cor&amp;tar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1006"/>
+        <location filename="../ViewManager/ViewManager.py" line="1005"/>
         <source>Cut the selection</source>
         <translation>Cortar a seleção</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1008"/>
+        <location filename="../ViewManager/ViewManager.py" line="1007"/>
         <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected text of the current editor to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Cortar&lt;/b&gt;&lt;p&gt;Cortar a seleção do texto do editor atual para a Área de Transferência.&lt;p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1017"/>
+        <location filename="../ViewManager/ViewManager.py" line="1016"/>
         <source>Copy</source>
         <translation>Copiar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1017"/>
+        <location filename="../ViewManager/ViewManager.py" line="1016"/>
         <source>&amp;Copy</source>
         <translation>&amp;Copiar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1017"/>
+        <location filename="../ViewManager/ViewManager.py" line="1016"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1017"/>
+        <location filename="../ViewManager/ViewManager.py" line="1016"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1026"/>
+        <location filename="../ViewManager/ViewManager.py" line="1025"/>
         <source>Copy the selection</source>
         <translation>Copiar a seleção</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1028"/>
+        <location filename="../ViewManager/ViewManager.py" line="1027"/>
         <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected text of the current editor to the clipboard.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Copiar&lt;/b&gt;&lt;p&gt;Copia a seleção de texto do editor atual para a Área de Transferência.&lt;p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1037"/>
+        <location filename="../ViewManager/ViewManager.py" line="1036"/>
         <source>Paste</source>
         <translation>Colar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1037"/>
+        <location filename="../ViewManager/ViewManager.py" line="1036"/>
         <source>&amp;Paste</source>
         <translation>Co&amp;lar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1037"/>
+        <location filename="../ViewManager/ViewManager.py" line="1036"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1037"/>
+        <location filename="../ViewManager/ViewManager.py" line="1036"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1046"/>
+        <location filename="../ViewManager/ViewManager.py" line="1045"/>
         <source>Paste the last cut/copied text</source>
         <translation>Colar o último texto cortado/copiado</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1048"/>
+        <location filename="../ViewManager/ViewManager.py" line="1047"/>
         <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the last cut/copied text from the clipboard to the current editor.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Colar&lt;/b&gt;&lt;p&gt;Cola o último texto cortado/copiado da área de transferência ao editor atual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1057"/>
+        <location filename="../ViewManager/ViewManager.py" line="1056"/>
         <source>Clear</source>
         <translation>Limpar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1057"/>
+        <location filename="../ViewManager/ViewManager.py" line="1056"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1065"/>
+        <location filename="../ViewManager/ViewManager.py" line="1064"/>
         <source>Clear all text</source>
         <translation>Limpar todo o texto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1067"/>
+        <location filename="../ViewManager/ViewManager.py" line="1066"/>
         <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Delete all text of the current editor.&lt;/p&gt;</source>
         <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="../ViewManager/ViewManager.py" line="1082"/>
+        <location filename="../ViewManager/ViewManager.py" line="1081"/>
         <source>Join Lines</source>
         <translation>Juntar Linhas</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1075"/>
+        <location filename="../ViewManager/ViewManager.py" line="1074"/>
         <source>Ctrl+J</source>
         <comment>Edit|Join Lines</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1084"/>
+        <location filename="../ViewManager/ViewManager.py" line="1083"/>
         <source>&lt;b&gt;Join Lines&lt;/b&gt;&lt;p&gt;Join the current and the next lines.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1092"/>
+        <location filename="../ViewManager/ViewManager.py" line="1091"/>
         <source>Indent</source>
         <translation>Indentar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1092"/>
+        <location filename="../ViewManager/ViewManager.py" line="1091"/>
         <source>&amp;Indent</source>
         <translation>&amp;Indentar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1092"/>
+        <location filename="../ViewManager/ViewManager.py" line="1091"/>
         <source>Ctrl+I</source>
         <comment>Edit|Indent</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1100"/>
+        <location filename="../ViewManager/ViewManager.py" line="1099"/>
         <source>Indent line</source>
         <translation>Indentar linha</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1102"/>
+        <location filename="../ViewManager/ViewManager.py" line="1101"/>
         <source>&lt;b&gt;Indent&lt;/b&gt;&lt;p&gt;Indents the current line or the lines of the selection by one level.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1111"/>
+        <location filename="../ViewManager/ViewManager.py" line="1110"/>
         <source>Unindent</source>
         <translation>Tirar Indentação</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1111"/>
+        <location filename="../ViewManager/ViewManager.py" line="1110"/>
         <source>U&amp;nindent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1111"/>
+        <location filename="../ViewManager/ViewManager.py" line="1110"/>
         <source>Ctrl+Shift+I</source>
         <comment>Edit|Unindent</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1119"/>
+        <location filename="../ViewManager/ViewManager.py" line="1118"/>
         <source>Unindent line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1121"/>
+        <location filename="../ViewManager/ViewManager.py" line="1120"/>
         <source>&lt;b&gt;Unindent&lt;/b&gt;&lt;p&gt;Unindents the current line or the lines of the selection by one level.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1130"/>
+        <location filename="../ViewManager/ViewManager.py" line="1129"/>
         <source>Smart indent</source>
         <translation>Indentação Inteligente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1136"/>
+        <location filename="../ViewManager/ViewManager.py" line="1135"/>
         <source>Smart indent Line or Selection</source>
         <translation>Indentação inteligente de Linha ou Seleção</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1138"/>
+        <location filename="../ViewManager/ViewManager.py" line="1137"/>
         <source>&lt;b&gt;Smart indent&lt;/b&gt;&lt;p&gt;Indents the current line or the lines of the current selection smartly.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1147"/>
+        <location filename="../ViewManager/ViewManager.py" line="1146"/>
         <source>Comment</source>
         <translation>Comentar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1147"/>
+        <location filename="../ViewManager/ViewManager.py" line="1146"/>
         <source>C&amp;omment</source>
         <translation>C&amp;omentar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1147"/>
+        <location filename="../ViewManager/ViewManager.py" line="1146"/>
         <source>Ctrl+M</source>
         <comment>Edit|Comment</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1155"/>
+        <location filename="../ViewManager/ViewManager.py" line="1154"/>
         <source>Comment Line or Selection</source>
         <translation>Comentar Linha ou Seleção</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1157"/>
+        <location filename="../ViewManager/ViewManager.py" line="1156"/>
         <source>&lt;b&gt;Comment&lt;/b&gt;&lt;p&gt;Comments the current line or the lines of the current selection.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Comentar&lt;/b&gt;&lt;p&gt;Comenta a linha atual ou as linhas da seleção atual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1166"/>
+        <location filename="../ViewManager/ViewManager.py" line="1165"/>
         <source>Uncomment</source>
         <translation>Descomentar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1166"/>
+        <location filename="../ViewManager/ViewManager.py" line="1165"/>
         <source>Unco&amp;mment</source>
         <translation>Desco&amp;mentar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1166"/>
+        <location filename="../ViewManager/ViewManager.py" line="1165"/>
         <source>Alt+Ctrl+M</source>
         <comment>Edit|Uncomment</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1174"/>
+        <location filename="../ViewManager/ViewManager.py" line="1173"/>
         <source>Uncomment Line or Selection</source>
         <translation>Descomentar Linha ou Seleção</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1176"/>
+        <location filename="../ViewManager/ViewManager.py" line="1175"/>
         <source>&lt;b&gt;Uncomment&lt;/b&gt;&lt;p&gt;Uncomments the current line or the lines of the current selection.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1207"/>
+        <location filename="../ViewManager/ViewManager.py" line="1206"/>
         <source>Stream Comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1212"/>
+        <location filename="../ViewManager/ViewManager.py" line="1211"/>
         <source>Stream Comment Line or Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1215"/>
+        <location filename="../ViewManager/ViewManager.py" line="1214"/>
         <source>&lt;b&gt;Stream Comment&lt;/b&gt;&lt;p&gt;Stream comments the current line or the current selection.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1224"/>
+        <location filename="../ViewManager/ViewManager.py" line="1223"/>
         <source>Box Comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1229"/>
+        <location filename="../ViewManager/ViewManager.py" line="1228"/>
         <source>Box Comment Line or Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1231"/>
+        <location filename="../ViewManager/ViewManager.py" line="1230"/>
         <source>&lt;b&gt;Box Comment&lt;/b&gt;&lt;p&gt;Box comments the current line or the lines of the current selection.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1240"/>
+        <location filename="../ViewManager/ViewManager.py" line="1239"/>
         <source>Select to brace</source>
         <translation>Selecionar até parentesis</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1240"/>
+        <location filename="../ViewManager/ViewManager.py" line="1239"/>
         <source>Select to &amp;brace</source>
         <translation>Selecionar até &amp;parentesis</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1240"/>
+        <location filename="../ViewManager/ViewManager.py" line="1239"/>
         <source>Ctrl+E</source>
         <comment>Edit|Select to brace</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1247"/>
+        <location filename="../ViewManager/ViewManager.py" line="1246"/>
         <source>Select text to the matching brace</source>
         <translation>Selecionar o texto até ao parentesis par</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1249"/>
+        <location filename="../ViewManager/ViewManager.py" line="1248"/>
         <source>&lt;b&gt;Select to brace&lt;/b&gt;&lt;p&gt;Select text of the current editor to the matching brace.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Selecionar até parentesis&lt;/b&gt;&lt;p&gt;Selecionar o texto do editor atual até ao parentesis par.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1258"/>
+        <location filename="../ViewManager/ViewManager.py" line="1257"/>
         <source>Select all</source>
         <translation>Selecionar tudo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1258"/>
+        <location filename="../ViewManager/ViewManager.py" line="1257"/>
         <source>&amp;Select all</source>
         <translation>&amp;Selecionar tudo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1258"/>
+        <location filename="../ViewManager/ViewManager.py" line="1257"/>
         <source>Ctrl+A</source>
         <comment>Edit|Select all</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1266"/>
+        <location filename="../ViewManager/ViewManager.py" line="1265"/>
         <source>Select all text</source>
         <translation>Selecionar o texto todo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1268"/>
+        <location filename="../ViewManager/ViewManager.py" line="1267"/>
         <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Select all text of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1275"/>
         <source>Deselect all</source>
         <translation>Desselecionar tudo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1275"/>
         <source>&amp;Deselect all</source>
         <translation>&amp;Desselecionar tudo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1275"/>
         <source>Alt+Ctrl+A</source>
         <comment>Edit|Deselect all</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1283"/>
+        <location filename="../ViewManager/ViewManager.py" line="1282"/>
         <source>Deselect all text</source>
         <translation>Desselecionar todo o texto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1285"/>
+        <location filename="../ViewManager/ViewManager.py" line="1284"/>
         <source>&lt;b&gt;Deselect All&lt;/b&gt;&lt;p&gt;Deselect all text of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1300"/>
+        <location filename="../ViewManager/ViewManager.py" line="1299"/>
         <source>Convert Line End Characters</source>
         <translation>Convertir Caráteres de Fim de Linha</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1293"/>
+        <location filename="../ViewManager/ViewManager.py" line="1292"/>
         <source>Convert &amp;Line End Characters</source>
         <translation>Convertir Caráteres de Fim de &amp;Linha</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1302"/>
+        <location filename="../ViewManager/ViewManager.py" line="1301"/>
         <source>&lt;b&gt;Convert Line End Characters&lt;/b&gt;&lt;p&gt;Convert the line end characters to the currently set type.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1316"/>
+        <location filename="../ViewManager/ViewManager.py" line="1315"/>
         <source>Shorten empty lines</source>
         <translation>Mostrar linhas vazias</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1318"/>
+        <location filename="../ViewManager/ViewManager.py" line="1317"/>
         <source>&lt;b&gt;Shorten empty lines&lt;/b&gt;&lt;p&gt;Shorten lines consisting solely of whitespace characters.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Encolher linhas vazias&lt;/b&gt;&lt;p&gt;Encolhe as linhas que apenas contêm caráters em branco.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1327"/>
+        <location filename="../ViewManager/ViewManager.py" line="1326"/>
         <source>&amp;Complete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2778"/>
+        <location filename="../ViewManager/ViewManager.py" line="2776"/>
         <source>Complete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1334"/>
+        <location filename="../ViewManager/ViewManager.py" line="1333"/>
         <source>Complete current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1336"/>
+        <location filename="../ViewManager/ViewManager.py" line="1335"/>
         <source>&lt;b&gt;Complete&lt;/b&gt;&lt;p&gt;Performs a completion of the word containing the cursor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1345"/>
+        <location filename="../ViewManager/ViewManager.py" line="1344"/>
         <source>Complete from Document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1355"/>
+        <location filename="../ViewManager/ViewManager.py" line="1354"/>
         <source>Complete current word from Document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1358"/>
+        <location filename="../ViewManager/ViewManager.py" line="1357"/>
         <source>&lt;b&gt;Complete from Document&lt;/b&gt;&lt;p&gt;Performs a completion from document of the word containing the cursor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1368"/>
+        <location filename="../ViewManager/ViewManager.py" line="1367"/>
         <source>Complete from APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1378"/>
+        <location filename="../ViewManager/ViewManager.py" line="1377"/>
         <source>Complete current word from APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1381"/>
+        <location filename="../ViewManager/ViewManager.py" line="1380"/>
         <source>&lt;b&gt;Complete from APIs&lt;/b&gt;&lt;p&gt;Performs a completion from APIs of the word containing the cursor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1391"/>
+        <location filename="../ViewManager/ViewManager.py" line="1390"/>
         <source>Complete from Document and APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1401"/>
+        <location filename="../ViewManager/ViewManager.py" line="1400"/>
         <source>Complete current word from Document and APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1404"/>
+        <location filename="../ViewManager/ViewManager.py" line="1403"/>
         <source>&lt;b&gt;Complete from Document and APIs&lt;/b&gt;&lt;p&gt;Performs a completion from document and APIs of the word containing the cursor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1414"/>
+        <location filename="../ViewManager/ViewManager.py" line="1413"/>
         <source>Calltip</source>
         <translation type="unfinished">Dica</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1414"/>
+        <location filename="../ViewManager/ViewManager.py" line="1413"/>
         <source>&amp;Calltip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1421"/>
+        <location filename="../ViewManager/ViewManager.py" line="1420"/>
         <source>Show Calltips</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1423"/>
+        <location filename="../ViewManager/ViewManager.py" line="1422"/>
         <source>&lt;b&gt;Calltip&lt;/b&gt;&lt;p&gt;Show calltips based on the characters immediately to the left of the cursor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1481"/>
+        <location filename="../ViewManager/ViewManager.py" line="1480"/>
         <source>Move left one character</source>
         <translation>Mover um caráter à esquerda</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1481"/>
+        <location filename="../ViewManager/ViewManager.py" line="1480"/>
         <source>Left</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1495"/>
+        <location filename="../ViewManager/ViewManager.py" line="1494"/>
         <source>Move right one character</source>
         <translation>Mover um caráter à direita</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1495"/>
+        <location filename="../ViewManager/ViewManager.py" line="1494"/>
         <source>Right</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1509"/>
+        <location filename="../ViewManager/ViewManager.py" line="1508"/>
         <source>Move up one line</source>
         <translation>Mover uma linha acima</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1509"/>
+        <location filename="../ViewManager/ViewManager.py" line="1508"/>
         <source>Up</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1521"/>
+        <location filename="../ViewManager/ViewManager.py" line="1520"/>
         <source>Move down one line</source>
         <translation>Mover uma linha abaixo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1521"/>
+        <location filename="../ViewManager/ViewManager.py" line="1520"/>
         <source>Down</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1533"/>
+        <location filename="../ViewManager/ViewManager.py" line="1532"/>
         <source>Move left one word part</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1567"/>
+        <location filename="../ViewManager/ViewManager.py" line="1566"/>
         <source>Alt+Left</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1547"/>
+        <location filename="../ViewManager/ViewManager.py" line="1546"/>
         <source>Move right one word part</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2448"/>
+        <location filename="../ViewManager/ViewManager.py" line="2446"/>
         <source>Alt+Right</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1561"/>
+        <location filename="../ViewManager/ViewManager.py" line="1560"/>
         <source>Move left one word</source>
         <translation>Mover uma palavra à esquerda</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1612"/>
+        <location filename="../ViewManager/ViewManager.py" line="1611"/>
         <source>Ctrl+Left</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1576"/>
+        <location filename="../ViewManager/ViewManager.py" line="1575"/>
         <source>Move right one word</source>
         <translation>Mover uma palavra à direita</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2202"/>
+        <location filename="../ViewManager/ViewManager.py" line="2200"/>
         <source>Ctrl+Right</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2403"/>
+        <location filename="../ViewManager/ViewManager.py" line="2401"/>
         <source>Home</source>
         <translation type="unfinished">Página Inicial</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1615"/>
+        <location filename="../ViewManager/ViewManager.py" line="1614"/>
         <source>Alt+Home</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2418"/>
+        <location filename="../ViewManager/ViewManager.py" line="2416"/>
         <source>End</source>
         <translation type="unfinished">Fim</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1638"/>
+        <location filename="../ViewManager/ViewManager.py" line="1637"/>
         <source>Scroll view down one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1728"/>
+        <location filename="../ViewManager/ViewManager.py" line="1727"/>
         <source>Ctrl+Down</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1650"/>
+        <location filename="../ViewManager/ViewManager.py" line="1649"/>
         <source>Scroll view up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1711"/>
+        <location filename="../ViewManager/ViewManager.py" line="1710"/>
         <source>Ctrl+Up</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1661"/>
+        <location filename="../ViewManager/ViewManager.py" line="1660"/>
         <source>Move up one paragraph</source>
         <translation>Mover um parágrafo acima</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1661"/>
+        <location filename="../ViewManager/ViewManager.py" line="1660"/>
         <source>Alt+Up</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1670"/>
+        <location filename="../ViewManager/ViewManager.py" line="1669"/>
         <source>Move down one paragraph</source>
         <translation>Mover um parágrafo abaixo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1670"/>
+        <location filename="../ViewManager/ViewManager.py" line="1669"/>
         <source>Alt+Down</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1682"/>
+        <location filename="../ViewManager/ViewManager.py" line="1681"/>
         <source>Move up one page</source>
         <translation>Mover uma página acima</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1682"/>
+        <location filename="../ViewManager/ViewManager.py" line="1681"/>
         <source>PgUp</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1691"/>
+        <location filename="../ViewManager/ViewManager.py" line="1690"/>
         <source>Move down one page</source>
         <translation>Mover uma pagina abaixo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1691"/>
+        <location filename="../ViewManager/ViewManager.py" line="1690"/>
         <source>PgDown</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1714"/>
+        <location filename="../ViewManager/ViewManager.py" line="1713"/>
         <source>Ctrl+Home</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1731"/>
+        <location filename="../ViewManager/ViewManager.py" line="1730"/>
         <source>Ctrl+End</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1737"/>
+        <location filename="../ViewManager/ViewManager.py" line="1736"/>
         <source>Indent one level</source>
         <translation>Indentar um nivel</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1737"/>
+        <location filename="../ViewManager/ViewManager.py" line="1736"/>
         <source>Tab</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1746"/>
+        <location filename="../ViewManager/ViewManager.py" line="1745"/>
         <source>Unindent one level</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1746"/>
+        <location filename="../ViewManager/ViewManager.py" line="1745"/>
         <source>Shift+Tab</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1756"/>
+        <location filename="../ViewManager/ViewManager.py" line="1755"/>
         <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="1756"/>
+        <location filename="../ViewManager/ViewManager.py" line="1755"/>
         <source>Shift+Left</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1771"/>
+        <location filename="../ViewManager/ViewManager.py" line="1770"/>
         <source>Extend selection right one character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1771"/>
+        <location filename="../ViewManager/ViewManager.py" line="1770"/>
         <source>Shift+Right</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1786"/>
+        <location filename="../ViewManager/ViewManager.py" line="1785"/>
         <source>Extend selection up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1786"/>
+        <location filename="../ViewManager/ViewManager.py" line="1785"/>
         <source>Shift+Up</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1801"/>
+        <location filename="../ViewManager/ViewManager.py" line="1800"/>
         <source>Extend selection down one line</source>
         <translation>Estende a seleção abaixo uma linha</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1801"/>
+        <location filename="../ViewManager/ViewManager.py" line="1800"/>
         <source>Shift+Down</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1816"/>
+        <location filename="../ViewManager/ViewManager.py" line="1815"/>
         <source>Extend selection left one word part</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1852"/>
+        <location filename="../ViewManager/ViewManager.py" line="1851"/>
         <source>Alt+Shift+Left</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1830"/>
+        <location filename="../ViewManager/ViewManager.py" line="1829"/>
         <source>Extend selection right one word part</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2463"/>
+        <location filename="../ViewManager/ViewManager.py" line="2461"/>
         <source>Alt+Shift+Right</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1844"/>
+        <location filename="../ViewManager/ViewManager.py" line="1843"/>
         <source>Extend selection left one word</source>
         <translation>Estende a seleção uma palavra à esquerda</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2557"/>
+        <location filename="../ViewManager/ViewManager.py" line="2555"/>
         <source>Ctrl+Shift+Left</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1861"/>
+        <location filename="../ViewManager/ViewManager.py" line="1860"/>
         <source>Extend selection right one word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2219"/>
+        <location filename="../ViewManager/ViewManager.py" line="2217"/>
         <source>Ctrl+Shift+Right</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1890"/>
+        <location filename="../ViewManager/ViewManager.py" line="1889"/>
         <source>Shift+Home</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2323"/>
+        <location filename="../ViewManager/ViewManager.py" line="2321"/>
         <source>Alt+Shift+Home</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1907"/>
+        <location filename="../ViewManager/ViewManager.py" line="1906"/>
         <source>Shift+End</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1913"/>
+        <location filename="../ViewManager/ViewManager.py" line="1912"/>
         <source>Extend selection up one paragraph</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1913"/>
+        <location filename="../ViewManager/ViewManager.py" line="1912"/>
         <source>Alt+Shift+Up</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1926"/>
+        <location filename="../ViewManager/ViewManager.py" line="1925"/>
         <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="1926"/>
+        <location filename="../ViewManager/ViewManager.py" line="1925"/>
         <source>Alt+Shift+Down</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1939"/>
+        <location filename="../ViewManager/ViewManager.py" line="1938"/>
         <source>Extend selection up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1939"/>
+        <location filename="../ViewManager/ViewManager.py" line="1938"/>
         <source>Shift+PgUp</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1951"/>
+        <location filename="../ViewManager/ViewManager.py" line="1950"/>
         <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="1951"/>
+        <location filename="../ViewManager/ViewManager.py" line="1950"/>
         <source>Shift+PgDown</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1978"/>
+        <location filename="../ViewManager/ViewManager.py" line="1977"/>
         <source>Ctrl+Shift+Home</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1995"/>
+        <location filename="../ViewManager/ViewManager.py" line="1994"/>
         <source>Ctrl+Shift+End</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2001"/>
+        <location filename="../ViewManager/ViewManager.py" line="2000"/>
         <source>Delete previous character</source>
         <translation>Apagar o caratér anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2001"/>
+        <location filename="../ViewManager/ViewManager.py" line="2000"/>
         <source>Backspace</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2013"/>
+        <location filename="../ViewManager/ViewManager.py" line="2012"/>
         <source>Shift+Backspace</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2032"/>
+        <location filename="../ViewManager/ViewManager.py" line="2031"/>
         <source>Delete current character</source>
         <translation>Apagar o caratér atual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2032"/>
+        <location filename="../ViewManager/ViewManager.py" line="2031"/>
         <source>Del</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2046"/>
+        <location filename="../ViewManager/ViewManager.py" line="2045"/>
         <source>Delete word to left</source>
         <translation>Apagar palavra à esquerda</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2046"/>
+        <location filename="../ViewManager/ViewManager.py" line="2045"/>
         <source>Ctrl+Backspace</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2057"/>
+        <location filename="../ViewManager/ViewManager.py" line="2056"/>
         <source>Delete word to right</source>
         <translation>Apagar palavra à direita</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2057"/>
+        <location filename="../ViewManager/ViewManager.py" line="2056"/>
         <source>Ctrl+Del</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2067"/>
+        <location filename="../ViewManager/ViewManager.py" line="2066"/>
         <source>Delete line to left</source>
         <translation>Apagar a linha à esquerda</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2067"/>
+        <location filename="../ViewManager/ViewManager.py" line="2066"/>
         <source>Ctrl+Shift+Backspace</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2078"/>
+        <location filename="../ViewManager/ViewManager.py" line="2077"/>
         <source>Delete line to right</source>
         <translation>Apagar a linha à direita</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2087"/>
+        <location filename="../ViewManager/ViewManager.py" line="2086"/>
         <source>Ctrl+Shift+Del</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2093"/>
+        <location filename="../ViewManager/ViewManager.py" line="2092"/>
         <source>Insert new line</source>
         <translation>Inserir linha nova</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2093"/>
+        <location filename="../ViewManager/ViewManager.py" line="2092"/>
         <source>Return</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2093"/>
+        <location filename="../ViewManager/ViewManager.py" line="2092"/>
         <source>Enter</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2103"/>
+        <location filename="../ViewManager/ViewManager.py" line="2102"/>
         <source>Insert new line below current line</source>
         <translation>Inserir linha nova abaixo da atual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2103"/>
+        <location filename="../ViewManager/ViewManager.py" line="2102"/>
         <source>Shift+Return</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2103"/>
+        <location filename="../ViewManager/ViewManager.py" line="2102"/>
         <source>Shift+Enter</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2116"/>
+        <location filename="../ViewManager/ViewManager.py" line="2115"/>
         <source>Delete current line</source>
         <translation>Apagar a linha atual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2116"/>
+        <location filename="../ViewManager/ViewManager.py" line="2115"/>
         <source>Ctrl+Shift+L</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2127"/>
+        <location filename="../ViewManager/ViewManager.py" line="2126"/>
         <source>Duplicate current line</source>
         <translation>Duplicar a linha atual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2127"/>
+        <location filename="../ViewManager/ViewManager.py" line="2126"/>
         <source>Ctrl+D</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2138"/>
+        <location filename="../ViewManager/ViewManager.py" line="2137"/>
         <source>Swap current and previous lines</source>
         <translation>Trocar a linha atual pela anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2138"/>
+        <location filename="../ViewManager/ViewManager.py" line="2137"/>
         <source>Ctrl+T</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2162"/>
+        <location filename="../ViewManager/ViewManager.py" line="2160"/>
         <source>Cut current line</source>
         <translation>Cortar a linha atual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2162"/>
+        <location filename="../ViewManager/ViewManager.py" line="2160"/>
         <source>Alt+Shift+L</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2172"/>
+        <location filename="../ViewManager/ViewManager.py" line="2170"/>
         <source>Copy current line</source>
         <translation>Copiar a linha atual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2172"/>
+        <location filename="../ViewManager/ViewManager.py" line="2170"/>
         <source>Ctrl+Shift+T</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2183"/>
+        <location filename="../ViewManager/ViewManager.py" line="2181"/>
         <source>Toggle insert/overtype</source>
         <translation>Alternar inserir/sobreescrever</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2183"/>
+        <location filename="../ViewManager/ViewManager.py" line="2181"/>
         <source>Ins</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2747"/>
+        <location filename="../ViewManager/ViewManager.py" line="2745"/>
         <source>Convert selection to lower case</source>
         <translation>Convertir a seleção para minúsculas</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2747"/>
+        <location filename="../ViewManager/ViewManager.py" line="2745"/>
         <source>Alt+Shift+U</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2759"/>
+        <location filename="../ViewManager/ViewManager.py" line="2757"/>
         <source>Convert selection to upper case</source>
         <translation>Convertir a seleção para maiúsculas</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2759"/>
+        <location filename="../ViewManager/ViewManager.py" line="2757"/>
         <source>Ctrl+Shift+U</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2205"/>
+        <location filename="../ViewManager/ViewManager.py" line="2203"/>
         <source>Alt+End</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2225"/>
+        <location filename="../ViewManager/ViewManager.py" line="2223"/>
         <source>Formfeed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2234"/>
+        <location filename="../ViewManager/ViewManager.py" line="2232"/>
         <source>Escape</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2234"/>
+        <location filename="../ViewManager/ViewManager.py" line="2232"/>
         <source>Esc</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2243"/>
+        <location filename="../ViewManager/ViewManager.py" line="2241"/>
         <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="2243"/>
+        <location filename="../ViewManager/ViewManager.py" line="2241"/>
         <source>Alt+Ctrl+Down</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2259"/>
+        <location filename="../ViewManager/ViewManager.py" line="2257"/>
         <source>Extend rectangular selection up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2259"/>
+        <location filename="../ViewManager/ViewManager.py" line="2257"/>
         <source>Alt+Ctrl+Up</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2274"/>
+        <location filename="../ViewManager/ViewManager.py" line="2272"/>
         <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="2274"/>
+        <location filename="../ViewManager/ViewManager.py" line="2272"/>
         <source>Alt+Ctrl+Left</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2292"/>
+        <location filename="../ViewManager/ViewManager.py" line="2290"/>
         <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="2292"/>
+        <location filename="../ViewManager/ViewManager.py" line="2290"/>
         <source>Alt+Ctrl+Right</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2348"/>
+        <location filename="../ViewManager/ViewManager.py" line="2346"/>
         <source>Extend rectangular selection up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2363"/>
+        <location filename="../ViewManager/ViewManager.py" line="2361"/>
         <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="2381"/>
+        <location filename="../ViewManager/ViewManager.py" line="2379"/>
         <source>Duplicate current selection</source>
         <translation>Duplicar a seleção atual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2381"/>
+        <location filename="../ViewManager/ViewManager.py" line="2379"/>
         <source>Ctrl+Shift+D</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3354"/>
+        <location filename="../ViewManager/ViewManager.py" line="3352"/>
         <source>&amp;Search</source>
         <translation>&amp;Procurar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2788"/>
+        <location filename="../ViewManager/ViewManager.py" line="2786"/>
         <source>&amp;Edit</source>
         <translation>&amp;Editar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2845"/>
+        <location filename="../ViewManager/ViewManager.py" line="2843"/>
         <source>Edit</source>
         <translation>Editar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3449"/>
+        <location filename="../ViewManager/ViewManager.py" line="3447"/>
         <source>Search</source>
         <translation>Procurar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2877"/>
+        <location filename="../ViewManager/ViewManager.py" line="2875"/>
         <source>&amp;Search...</source>
         <translation>&amp;Procurar...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2877"/>
+        <location filename="../ViewManager/ViewManager.py" line="2875"/>
         <source>Ctrl+F</source>
         <comment>Search|Search</comment>
         <translation></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="2883"/>
+        <source>Search for a text</source>
+        <translation>Procurar um texto</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="2885"/>
-        <source>Search for a text</source>
-        <translation>Procurar um texto</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2887"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2897"/>
+        <location filename="../ViewManager/ViewManager.py" line="2895"/>
         <source>Search next</source>
         <translation>Procurar próximo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2897"/>
+        <location filename="../ViewManager/ViewManager.py" line="2895"/>
         <source>Search &amp;next</source>
         <translation>Procurar &amp;próximo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2897"/>
+        <location filename="../ViewManager/ViewManager.py" line="2895"/>
         <source>F3</source>
         <comment>Search|Search next</comment>
         <translation></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="2904"/>
+        <source>Search next occurrence of text</source>
+        <translation>Procurar a próxima ocurrência do texto</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="2906"/>
-        <source>Search next occurrence of text</source>
-        <translation>Procurar a próxima ocurrência do texto</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2908"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2918"/>
+        <location filename="../ViewManager/ViewManager.py" line="2916"/>
         <source>Search previous</source>
         <translation>Procurar anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2918"/>
+        <location filename="../ViewManager/ViewManager.py" line="2916"/>
         <source>Search &amp;previous</source>
         <translation>Procurar &amp;anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2918"/>
+        <location filename="../ViewManager/ViewManager.py" line="2916"/>
         <source>Shift+F3</source>
         <comment>Search|Search previous</comment>
         <translation></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="2924"/>
+        <source>Search previous occurrence of text</source>
+        <translation>Procurar ocurrência anterior do texto</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="2926"/>
-        <source>Search previous occurrence of text</source>
-        <translation>Procurar ocurrência anterior do texto</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2928"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2938"/>
+        <location filename="../ViewManager/ViewManager.py" line="2936"/>
         <source>Clear search markers</source>
         <translation>Limpar marcadores de pesquisa</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2938"/>
+        <location filename="../ViewManager/ViewManager.py" line="2936"/>
         <source>Ctrl+3</source>
         <comment>Search|Clear search markers</comment>
         <translation></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="2944"/>
+        <source>Clear all displayed search markers</source>
+        <translation>Limpar todos os marcadores de pesquisa mostrados</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="2946"/>
-        <source>Clear all displayed search markers</source>
-        <translation>Limpar todos os marcadores de pesquisa mostrados</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2948"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3003"/>
+        <location filename="../ViewManager/ViewManager.py" line="3001"/>
         <source>Replace</source>
         <translation>Substituir</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3003"/>
+        <location filename="../ViewManager/ViewManager.py" line="3001"/>
         <source>&amp;Replace...</source>
         <translation>&amp;Substituir...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3003"/>
+        <location filename="../ViewManager/ViewManager.py" line="3001"/>
         <source>Ctrl+R</source>
         <comment>Search|Replace</comment>
         <translation></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3008"/>
+        <source>Replace some text</source>
+        <translation>Substituir algum texto</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3010"/>
-        <source>Replace some text</source>
-        <translation>Substituir algum texto</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3012"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3389"/>
+        <location filename="../ViewManager/ViewManager.py" line="3387"/>
         <source>Quicksearch</source>
         <translation>Pesquisa Rápida</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3090"/>
+        <location filename="../ViewManager/ViewManager.py" line="3088"/>
         <source>&amp;Quicksearch</source>
         <translation>&amp;Pesquisa Rápida</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3090"/>
+        <location filename="../ViewManager/ViewManager.py" line="3088"/>
         <source>Ctrl+Shift+K</source>
         <comment>Search|Quicksearch</comment>
         <translation></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3096"/>
+        <source>Perform a quicksearch</source>
+        <translation>Executar uma pesquisa rápida</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3098"/>
-        <source>Perform a quicksearch</source>
-        <translation>Executar uma pesquisa rápida</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3100"/>
         <source>&lt;b&gt;Quicksearch&lt;/b&gt;&lt;p&gt;This activates the quicksearch function of the IDE by giving focus to the quicksearch entry field. If this field is already active and contains text, it searches for the next occurrence of this text.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3111"/>
+        <location filename="../ViewManager/ViewManager.py" line="3109"/>
         <source>Quicksearch backwards</source>
         <translation>Pesquisa Rápida para trás</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3111"/>
+        <location filename="../ViewManager/ViewManager.py" line="3109"/>
         <source>Quicksearch &amp;backwards</source>
         <translation>Pesquisa Rápida para &amp;trás</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3111"/>
+        <location filename="../ViewManager/ViewManager.py" line="3109"/>
         <source>Ctrl+Shift+J</source>
         <comment>Search|Quicksearch backwards</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3121"/>
+        <location filename="../ViewManager/ViewManager.py" line="3119"/>
         <source>Perform a quicksearch backwards</source>
         <translation>Executar uma pesquisa rápida para trás</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3124"/>
+        <location filename="../ViewManager/ViewManager.py" line="3122"/>
         <source>&lt;b&gt;Quicksearch backwards&lt;/b&gt;&lt;p&gt;This searches the previous occurrence of the quicksearch text.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3133"/>
+        <location filename="../ViewManager/ViewManager.py" line="3131"/>
         <source>Quicksearch extend</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3133"/>
+        <location filename="../ViewManager/ViewManager.py" line="3131"/>
         <source>Quicksearch e&amp;xtend</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3133"/>
+        <location filename="../ViewManager/ViewManager.py" line="3131"/>
         <source>Ctrl+Shift+H</source>
         <comment>Search|Quicksearch extend</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3141"/>
+        <location filename="../ViewManager/ViewManager.py" line="3139"/>
         <source>Extend the quicksearch to the end of the current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3144"/>
+        <location filename="../ViewManager/ViewManager.py" line="3142"/>
         <source>&lt;b&gt;Quicksearch extend&lt;/b&gt;&lt;p&gt;This extends the quicksearch text to the end of the word currently found.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3160"/>
+        <source>Goto Line</source>
+        <translation>Ir à linha</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3152"/>
+        <source>&amp;Goto Line...</source>
+        <translation>Ir à &amp;Linha...</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3152"/>
+        <source>Ctrl+G</source>
+        <comment>Search|Goto Line</comment>
+        <translation></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3162"/>
-        <source>Goto Line</source>
-        <translation>Ir à linha</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3154"/>
-        <source>&amp;Goto Line...</source>
-        <translation>Ir à &amp;Linha...</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3154"/>
-        <source>Ctrl+G</source>
-        <comment>Search|Goto Line</comment>
-        <translation></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3164"/>
         <source>&lt;b&gt;Goto Line&lt;/b&gt;&lt;p&gt;Go to a specific line of text in the current editor. A dialog is shown to enter the linenumber.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3179"/>
+        <source>Goto Brace</source>
+        <translation>Ir ao Parentesis</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3171"/>
+        <source>Goto &amp;Brace</source>
+        <translation>Ir ao &amp;Parentesis</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3171"/>
+        <source>Ctrl+L</source>
+        <comment>Search|Goto Brace</comment>
+        <translation></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3181"/>
-        <source>Goto Brace</source>
-        <translation>Ir ao Parentesis</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3173"/>
-        <source>Goto &amp;Brace</source>
-        <translation>Ir ao &amp;Parentesis</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3173"/>
-        <source>Ctrl+L</source>
-        <comment>Search|Goto Brace</comment>
-        <translation></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3183"/>
         <source>&lt;b&gt;Goto Brace&lt;/b&gt;&lt;p&gt;Go to the matching brace in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ir ao Parentesis&lt;/b&gt;&lt;p&gt;Ir ao parentesis par correspondente no editor atual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3261"/>
+        <location filename="../ViewManager/ViewManager.py" line="3259"/>
         <source>Search in Files</source>
         <translation>Procurar em Ficheiros</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3261"/>
+        <location filename="../ViewManager/ViewManager.py" line="3259"/>
         <source>Search in &amp;Files...</source>
         <translation>Procurar em &amp;Ficheiros...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3261"/>
+        <location filename="../ViewManager/ViewManager.py" line="3259"/>
         <source>Shift+Ctrl+F</source>
         <comment>Search|Search Files</comment>
         <translation></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3267"/>
+        <source>Search for a text in files</source>
+        <translation>Procurar um texto em ficheiros</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3269"/>
-        <source>Search for a text in files</source>
-        <translation>Procurar um texto em ficheiros</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3271"/>
         <source>&lt;b&gt;Search in Files&lt;/b&gt;&lt;p&gt;Search for some text in the files of a directory tree or the project. A dialog is shown to enter the searchtext and options for the search and to display the result.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3281"/>
+        <location filename="../ViewManager/ViewManager.py" line="3279"/>
         <source>Replace in Files</source>
         <translation>Substituir em Ficheiros</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3281"/>
+        <location filename="../ViewManager/ViewManager.py" line="3279"/>
         <source>Replace in F&amp;iles...</source>
         <translation>Substituir em F&amp;icheiros...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3281"/>
+        <location filename="../ViewManager/ViewManager.py" line="3279"/>
         <source>Shift+Ctrl+R</source>
         <comment>Search|Replace in Files</comment>
         <translation></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3286"/>
+        <source>Search for a text in files and replace it</source>
+        <translation>Procurar e substituir um texto em ficheiros</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3288"/>
-        <source>Search for a text in files and replace it</source>
-        <translation>Procurar e substituir um texto em ficheiros</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3290"/>
         <source>&lt;b&gt;Replace in Files&lt;/b&gt;&lt;p&gt;Search for some text in the files of a directory tree or the project and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and to display the result.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3408"/>
+        <location filename="../ViewManager/ViewManager.py" line="3406"/>
         <source>&lt;p&gt;Enter the searchtext directly into this field. The search will be performed case insensitive. The quicksearch function is activated upon activation of the quicksearch next action (default key Ctrl+Shift+K), if this entry field does not have the input focus. Otherwise it searches for the next occurrence of the text entered. The quicksearch backwards action (default key Ctrl+Shift+J) searches backward. Activating the &apos;quicksearch extend&apos; action (default key Ctrl+Shift+H) extends the current searchtext to the end of the currently found word. The quicksearch can be ended by pressing the Return key while the quicksearch entry has the the input focus.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3435"/>
+        <location filename="../ViewManager/ViewManager.py" line="3433"/>
         <source>Quicksearch Textedit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3487"/>
         <source>Zoom in</source>
         <translation>Aproximar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3487"/>
         <source>Zoom &amp;in</source>
         <translation>Apro&amp;ximar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3487"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3496"/>
+        <source>Zoom in on the text</source>
+        <translation>Aproximar no texto</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3498"/>
-        <source>Zoom in on the text</source>
-        <translation>Aproximar no texto</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3500"/>
         <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="3508"/>
+        <location filename="../ViewManager/ViewManager.py" line="3506"/>
         <source>Zoom out</source>
         <translation>Afastar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3508"/>
+        <location filename="../ViewManager/ViewManager.py" line="3506"/>
         <source>Zoom &amp;out</source>
         <translation>A&amp;fastar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3508"/>
+        <location filename="../ViewManager/ViewManager.py" line="3506"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3515"/>
+        <source>Zoom out on the text</source>
+        <translation>Afastar no texto</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3517"/>
-        <source>Zoom out on the text</source>
-        <translation>Afastar no texto</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3519"/>
         <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="3546"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>Zoom</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3546"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>&amp;Zoom</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3546"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>Ctrl+#</source>
         <comment>View|Zoom</comment>
         <translation></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3552"/>
+        <source>Zoom the text</source>
+        <translation>Zoom no texto</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3554"/>
-        <source>Zoom the text</source>
-        <translation>Zoom no texto</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3556"/>
         <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"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3567"/>
+        <source>Toggle all folds</source>
+        <translation>Alternar as dobras todas</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3563"/>
+        <source>&amp;Toggle all folds</source>
+        <translation type="unfinished">Alternar dobras &amp;todas</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3569"/>
-        <source>Toggle all folds</source>
-        <translation>Alternar as dobras todas</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3565"/>
-        <source>&amp;Toggle all folds</source>
-        <translation type="unfinished">Alternar dobras &amp;todas</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3571"/>
         <source>&lt;b&gt;Toggle all folds&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3583"/>
+        <source>Toggle all folds (including children)</source>
+        <translation>Alternar as dobras todas (incluindo filhos)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3577"/>
+        <source>Toggle all &amp;folds (including children)</source>
+        <translation>Alternar &amp;dobras todas (incluindo filhos)</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3585"/>
-        <source>Toggle all folds (including children)</source>
-        <translation>Alternar as dobras todas (incluindo filhos)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3579"/>
-        <source>Toggle all &amp;folds (including children)</source>
-        <translation>Alternar &amp;dobras todas (incluindo filhos)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3587"/>
         <source>&lt;b&gt;Toggle all folds (including children)&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor including all children.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3599"/>
+        <source>Toggle current fold</source>
+        <translation>Alternar a dobra atual</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3595"/>
+        <source>Toggle &amp;current fold</source>
+        <translation>Alternar dobra &amp;atual</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3601"/>
-        <source>Toggle current fold</source>
-        <translation>Alternar a dobra atual</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3597"/>
-        <source>Toggle &amp;current fold</source>
-        <translation>Alternar dobra &amp;atual</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3603"/>
         <source>&lt;b&gt;Toggle current fold&lt;/b&gt;&lt;p&gt;Toggle the folds of the current line of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3631"/>
+        <source>Remove all highlights</source>
+        <translation>Retirar todo o ressaltado</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3633"/>
-        <source>Remove all highlights</source>
-        <translation>Retirar todo o ressaltado</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3635"/>
         <source>&lt;b&gt;Remove all highlights&lt;/b&gt;&lt;p&gt;Remove the highlights of all editors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3681"/>
+        <location filename="../ViewManager/ViewManager.py" line="3679"/>
         <source>Split view</source>
         <translation>Vista dividida</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3681"/>
+        <location filename="../ViewManager/ViewManager.py" line="3679"/>
         <source>&amp;Split view</source>
         <translation>Vista &amp;dividida</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3684"/>
+        <source>Add a split to the view</source>
+        <translation>Adicionar uma divisão à vista</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3686"/>
-        <source>Add a split to the view</source>
-        <translation>Adicionar uma divisão à vista</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3688"/>
         <source>&lt;b&gt;Split view&lt;/b&gt;&lt;p&gt;Add a split to the view.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vista dividida&lt;/b&gt;&lt;p&gt;Adiciona uma divisão ao visor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3696"/>
+        <location filename="../ViewManager/ViewManager.py" line="3694"/>
         <source>Arrange horizontally</source>
         <translation>Organizar horizontalmente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3696"/>
+        <location filename="../ViewManager/ViewManager.py" line="3694"/>
         <source>Arrange &amp;horizontally</source>
         <translation>Organizar &amp;horizontalmente</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3698"/>
+        <source>Arrange the splitted views horizontally</source>
+        <translation>Organizar horizontalmente os visores divididos</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3700"/>
-        <source>Arrange the splitted views horizontally</source>
-        <translation>Organizar horizontalmente os visores divididos</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3702"/>
         <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ordenar horizontalmente&lt;/b&gt;&lt;p&gt;Ordena horizontalmente os visores divididos.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3711"/>
+        <location filename="../ViewManager/ViewManager.py" line="3709"/>
         <source>Remove split</source>
         <translation>Retirar divisão</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3711"/>
+        <location filename="../ViewManager/ViewManager.py" line="3709"/>
         <source>&amp;Remove split</source>
         <translation>&amp;Retirar divisão</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3714"/>
+        <source>Remove the current split</source>
+        <translation>Retira a divisão atual</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3716"/>
-        <source>Remove the current split</source>
-        <translation>Retira a divisão atual</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3718"/>
         <source>&lt;b&gt;Remove split&lt;/b&gt;&lt;p&gt;Remove the current split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Retirar divisão&lt;/b&gt;&lt;p&gt;Retira a divisão atual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3726"/>
+        <location filename="../ViewManager/ViewManager.py" line="3724"/>
         <source>Next split</source>
         <translation>Separação seguinte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3726"/>
+        <location filename="../ViewManager/ViewManager.py" line="3724"/>
         <source>&amp;Next split</source>
         <translation>Separação segui&amp;nte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3726"/>
+        <location filename="../ViewManager/ViewManager.py" line="3724"/>
         <source>Ctrl+Alt+N</source>
         <comment>View|Next split</comment>
         <translation></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3731"/>
+        <source>Move to the next split</source>
+        <translation>Mover à seguinte divisão</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3733"/>
-        <source>Move to the next split</source>
-        <translation>Mover à seguinte divisão</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3735"/>
         <source>&lt;b&gt;Next split&lt;/b&gt;&lt;p&gt;Move to the next split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Separação seguinte&lt;/b&gt;&lt;p&gt;Mover à proxima divisão.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3743"/>
+        <location filename="../ViewManager/ViewManager.py" line="3741"/>
         <source>Previous split</source>
         <translation>Divisão anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3743"/>
+        <location filename="../ViewManager/ViewManager.py" line="3741"/>
         <source>&amp;Previous split</source>
         <translation>Divisão &amp;anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3743"/>
+        <location filename="../ViewManager/ViewManager.py" line="3741"/>
         <source>Ctrl+Alt+P</source>
         <comment>View|Previous split</comment>
         <translation></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3747"/>
+        <source>Move to the previous split</source>
+        <translation>Mover à divisão anterior</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3749"/>
-        <source>Move to the previous split</source>
-        <translation>Mover à divisão anterior</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3751"/>
         <source>&lt;b&gt;Previous split&lt;/b&gt;&lt;p&gt;Move to the previous split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Separação anterior&lt;/b&gt;&lt;p&gt;Mover à divisão anterior.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3835"/>
+        <location filename="../ViewManager/ViewManager.py" line="3833"/>
         <source>&amp;View</source>
         <translation>&amp;Vista</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3872"/>
+        <location filename="../ViewManager/ViewManager.py" line="3870"/>
         <source>View</source>
         <translation>Vista</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3906"/>
+        <source>Start Macro Recording</source>
+        <translation>Iniciar Registo de Macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3900"/>
+        <source>S&amp;tart Macro Recording</source>
+        <translation>Iniciar Regis&amp;to de Macro</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3908"/>
-        <source>Start Macro Recording</source>
-        <translation>Iniciar Registo de Macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3902"/>
-        <source>S&amp;tart Macro Recording</source>
-        <translation>Iniciar Regis&amp;to de Macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3910"/>
         <source>&lt;b&gt;Start Macro Recording&lt;/b&gt;&lt;p&gt;Start recording editor commands into a new macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Iniciar Registo de Macro&lt;/b&gt;&lt;p&gt;Inicia o registo de comandos do editor num macro novo.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3920"/>
+        <source>Stop Macro Recording</source>
+        <translation>Para Registo de Macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3916"/>
+        <source>Sto&amp;p Macro Recording</source>
+        <translation>&amp;Para Registo de Macro</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3922"/>
-        <source>Stop Macro Recording</source>
-        <translation>Para Registo de Macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3918"/>
-        <source>Sto&amp;p Macro Recording</source>
-        <translation>&amp;Para Registo de Macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3924"/>
         <source>&lt;b&gt;Stop Macro Recording&lt;/b&gt;&lt;p&gt;Stop recording editor commands into a new macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Parar Registo de Macro&lt;/b&gt;&lt;p&gt;Pára o registo de comandos do editor num macro novo.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3934"/>
+        <source>Run Macro</source>
+        <translation>Executar Macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3930"/>
+        <source>&amp;Run Macro</source>
+        <translation>Executa&amp;r Macro</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3936"/>
-        <source>Run Macro</source>
-        <translation>Executar Macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3932"/>
-        <source>&amp;Run Macro</source>
-        <translation>Executa&amp;r Macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3938"/>
         <source>&lt;b&gt;Run Macro&lt;/b&gt;&lt;p&gt;Run a previously recorded editor macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Executar Macro&lt;/b&gt;&lt;p&gt;Executa um macro de editor previamente registado.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3948"/>
+        <source>Delete Macro</source>
+        <translation>Apagar Macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3944"/>
+        <source>&amp;Delete Macro</source>
+        <translation>&amp;Apagar Macro</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3950"/>
-        <source>Delete Macro</source>
-        <translation>Apagar Macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3946"/>
-        <source>&amp;Delete Macro</source>
-        <translation>&amp;Apagar Macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3952"/>
         <source>&lt;b&gt;Delete Macro&lt;/b&gt;&lt;p&gt;Delete a previously recorded editor macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Apagar Macro&lt;/b&gt;&lt;p&gt;Apaga um macro de editor previamente registado.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3962"/>
+        <source>Load Macro</source>
+        <translation>Carregar Macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3958"/>
+        <source>&amp;Load Macro</source>
+        <translation>&amp;Carregar Macro</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3964"/>
-        <source>Load Macro</source>
-        <translation>Carregar Macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3960"/>
-        <source>&amp;Load Macro</source>
-        <translation>&amp;Carregar Macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3966"/>
         <source>&lt;b&gt;Load Macro&lt;/b&gt;&lt;p&gt;Load an editor macro from a file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Carregar Macro&lt;/b&gt;&lt;p&gt;Carrega um macro de editor desde um ficheiro.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3976"/>
+        <source>Save Macro</source>
+        <translation>Gravar Macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3972"/>
+        <source>&amp;Save Macro</source>
+        <translation>&amp;Gravar Macro</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3978"/>
-        <source>Save Macro</source>
-        <translation>Gravar Macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3974"/>
-        <source>&amp;Save Macro</source>
-        <translation>&amp;Gravar Macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3980"/>
         <source>&lt;b&gt;Save Macro&lt;/b&gt;&lt;p&gt;Save a previously recorded editor macro to a file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Gravar Macro&lt;/b&gt;&lt;p&gt;Grava um macro de editor previamente registado num ficheiro.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3996"/>
+        <location filename="../ViewManager/ViewManager.py" line="3994"/>
         <source>&amp;Macros</source>
         <translation></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4020"/>
+        <source>Toggle Bookmark</source>
+        <translation>Alternar Marcadores</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <source>&amp;Toggle Bookmark</source>
+        <translation>&amp;Alternar Marcadores</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <source>Alt+Ctrl+T</source>
+        <comment>Bookmark|Toggle</comment>
+        <translation>Alt+Ctrl+T</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4022"/>
-        <source>Toggle Bookmark</source>
-        <translation>Alternar Marcadores</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4014"/>
-        <source>&amp;Toggle Bookmark</source>
-        <translation>&amp;Alternar Marcadores</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4014"/>
-        <source>Alt+Ctrl+T</source>
-        <comment>Bookmark|Toggle</comment>
-        <translation>Alt+Ctrl+T</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4024"/>
         <source>&lt;b&gt;Toggle Bookmark&lt;/b&gt;&lt;p&gt;Toggle a bookmark at the current line of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4039"/>
+        <source>Next Bookmark</source>
+        <translation>Marcador Seguinte</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4031"/>
+        <source>&amp;Next Bookmark</source>
+        <translation>Marcador Segui&amp;nte</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4031"/>
+        <source>Ctrl+PgDown</source>
+        <comment>Bookmark|Next</comment>
+        <translation>Ctrl+PgDown</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4041"/>
-        <source>Next Bookmark</source>
-        <translation>Marcador Seguinte</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4033"/>
-        <source>&amp;Next Bookmark</source>
-        <translation>Marcador Segui&amp;nte</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4033"/>
-        <source>Ctrl+PgDown</source>
-        <comment>Bookmark|Next</comment>
-        <translation>Ctrl+PgDown</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4043"/>
         <source>&lt;b&gt;Next Bookmark&lt;/b&gt;&lt;p&gt;Go to next bookmark of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4057"/>
+        <source>Previous Bookmark</source>
+        <translation>Marcador Anterior</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4049"/>
+        <source>&amp;Previous Bookmark</source>
+        <translation>Marcador &amp;Anterior</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4049"/>
+        <source>Ctrl+PgUp</source>
+        <comment>Bookmark|Previous</comment>
+        <translation>Ctrl+PgUp</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4059"/>
-        <source>Previous Bookmark</source>
-        <translation>Marcador Anterior</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4051"/>
-        <source>&amp;Previous Bookmark</source>
-        <translation>Marcador &amp;Anterior</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4051"/>
-        <source>Ctrl+PgUp</source>
-        <comment>Bookmark|Previous</comment>
-        <translation>Ctrl+PgUp</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4061"/>
         <source>&lt;b&gt;Previous Bookmark&lt;/b&gt;&lt;p&gt;Go to previous bookmark of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4074"/>
+        <source>Clear Bookmarks</source>
+        <translation>Limpar Marcadores</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <source>&amp;Clear Bookmarks</source>
+        <translation>&amp;Limpar Marcadores</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <source>Alt+Ctrl+C</source>
+        <comment>Bookmark|Clear</comment>
+        <translation>Alt+Ctrl+C</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4076"/>
-        <source>Clear Bookmarks</source>
-        <translation>Limpar Marcadores</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4069"/>
-        <source>&amp;Clear Bookmarks</source>
-        <translation>&amp;Limpar Marcadores</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4069"/>
-        <source>Alt+Ctrl+C</source>
-        <comment>Bookmark|Clear</comment>
-        <translation>Alt+Ctrl+C</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4078"/>
         <source>&lt;b&gt;Clear Bookmarks&lt;/b&gt;&lt;p&gt;Clear bookmarks of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Limpar Marcadores&lt;/b&gt;&lt;p&gt;Limpa os marcadores de todos os editores&lt;.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4090"/>
+        <source>Goto Syntax Error</source>
+        <translation>Ir ao Erro de Sintaxe</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4084"/>
+        <source>&amp;Goto Syntax Error</source>
+        <translation>&amp;Ir ao Erro de Sintaxe</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4092"/>
-        <source>Goto Syntax Error</source>
-        <translation>Ir ao Erro de Sintaxe</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4086"/>
-        <source>&amp;Goto Syntax Error</source>
-        <translation>&amp;Ir ao Erro de Sintaxe</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4094"/>
         <source>&lt;b&gt;Goto Syntax Error&lt;/b&gt;&lt;p&gt;Go to next syntax error of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4105"/>
+        <source>Clear Syntax Errors</source>
+        <translation>Limpar Erros de Sintaxe</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4100"/>
+        <source>Clear &amp;Syntax Errors</source>
+        <translation>Limpar Erros de &amp;Sintaxe</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4107"/>
-        <source>Clear Syntax Errors</source>
-        <translation>Limpar Erros de Sintaxe</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4102"/>
-        <source>Clear &amp;Syntax Errors</source>
-        <translation>Limpar Erros de &amp;Sintaxe</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4109"/>
         <source>&lt;b&gt;Clear Syntax Errors&lt;/b&gt;&lt;p&gt;Clear syntax errors of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Limpar Erros de Sintaxe&lt;/b&gt;&lt;p&gt;Limpa os erros de sintaxe dos editores todos.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4124"/>
+        <location filename="../ViewManager/ViewManager.py" line="4122"/>
         <source>Next warning message</source>
         <translation>Mensagem de aviso seguinte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4118"/>
+        <location filename="../ViewManager/ViewManager.py" line="4116"/>
         <source>&amp;Next warning message</source>
         <translation>Mensagem de aviso segui&amp;nte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4143"/>
+        <location filename="../ViewManager/ViewManager.py" line="4141"/>
         <source>Previous warning message</source>
         <translation>Mensagem de aviso anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4135"/>
+        <location filename="../ViewManager/ViewManager.py" line="4133"/>
         <source>&amp;Previous warning message</source>
         <translation>Mensagem de aviso &amp;anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4161"/>
+        <location filename="../ViewManager/ViewManager.py" line="4159"/>
         <source>Clear Warning Messages</source>
         <translation>Limpar Mensagens de Aviso</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4154"/>
+        <location filename="../ViewManager/ViewManager.py" line="4152"/>
         <source>Clear &amp;Warning Messages</source>
         <translation>Limpar Mensagens de &amp;Aviso</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4175"/>
+        <source>Next uncovered line</source>
+        <translation>Linha seguinte sem cobrir</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4169"/>
+        <source>&amp;Next uncovered line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4177"/>
-        <source>Next uncovered line</source>
-        <translation>Linha seguinte sem cobrir</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4171"/>
-        <source>&amp;Next uncovered line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4179"/>
         <source>&lt;b&gt;Next uncovered line&lt;/b&gt;&lt;p&gt;Go to next line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4194"/>
+        <source>Previous uncovered line</source>
+        <translation>Linha anterior sem cobrir</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4186"/>
+        <source>&amp;Previous uncovered line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4196"/>
-        <source>Previous uncovered line</source>
-        <translation>Linha anterior sem cobrir</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4188"/>
-        <source>&amp;Previous uncovered line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4198"/>
         <source>&lt;b&gt;Previous uncovered line&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4212"/>
+        <source>Next Task</source>
+        <translation>Tarefa Seguinte</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4206"/>
+        <source>&amp;Next Task</source>
+        <translation>Tarefa Segui&amp;nte</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4214"/>
-        <source>Next Task</source>
-        <translation>Tarefa Seguinte</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4208"/>
-        <source>&amp;Next Task</source>
-        <translation>Tarefa Segui&amp;nte</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4216"/>
         <source>&lt;b&gt;Next Task&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a task.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4229"/>
+        <source>Previous Task</source>
+        <translation>Tarefa Anterior</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4222"/>
+        <source>&amp;Previous Task</source>
+        <translation>Tarefa &amp;Anterior</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4231"/>
-        <source>Previous Task</source>
-        <translation>Tarefa Anterior</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4224"/>
-        <source>&amp;Previous Task</source>
-        <translation>Tarefa &amp;Anterior</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4233"/>
         <source>&lt;b&gt;Previous Task&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a task.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4287"/>
+        <location filename="../ViewManager/ViewManager.py" line="4285"/>
         <source>&amp;Bookmarks</source>
         <translation>&amp;Marcadores</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4333"/>
+        <location filename="../ViewManager/ViewManager.py" line="4331"/>
         <source>Bookmarks</source>
         <translation>Marcadores</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4366"/>
+        <location filename="../ViewManager/ViewManager.py" line="4364"/>
         <source>Shift+F7</source>
         <comment>Spelling|Spell Check</comment>
         <translation>Shift+F7</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4375"/>
+        <location filename="../ViewManager/ViewManager.py" line="4373"/>
         <source>Perform spell check of current editor</source>
         <translation>Executar a verificação ortográfica do editor atual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4385"/>
+        <location filename="../ViewManager/ViewManager.py" line="4383"/>
         <source>Automatic spell checking</source>
         <translation>Verificação ortográfica automática</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4385"/>
+        <location filename="../ViewManager/ViewManager.py" line="4383"/>
         <source>&amp;Automatic spell checking</source>
         <translation>Verificação ortográfica &amp;automática</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4391"/>
+        <source>(De-)Activate automatic spell checking</source>
+        <translation>(Des)Ativar verificação ortográfica automática</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4393"/>
-        <source>(De-)Activate automatic spell checking</source>
-        <translation>(Des)Ativar verificação ortográfica automática</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4395"/>
         <source>&lt;b&gt;Automatic spell checking&lt;/b&gt;&lt;p&gt;Activate or deactivate the automatic spell checking function of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Verificação ortográfica automática&lt;/b&gt;&lt;p&gt;Ativa ou desativa a função de verificação ortográfica automática nos editores todos.&lt;p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4462"/>
+        <location filename="../ViewManager/ViewManager.py" line="4460"/>
         <source>Spelling</source>
         <translation>Verificação ortográfica</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4485"/>
+        <location filename="../ViewManager/ViewManager.py" line="4483"/>
         <source>Open files</source>
         <translation>Abrir ficheiros</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4529"/>
+        <location filename="../ViewManager/ViewManager.py" line="4527"/>
         <source>File Modified</source>
         <translation>Ficheiro Modificado</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4529"/>
+        <location filename="../ViewManager/ViewManager.py" line="4527"/>
         <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="../ViewManager/ViewManager.py" line="4928"/>
+        <location filename="../ViewManager/ViewManager.py" line="4926"/>
         <source>Line: {0:5}</source>
         <translation>Linha: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4934"/>
+        <location filename="../ViewManager/ViewManager.py" line="4932"/>
         <source>Pos: {0:5}</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5373"/>
+        <location filename="../ViewManager/ViewManager.py" line="5371"/>
         <source>&amp;Clear</source>
         <translation>&amp;Limpar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5367"/>
+        <location filename="../ViewManager/ViewManager.py" line="5365"/>
         <source>&amp;Add</source>
         <translation>&amp;Adicionar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5370"/>
+        <location filename="../ViewManager/ViewManager.py" line="5368"/>
         <source>&amp;Edit...</source>
         <translation>&amp;Editar...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3202"/>
+        <location filename="../ViewManager/ViewManager.py" line="3200"/>
         <source>Goto Last Edit Location</source>
         <translation>Ir ao Local da Última Edição</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3191"/>
+        <location filename="../ViewManager/ViewManager.py" line="3189"/>
         <source>Goto Last &amp;Edit Location</source>
         <translation>Ir ao Local da Última &amp;Edição</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3191"/>
+        <location filename="../ViewManager/ViewManager.py" line="3189"/>
         <source>Ctrl+Shift+G</source>
         <comment>Search|Goto Last Edit Location</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3205"/>
+        <location filename="../ViewManager/ViewManager.py" line="3203"/>
         <source>&lt;b&gt;Goto Last Edit Location&lt;/b&gt;&lt;p&gt;Go to the location of the last edit in the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3214"/>
+        <location filename="../ViewManager/ViewManager.py" line="3212"/>
         <source>Goto Previous Method or Class</source>
         <translation>Ir ao Método ou Classe Anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3214"/>
+        <location filename="../ViewManager/ViewManager.py" line="3212"/>
         <source>Ctrl+Shift+Up</source>
         <comment>Search|Goto Previous Method or Class</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3224"/>
+        <location filename="../ViewManager/ViewManager.py" line="3222"/>
         <source>Go to the previous method or class definition</source>
         <translation>Ir à definição de método ou classe anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3228"/>
+        <location filename="../ViewManager/ViewManager.py" line="3226"/>
         <source>&lt;b&gt;Goto Previous Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the previous method or class definition and highlights the name.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3238"/>
+        <location filename="../ViewManager/ViewManager.py" line="3236"/>
         <source>Goto Next Method or Class</source>
         <translation>Ir ao Método ou Classe Seguinte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3238"/>
+        <location filename="../ViewManager/ViewManager.py" line="3236"/>
         <source>Ctrl+Shift+Down</source>
         <comment>Search|Goto Next Method or Class</comment>
         <translation></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3246"/>
+        <source>Go to the next method or class definition</source>
+        <translation>Ir à definição de método ou classe seguinte</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3248"/>
-        <source>Go to the next method or class definition</source>
-        <translation>Ir à definição de método ou classe seguinte</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3250"/>
         <source>&lt;b&gt;Goto Next Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the next method or class definition and highlights the name.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3759"/>
+        <location filename="../ViewManager/ViewManager.py" line="3757"/>
         <source>Preview</source>
         <translation>Antevisão</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3762"/>
+        <source>Preview the current file in the web browser</source>
+        <translation>Antevisão do ficheiro atual no navegador web</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3764"/>
-        <source>Preview the current file in the web browser</source>
-        <translation>Antevisão do ficheiro atual no navegador web</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3766"/>
         <source>&lt;b&gt;Preview&lt;/b&gt;&lt;p&gt;This opens the web browser with a preview of the current file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1490"/>
+        <location filename="../ViewManager/ViewManager.py" line="1489"/>
         <source>Meta+B</source>
         <translation>Meta+B</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1503"/>
+        <location filename="../ViewManager/ViewManager.py" line="1502"/>
         <source>Meta+F</source>
         <translation>Meta+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1515"/>
+        <location filename="../ViewManager/ViewManager.py" line="1514"/>
         <source>Meta+P</source>
         <translation type="unfinished">Meta+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1527"/>
+        <location filename="../ViewManager/ViewManager.py" line="1526"/>
         <source>Meta+N</source>
         <translation type="unfinished">Meta+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1588"/>
+        <location filename="../ViewManager/ViewManager.py" line="1587"/>
         <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="1604"/>
+        <location filename="../ViewManager/ViewManager.py" line="1603"/>
         <source>Move to start of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1621"/>
+        <location filename="../ViewManager/ViewManager.py" line="1620"/>
         <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="1629"/>
+        <location filename="../ViewManager/ViewManager.py" line="1628"/>
         <source>Meta+E</source>
         <translation type="unfinished">Meta+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1697"/>
+        <location filename="../ViewManager/ViewManager.py" line="1696"/>
         <source>Meta+V</source>
         <translation type="unfinished">Meta+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1703"/>
+        <location filename="../ViewManager/ViewManager.py" line="1702"/>
         <source>Move to start of document</source>
         <translation>Mover ao princípio do documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1720"/>
+        <location filename="../ViewManager/ViewManager.py" line="1719"/>
         <source>Move to end of document</source>
         <translation>Mover ao final do documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1765"/>
+        <location filename="../ViewManager/ViewManager.py" line="1764"/>
         <source>Meta+Shift+B</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1780"/>
+        <location filename="../ViewManager/ViewManager.py" line="1779"/>
         <source>Meta+Shift+F</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1795"/>
+        <location filename="../ViewManager/ViewManager.py" line="1794"/>
         <source>Meta+Shift+P</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1810"/>
+        <location filename="../ViewManager/ViewManager.py" line="1809"/>
         <source>Meta+Shift+N</source>
         <translation>Meta+Shift+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1878"/>
+        <location filename="../ViewManager/ViewManager.py" line="1877"/>
         <source>Extend selection to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1896"/>
+        <location filename="../ViewManager/ViewManager.py" line="1895"/>
         <source>Extend selection to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1904"/>
+        <location filename="../ViewManager/ViewManager.py" line="1903"/>
         <source>Meta+Shift+E</source>
         <translation>Meta+Shift+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1961"/>
+        <location filename="../ViewManager/ViewManager.py" line="1960"/>
         <source>Meta+Shift+V</source>
         <translation>Meta+Shift+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1967"/>
+        <location filename="../ViewManager/ViewManager.py" line="1966"/>
         <source>Extend selection to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1975"/>
+        <location filename="../ViewManager/ViewManager.py" line="1974"/>
         <source>Ctrl+Shift+Up</source>
         <translation>Ctrl+Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1984"/>
+        <location filename="../ViewManager/ViewManager.py" line="1983"/>
         <source>Extend selection to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1992"/>
+        <location filename="../ViewManager/ViewManager.py" line="1991"/>
         <source>Ctrl+Shift+Down</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2010"/>
+        <location filename="../ViewManager/ViewManager.py" line="2009"/>
         <source>Meta+H</source>
         <translation>Meta+H</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2019"/>
+        <location filename="../ViewManager/ViewManager.py" line="2018"/>
         <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="2040"/>
+        <location filename="../ViewManager/ViewManager.py" line="2039"/>
         <source>Meta+D</source>
         <translation>Meta+D</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2084"/>
+        <location filename="../ViewManager/ViewManager.py" line="2083"/>
         <source>Meta+K</source>
         <translation>Meta+K</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2194"/>
+        <location filename="../ViewManager/ViewManager.py" line="2192"/>
         <source>Move to end of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2211"/>
+        <location filename="../ViewManager/ViewManager.py" line="2209"/>
         <source>Extend selection to end of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2253"/>
+        <location filename="../ViewManager/ViewManager.py" line="2251"/>
         <source>Meta+Alt+Shift+N</source>
         <translation>Meta+Alt+Shift+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2268"/>
+        <location filename="../ViewManager/ViewManager.py" line="2266"/>
         <source>Meta+Alt+Shift+P</source>
         <translation>Meta+Alt+Shift+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2286"/>
+        <location filename="../ViewManager/ViewManager.py" line="2284"/>
         <source>Meta+Alt+Shift+B</source>
         <translation>Meta+Alt+Shift+B</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2304"/>
+        <location filename="../ViewManager/ViewManager.py" line="2302"/>
         <source>Meta+Alt+Shift+F</source>
         <translation>Meta+Alt+Shift+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2310"/>
+        <location filename="../ViewManager/ViewManager.py" line="2308"/>
         <source>Extend rectangular selection to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2329"/>
+        <location filename="../ViewManager/ViewManager.py" line="2327"/>
         <source>Extend rectangular selection to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2339"/>
+        <location filename="../ViewManager/ViewManager.py" line="2337"/>
         <source>Meta+Alt+Shift+E</source>
         <translation>Meta+Alt+Shift+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2342"/>
+        <location filename="../ViewManager/ViewManager.py" line="2340"/>
         <source>Alt+Shift+End</source>
         <translation>Alt+Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2363"/>
+        <location filename="../ViewManager/ViewManager.py" line="2361"/>
         <source>Alt+Shift+PgDown</source>
         <translation>Alt+Shift+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2375"/>
+        <location filename="../ViewManager/ViewManager.py" line="2373"/>
         <source>Meta+Alt+Shift+V</source>
         <translation>Meta+Alt+Shift+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2395"/>
+        <location filename="../ViewManager/ViewManager.py" line="2393"/>
         <source>Scroll to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2410"/>
+        <location filename="../ViewManager/ViewManager.py" line="2408"/>
         <source>Scroll to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2425"/>
+        <location filename="../ViewManager/ViewManager.py" line="2423"/>
         <source>Scroll vertically to center current line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2433"/>
+        <location filename="../ViewManager/ViewManager.py" line="2431"/>
         <source>Meta+L</source>
         <translation>Meta+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2440"/>
+        <location filename="../ViewManager/ViewManager.py" line="2438"/>
         <source>Move to end of next word</source>
         <translation>Mover ao fim da palavra seguinte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2455"/>
+        <location filename="../ViewManager/ViewManager.py" line="2453"/>
         <source>Extend selection to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2471"/>
+        <location filename="../ViewManager/ViewManager.py" line="2469"/>
         <source>Move to end of previous word</source>
         <translation>Mover ao fim da palavra anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2483"/>
+        <location filename="../ViewManager/ViewManager.py" line="2481"/>
         <source>Extend selection to end of previous word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2495"/>
+        <location filename="../ViewManager/ViewManager.py" line="2493"/>
         <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="2503"/>
+        <location filename="../ViewManager/ViewManager.py" line="2501"/>
         <source>Meta+A</source>
         <translation>Meta+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2510"/>
+        <location filename="../ViewManager/ViewManager.py" line="2508"/>
         <source>Extend selection to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2521"/>
+        <location filename="../ViewManager/ViewManager.py" line="2519"/>
         <source>Meta+Shift+A</source>
         <translation>Meta+Shift+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2528"/>
+        <location filename="../ViewManager/ViewManager.py" line="2526"/>
         <source>Extend rectangular selection to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2538"/>
+        <location filename="../ViewManager/ViewManager.py" line="2536"/>
         <source>Meta+Alt+Shift+A</source>
         <translation>Meta+Alt+Shift+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2546"/>
+        <location filename="../ViewManager/ViewManager.py" line="2544"/>
         <source>Extend selection to start of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2565"/>
+        <location filename="../ViewManager/ViewManager.py" line="2563"/>
         <source>Move to start of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2579"/>
+        <location filename="../ViewManager/ViewManager.py" line="2577"/>
         <source>Extend selection to start of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2594"/>
+        <location filename="../ViewManager/ViewManager.py" line="2592"/>
         <source>Move to first visible character in display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2611"/>
+        <location filename="../ViewManager/ViewManager.py" line="2609"/>
         <source>Extend selection to first visible character in display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2628"/>
+        <location filename="../ViewManager/ViewManager.py" line="2626"/>
         <source>Move to end of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2642"/>
+        <location filename="../ViewManager/ViewManager.py" line="2640"/>
         <source>Extend selection to end of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2657"/>
+        <location filename="../ViewManager/ViewManager.py" line="2655"/>
         <source>Stuttered move up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2669"/>
+        <location filename="../ViewManager/ViewManager.py" line="2667"/>
         <source>Stuttered extend selection up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2682"/>
+        <location filename="../ViewManager/ViewManager.py" line="2680"/>
         <source>Stuttered move down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2694"/>
+        <location filename="../ViewManager/ViewManager.py" line="2692"/>
         <source>Stuttered extend selection down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2707"/>
+        <location filename="../ViewManager/ViewManager.py" line="2705"/>
         <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="2715"/>
+        <location filename="../ViewManager/ViewManager.py" line="2713"/>
         <source>Alt+Del</source>
         <translation>Alt+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2722"/>
+        <location filename="../ViewManager/ViewManager.py" line="2720"/>
         <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="2734"/>
+        <location filename="../ViewManager/ViewManager.py" line="2732"/>
         <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="2348"/>
+        <location filename="../ViewManager/ViewManager.py" line="2346"/>
         <source>Alt+Shift+PgUp</source>
         <translation>Alt+Shift+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1185"/>
+        <location filename="../ViewManager/ViewManager.py" line="1184"/>
         <source>Toggle Comment</source>
         <translation>Alternar Comentário</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1185"/>
+        <location filename="../ViewManager/ViewManager.py" line="1184"/>
         <source>Ctrl+Shift+M</source>
         <comment>Edit|Toggle Comment</comment>
         <translation>Ctrl+Shift+M</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1193"/>
+        <location filename="../ViewManager/ViewManager.py" line="1192"/>
         <source>Toggle the comment of the current line, selection or comment block</source>
         <translation>Alternar o comentário da linha atual ou do bloque selecionado</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1197"/>
+        <location filename="../ViewManager/ViewManager.py" line="1196"/>
         <source>&lt;b&gt;Toggle Comment&lt;/b&gt;&lt;p&gt;If the current line does not start with a block comment, the current line or selection is commented. If it is already commented, this comment block is uncommented. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3525"/>
         <source>Zoom reset</source>
         <translation>Restaurar zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3525"/>
         <source>Zoom &amp;reset</source>
         <translation>&amp;Restaurar zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3525"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation>Ctrl+0</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3533"/>
+        <source>Reset the zoom of the text</source>
+        <translation>Reiniciar o zoom do texto</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3535"/>
-        <source>Reset the zoom of the text</source>
-        <translation>Reiniciar o zoom do texto</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3537"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3487"/>
         <source>Zoom In</source>
         <comment>View|Zoom in</comment>
         <translation>Aproximar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3508"/>
+        <location filename="../ViewManager/ViewManager.py" line="3506"/>
         <source>Zoom Out</source>
         <comment>View|Zoom out</comment>
         <translation>Afastar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="764"/>
+        <location filename="../ViewManager/ViewManager.py" line="763"/>
         <source>Save a&amp;ll</source>
         <translation>Gravar &amp;tudo</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4246"/>
+        <source>Next Change</source>
+        <translation>Alteração Seguinte</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4240"/>
+        <source>&amp;Next Change</source>
+        <translation>Alteração Segui&amp;nte</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4248"/>
-        <source>Next Change</source>
-        <translation>Alteração Seguinte</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4242"/>
-        <source>&amp;Next Change</source>
-        <translation>Alteração Segui&amp;nte</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4250"/>
         <source>&lt;b&gt;Next Change&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4264"/>
+        <source>Previous Change</source>
+        <translation>Alteração Anterior</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4257"/>
+        <source>&amp;Previous Change</source>
+        <translation>Alteração &amp;Anterior</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4266"/>
-        <source>Previous Change</source>
-        <translation>Alteração Anterior</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4259"/>
-        <source>&amp;Previous Change</source>
-        <translation>Alteração &amp;Anterior</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4268"/>
         <source>&lt;b&gt;Previous Change&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4366"/>
+        <location filename="../ViewManager/ViewManager.py" line="4364"/>
         <source>Check spelling</source>
         <translation>Verificar ortografia</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4366"/>
+        <location filename="../ViewManager/ViewManager.py" line="4364"/>
         <source>Check &amp;spelling...</source>
         <translation>Verificar &amp;ortografia...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4377"/>
+        <location filename="../ViewManager/ViewManager.py" line="4375"/>
         <source>&lt;b&gt;Check spelling&lt;/b&gt;&lt;p&gt;Perform a spell check of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Verificação ortográfica&lt;/b&gt;&lt;p&gt;Executa a verificação ortográfica do editor atual.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4424"/>
+        <source>Edit Dictionary</source>
+        <translation>Editar Dicionário</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4426"/>
-        <source>Edit Dictionary</source>
-        <translation>Editar Dicionário</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4428"/>
         <source>Project Word List</source>
         <translation>Lista de Palavras do Projeto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4431"/>
+        <location filename="../ViewManager/ViewManager.py" line="4429"/>
         <source>Project Exception List</source>
         <translation>Lista de Excepções do Projeto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4436"/>
+        <location filename="../ViewManager/ViewManager.py" line="4434"/>
         <source>User Word List</source>
         <translation>Lista de Palavras do Usuário</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4439"/>
+        <location filename="../ViewManager/ViewManager.py" line="4437"/>
         <source>User Exception List</source>
         <translation>Lista de Exceções do Usuário</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6639"/>
+        <location filename="../ViewManager/ViewManager.py" line="6637"/>
         <source>Edit Spelling Dictionary</source>
         <translation>Editar Dicionário Ortográfico</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6614"/>
+        <location filename="../ViewManager/ViewManager.py" line="6612"/>
         <source>Editing {0}</source>
         <translation>A editar {0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6596"/>
+        <location filename="../ViewManager/ViewManager.py" line="6594"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6626"/>
+        <location filename="../ViewManager/ViewManager.py" line="6624"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6639"/>
+        <location filename="../ViewManager/ViewManager.py" line="6637"/>
         <source>The spelling dictionary was saved successfully.</source>
         <translation>O dicionário ortográfico foi guradado com êxito.</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2957"/>
+        <location filename="../ViewManager/ViewManager.py" line="2955"/>
         <source>Search current word forward</source>
         <translation>Procurar para a frente à palavra atual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2957"/>
+        <location filename="../ViewManager/ViewManager.py" line="2955"/>
         <source>Ctrl+.</source>
         <comment>Search|Search current word forward</comment>
         <translation>Ctrl+.</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2968"/>
+        <location filename="../ViewManager/ViewManager.py" line="2966"/>
         <source>Search next occurrence of the current word</source>
         <translation>Procurar a próxima ocurrência da palavra atual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2971"/>
+        <location filename="../ViewManager/ViewManager.py" line="2969"/>
         <source>&lt;b&gt;Search current word forward&lt;/b&gt;&lt;p&gt;Search the next occurrence of the current word of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2980"/>
+        <location filename="../ViewManager/ViewManager.py" line="2978"/>
         <source>Search current word backward</source>
         <translation>Procurar para trás à palavra atual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2980"/>
+        <location filename="../ViewManager/ViewManager.py" line="2978"/>
         <source>Ctrl+,</source>
         <comment>Search|Search current word backward</comment>
         <translation>Ctrl+,</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2991"/>
+        <location filename="../ViewManager/ViewManager.py" line="2989"/>
         <source>Search previous occurrence of the current word</source>
         <translation>Procurar ocurrência anterior da palavra atual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2994"/>
+        <location filename="../ViewManager/ViewManager.py" line="2992"/>
         <source>&lt;b&gt;Search current word backward&lt;/b&gt;&lt;p&gt;Search the previous occurrence of the current word of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3301"/>
+        <location filename="../ViewManager/ViewManager.py" line="3299"/>
         <source>Search in Open Files</source>
         <translation>Procurar em Ficheiros Abertos</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3301"/>
+        <location filename="../ViewManager/ViewManager.py" line="3299"/>
         <source>Search in Open Files...</source>
         <translation>Procurar em Ficheiros Abertos...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3301"/>
+        <location filename="../ViewManager/ViewManager.py" line="3299"/>
         <source>Meta+Ctrl+Alt+F</source>
         <comment>Search|Search Open Files</comment>
         <translation>Meta+Ctrl+Alt+F</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3310"/>
+        <source>Search for a text in open files</source>
+        <translation>Procurar um texto nos ficheiros abertos</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3312"/>
-        <source>Search for a text in open files</source>
-        <translation>Procurar um texto nos ficheiros abertos</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3314"/>
         <source>&lt;b&gt;Search in Open Files&lt;/b&gt;&lt;p&gt;Search for some text in the currently opened files. A dialog is shown to enter the searchtext and options for the search and to display the result.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3324"/>
+        <location filename="../ViewManager/ViewManager.py" line="3322"/>
         <source>Replace in Open Files</source>
         <translation>Substituir em Ficheiros Abertos</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3324"/>
+        <location filename="../ViewManager/ViewManager.py" line="3322"/>
         <source>Meta+Ctrl+Alt+R</source>
         <comment>Search|Replace in Open Files</comment>
         <translation>Meta+Ctrl+Alt+R</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3332"/>
+        <source>Search for a text in open files and replace it</source>
+        <translation>Procurar e substituir um texto em ficheiros abertos</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3334"/>
-        <source>Search for a text in open files and replace it</source>
-        <translation>Procurar e substituir um texto em ficheiros abertos</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3336"/>
         <source>&lt;b&gt;Replace in Open Files&lt;/b&gt;&lt;p&gt;Search for some text in the currently opened files and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and to display the result.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3324"/>
+        <location filename="../ViewManager/ViewManager.py" line="3322"/>
         <source>Replace in Open Files...</source>
         <translation>Substituir em Ficheiros Abertos...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1450"/>
+        <location filename="../ViewManager/ViewManager.py" line="1449"/>
         <source>Sort</source>
         <translation>Ordenar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1450"/>
+        <location filename="../ViewManager/ViewManager.py" line="1449"/>
         <source>Ctrl+Alt+S</source>
         <comment>Edit|Sort</comment>
         <translation>Ctrl+Alt+S</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1457"/>
+        <location filename="../ViewManager/ViewManager.py" line="1456"/>
         <source>Sort the lines containing the rectangular selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1460"/>
+        <location filename="../ViewManager/ViewManager.py" line="1459"/>
         <source>&lt;b&gt;Sort&lt;/b&gt;&lt;p&gt;Sort the lines spanned by a rectangular selection based on the selection ignoring leading and trailing whitespace.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4955"/>
+        <location filename="../ViewManager/ViewManager.py" line="4953"/>
         <source>Language: {0}</source>
         <translation>Linguagem: {0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4962"/>
+        <location filename="../ViewManager/ViewManager.py" line="4960"/>
         <source>EOL Mode: {0}</source>
         <translation>Modo EOL: {0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3643"/>
+        <location filename="../ViewManager/ViewManager.py" line="3641"/>
         <source>New Document View</source>
         <translation>Novo Visor do Documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3643"/>
+        <location filename="../ViewManager/ViewManager.py" line="3641"/>
         <source>New &amp;Document View</source>
         <translation>Novo Visor do &amp;Documento</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3646"/>
+        <source>Open a new view of the current document</source>
+        <translation>Abrir um novo visor com o documento atual</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3648"/>
-        <source>Open a new view of the current document</source>
-        <translation>Abrir um novo visor com o documento atual</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3650"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nova Vista de Documento&lt;/b&gt;&lt;p&gt;Abre uma vista nova do documento atual. Ambas vistas mostram o mesmo documento mas, os cursores podem estar em posições independentes.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3660"/>
+        <location filename="../ViewManager/ViewManager.py" line="3658"/>
         <source>New Document View (with new split)</source>
         <translation>Nova Vista de Documento (com divisão nova)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3667"/>
+        <location filename="../ViewManager/ViewManager.py" line="3665"/>
         <source>Open a new view of the current document in a new split</source>
         <translation>Abrir uma nova vista do documento atual numa nova divisão</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3670"/>
+        <location filename="../ViewManager/ViewManager.py" line="3668"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document in a new split. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nova Vista de Documento&lt;/b&gt;&lt;p&gt;Abre uma vista nova do documento atual numa divisão nova. Ambas vistas mostram o mesmo documento mas, os cursores podem estar em posições independentes.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4126"/>
+        <location filename="../ViewManager/ViewManager.py" line="4124"/>
         <source>&lt;b&gt;Next warning message&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4145"/>
+        <location filename="../ViewManager/ViewManager.py" line="4143"/>
         <source>&lt;b&gt;Previous warning message&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4163"/>
+        <location filename="../ViewManager/ViewManager.py" line="4161"/>
         <source>&lt;b&gt;Clear Warning Messages&lt;/b&gt;&lt;p&gt;Clear pyflakes warning messages of all editors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1327"/>
+        <location filename="../ViewManager/ViewManager.py" line="1326"/>
         <source>Ctrl+Space</source>
         <comment>Edit|Complete</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1345"/>
+        <location filename="../ViewManager/ViewManager.py" line="1344"/>
         <source>Ctrl+Shift+Space</source>
         <comment>Edit|Complete from Document</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1368"/>
+        <location filename="../ViewManager/ViewManager.py" line="1367"/>
         <source>Ctrl+Alt+Space</source>
         <comment>Edit|Complete from APIs</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1391"/>
+        <location filename="../ViewManager/ViewManager.py" line="1390"/>
         <source>Alt+Shift+Space</source>
         <comment>Edit|Complete from Document and APIs</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1414"/>
+        <location filename="../ViewManager/ViewManager.py" line="1413"/>
         <source>Meta+Alt+Space</source>
         <comment>Edit|Calltip</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="748"/>
+        <location filename="../ViewManager/ViewManager.py" line="747"/>
         <source>Save Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="748"/>
+        <location filename="../ViewManager/ViewManager.py" line="747"/>
         <source>Save &amp;Copy...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="753"/>
+        <location filename="../ViewManager/ViewManager.py" line="752"/>
         <source>Save a copy of the current file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="755"/>
+        <location filename="../ViewManager/ViewManager.py" line="754"/>
         <source>&lt;b&gt;Save Copy&lt;/b&gt;&lt;p&gt;Save a copy of the contents of current editor window. The file can be entered in a file selection dialog.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -85931,141 +86021,141 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3022"/>
+        <location filename="../ViewManager/ViewManager.py" line="3020"/>
         <source>Replace and Search</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3022"/>
+        <location filename="../ViewManager/ViewManager.py" line="3020"/>
         <source>Meta+R</source>
         <comment>Search|Replace and Search</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3032"/>
+        <location filename="../ViewManager/ViewManager.py" line="3030"/>
         <source>Replace the found text and search the next occurrence</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3035"/>
+        <location filename="../ViewManager/ViewManager.py" line="3033"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3046"/>
+        <location filename="../ViewManager/ViewManager.py" line="3044"/>
         <source>Replace Occurrence</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3046"/>
+        <location filename="../ViewManager/ViewManager.py" line="3044"/>
         <source>Ctrl+Meta+R</source>
         <comment>Search|Replace Occurrence</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3054"/>
+        <source>Replace the found text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3056"/>
-        <source>Replace the found text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3058"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3068"/>
+        <location filename="../ViewManager/ViewManager.py" line="3066"/>
         <source>Replace All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3068"/>
+        <location filename="../ViewManager/ViewManager.py" line="3066"/>
         <source>Shift+Meta+R</source>
         <comment>Search|Replace All</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3076"/>
+        <source>Replace search text occurrences</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3078"/>
-        <source>Replace search text occurrences</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3080"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1432"/>
+        <location filename="../ViewManager/ViewManager.py" line="1431"/>
         <source>Code Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1432"/>
+        <location filename="../ViewManager/ViewManager.py" line="1431"/>
         <source>Ctrl+Alt+I</source>
         <comment>Edit|Code Info</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1440"/>
+        <location filename="../ViewManager/ViewManager.py" line="1439"/>
         <source>Show Code Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1442"/>
+        <location filename="../ViewManager/ViewManager.py" line="1441"/>
         <source>&lt;b&gt;Code Info&lt;/b&gt;&lt;p&gt;Show code information based on the cursor position.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3614"/>
+        <source>Clear all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3610"/>
+        <source>Clear &amp;all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3616"/>
-        <source>Clear all folds</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3612"/>
-        <source>Clear &amp;all folds</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3618"/>
         <source>&lt;b&gt;Clear all folds&lt;/b&gt;&lt;p&gt;Clear all folds of the current editor, i.e. ensure that all lines are displayed unfolded.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2150"/>
+        <location filename="../ViewManager/ViewManager.py" line="2148"/>
         <source>Reverse selected lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2150"/>
+        <location filename="../ViewManager/ViewManager.py" line="2148"/>
         <source>Meta+Alt+R</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3776"/>
+        <location filename="../ViewManager/ViewManager.py" line="3774"/>
         <source>Python AST Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3779"/>
+        <source>Show the AST for the current Python file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3781"/>
-        <source>Show the AST for the current Python file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3783"/>
         <source>&lt;b&gt;Python AST Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the AST of the current Python source file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3793"/>
+        <location filename="../ViewManager/ViewManager.py" line="3791"/>
         <source>Python Disassembly Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3798"/>
+        <source>Show the Disassembly for the current Python file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3800"/>
-        <source>Show the Disassembly for the current Python file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3802"/>
         <source>&lt;b&gt;Python Disassembly Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the Disassembly of the current Python source file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -88945,7 +89035,7 @@
 <context>
     <name>WebBrowserTools</name>
     <message>
-        <location filename="../WebBrowser/Tools/WebBrowserTools.py" line="249"/>
+        <location filename="../WebBrowser/Tools/WebBrowserTools.py" line="251"/>
         <source>&lt;unknown&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -91659,57 +91749,112 @@
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="38"/>
         <source>Invalid API key.</source>
-        <translation>Chave API inválida.</translation>
+        <translation type="obsolete">Chave API inválida.</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="39"/>
         <source>API key has been blocked.</source>
-        <translation>Chave API foi bloqueada.</translation>
+        <translation type="obsolete">Chave API foi bloqueada.</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="40"/>
         <source>Daily limit for requests has been reached.</source>
-        <translation>Alcançado o limite de solicitudes diśrias.</translation>
+        <translation type="obsolete">Alcançado o limite de solicitudes diśrias.</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="41"/>
         <source>Daily limit for the volume of translated text reached.</source>
-        <translation>Alcançado o limite diário do volume de texto traduzido.</translation>
+        <translation type="obsolete">Alcançado o limite diário do volume de texto traduzido.</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="43"/>
         <source>Text size exceeds the maximum.</source>
-        <translation>Tamanho do texto excede o máximo.</translation>
+        <translation type="obsolete">Tamanho do texto excede o máximo.</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="44"/>
         <source>Text could not be translated.</source>
-        <translation>Não se pôde traduzir o texto.</translation>
+        <translation type="obsolete">Não se pôde traduzir o texto.</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="45"/>
         <source>The specified translation direction is not supported.</source>
-        <translation>A direção da tradução especificada não é suportada.</translation>
+        <translation type="obsolete">A direção da tradução especificada não é suportada.</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="86"/>
         <source>Only texts up to {0} characters are allowed.</source>
-        <translation>Só estão permitidos textos até {0} caracteres.</translation>
+        <translation type="obsolete">Só estão permitidos textos até {0} caracteres.</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="91"/>
         <source>A valid Yandex key is required.</source>
-        <translation>É requerida uma chave Yandex válida.</translation>
+        <translation type="obsolete">É requerida uma chave Yandex válida.</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="106"/>
         <source>Invalid response received</source>
-        <translation>Recibida resposta inválida</translation>
+        <translation type="obsolete">Recibida resposta inválida</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="112"/>
         <source>Unknown error code ({0}) received.</source>
-        <translation>Código de erro desconhecido ({0}) recebido.</translation>
+        <translation type="obsolete">Código de erro desconhecido ({0}) recebido.</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="38"/>
+        <source>Yandex: Invalid API key.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="39"/>
+        <source>Yandex: API key has been blocked.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="40"/>
+        <source>Yandex: Daily limit for requests has been reached.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="41"/>
+        <source>Yandex: Daily limit for the volume of translated text reached.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="43"/>
+        <source>Yandex: Text size exceeds the maximum.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="44"/>
+        <source>Yandex: Text could not be translated.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="45"/>
+        <source>Yandex: The specified translation direction is not supported.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="86"/>
+        <source>Yandex: Only texts up to {0} characters are allowed.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="109"/>
+        <source>Yandex: Invalid response received</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="115"/>
+        <source>Yandex: Unknown error code ({0}) received.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="94"/>
+        <source>Yandex: A valid key is required.</source>
+        <translation type="unfinished"></translation>
     </message>
 </context>
 <context>
@@ -92152,417 +92297,417 @@
 <context>
     <name>pycodestyle</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="24"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="22"/>
         <source>indentation contains mixed spaces and tabs</source>
         <translation type="unfinished">indentação com espaços misturados com tabulações</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="27"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="25"/>
         <source>indentation is not a multiple of four</source>
         <translation type="unfinished">indentação não é multipla de quatro</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="30"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="28"/>
         <source>expected an indented block</source>
         <translation type="unfinished">esperado um bloque de indentação</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="33"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="31"/>
         <source>unexpected indentation</source>
         <translation type="unfinished">indentação inesperada</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="36"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="34"/>
         <source>indentation is not a multiple of four (comment)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="39"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="37"/>
         <source>expected an indented block (comment)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="42"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="40"/>
         <source>unexpected indentation (comment)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="48"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="46"/>
         <source>continuation line indentation is not a multiple of four</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="51"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="49"/>
         <source>continuation line missing indentation or outdented</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="54"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="52"/>
         <source>closing bracket does not match indentation of opening bracket&apos;s line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="58"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="56"/>
         <source>closing bracket does not match visual indentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="61"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="59"/>
         <source>continuation line with same indent as next logical line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="64"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="62"/>
         <source>continuation line over-indented for hanging indent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="67"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="65"/>
         <source>continuation line over-indented for visual indent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="70"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="68"/>
         <source>continuation line under-indented for visual indent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="73"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="71"/>
         <source>visually indented line with same indent as next logical line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="76"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="74"/>
         <source>continuation line unaligned for hanging indent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="79"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="77"/>
         <source>closing bracket is missing indentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="82"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="80"/>
         <source>indentation contains tabs</source>
         <translation type="unfinished">indentação com tabluações</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="85"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="83"/>
         <source>whitespace after &apos;{0}&apos;</source>
         <translation type="unfinished">espaço depois de &apos;{0}&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="94"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="92"/>
         <source>whitespace before &apos;{0}&apos;</source>
         <translation type="unfinished">espaço antes de &apos;{0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="97"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="95"/>
         <source>multiple spaces before operator</source>
         <translation type="unfinished">espaços múltiplos antes do operador</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="100"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="98"/>
         <source>multiple spaces after operator</source>
         <translation type="unfinished">espaços múltiplos depois do operador</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="103"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="101"/>
         <source>tab before operator</source>
         <translation type="unfinished">tabulação antes do operador</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="106"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="104"/>
         <source>tab after operator</source>
         <translation type="unfinished">tabulação depois do operador</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="109"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="107"/>
         <source>missing whitespace around operator</source>
         <translation type="unfinished">falta espaço à volta do operador</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="112"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="110"/>
         <source>missing whitespace around arithmetic operator</source>
         <translation type="unfinished">falta espaço à volta do operador aritmético</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="115"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="113"/>
         <source>missing whitespace around bitwise or shift operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="118"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="116"/>
         <source>missing whitespace around modulo operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="121"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="119"/>
         <source>missing whitespace after &apos;{0}&apos;</source>
         <translation type="unfinished">falta espaço depois de &apos;{0}&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="124"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="122"/>
         <source>multiple spaces after &apos;{0}&apos;</source>
         <translation type="unfinished">múltiplos espaços depois de &apos;{0}&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="127"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="125"/>
         <source>tab after &apos;{0}&apos;</source>
         <translation type="unfinished">tabulação depois de &apos;{0}&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="130"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="128"/>
         <source>unexpected spaces around keyword / parameter equals</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="136"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="134"/>
         <source>at least two spaces before inline comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="139"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="137"/>
         <source>inline comment should start with &apos;# &apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="142"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="140"/>
         <source>block comment should start with &apos;# &apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="145"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="143"/>
         <source>too many leading &apos;#&apos; for block comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="148"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="146"/>
         <source>multiple spaces after keyword</source>
         <translation type="unfinished">múltiplos espaços depois da palavra-chave</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="151"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="149"/>
         <source>multiple spaces before keyword</source>
         <translation type="unfinished">múltiplos espaços antes da palavra-chave</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="154"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="152"/>
         <source>tab after keyword</source>
         <translation type="unfinished">tabulação depois da palavra-chave</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="157"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="155"/>
         <source>tab before keyword</source>
         <translation type="unfinished">tabulação antes da palavra-chave</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="160"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="158"/>
         <source>missing whitespace after keyword</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="163"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="161"/>
         <source>trailing whitespace</source>
         <translation type="unfinished">espaço ao final</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="166"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="164"/>
         <source>no newline at end of file</source>
         <translation type="unfinished">não há linha nova no final do ficheiro</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="169"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="167"/>
         <source>blank line contains whitespace</source>
         <translation type="unfinished">esperada 1 linha vazia, encontradas 0</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="194"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="192"/>
         <source>too many blank lines ({0})</source>
         <translation type="unfinished">demasiadas linhas vazias ({0})</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="181"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="179"/>
         <source>blank lines found after function decorator</source>
         <translation type="unfinished">encontradas linhas vazias depois do decorador de função</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="197"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="195"/>
         <source>blank line at end of file</source>
         <translation type="unfinished">linha vazia no fim do ficheiro</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="200"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="198"/>
         <source>multiple imports on one line</source>
         <translation type="unfinished">múltiplos imports numa linha</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="203"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="201"/>
         <source>module level import not at top of file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="206"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="204"/>
         <source>line too long ({0} &gt; {1} characters)</source>
         <translation type="unfinished">linha demasiado comprida ({0} &gt; {1} caráteres)</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="209"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="207"/>
         <source>the backslash is redundant between brackets</source>
         <translation type="unfinished">barra invertida é redundante entre parêntesis</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="212"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="210"/>
         <source>line break before binary operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="221"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="219"/>
         <source>.has_key() is deprecated, use &apos;in&apos;</source>
         <translation type="unfinished">.has_key  está obsoleto, usar &apos;in&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="224"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="222"/>
         <source>deprecated form of raising exception</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="227"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="225"/>
         <source>&apos;&lt;&gt;&apos; is deprecated, use &apos;!=&apos;</source>
         <translation type="unfinished">&apos;&lt;&gt;&apos; está obsoleto, usar &apos;!=&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="230"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="228"/>
         <source>backticks are deprecated, use &apos;repr()&apos;</source>
         <translation type="unfinished">acentos graves estão obsoletos, usar &apos;repr()&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="239"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="237"/>
         <source>multiple statements on one line (colon)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="242"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="240"/>
         <source>multiple statements on one line (semicolon)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="245"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="243"/>
         <source>statement ends with a semicolon</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="248"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="246"/>
         <source>multiple statements on one line (def)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="254"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="252"/>
         <source>comparison to {0} should be {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="257"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="255"/>
         <source>test for membership should be &apos;not in&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="260"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="258"/>
         <source>test for object identity should be &apos;is not&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="263"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="261"/>
         <source>do not compare types, use &apos;isinstance()&apos;</source>
         <translation type="unfinished">não comparar tipos, usar &apos;isinstance()&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="269"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="267"/>
         <source>do not assign a lambda expression, use a def</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="272"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="270"/>
         <source>ambiguous variable name &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="275"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="273"/>
         <source>ambiguous class definition &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="278"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="276"/>
         <source>ambiguous function definition &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="281"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="279"/>
         <source>{0}: {1}</source>
         <translation type="unfinished">{0}: {1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="284"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="282"/>
         <source>{0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="266"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="264"/>
         <source>do not use bare except</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="184"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="182"/>
         <source>expected {0} blank lines after class or function definition, found {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="236"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="234"/>
         <source>&apos;async&apos; and &apos;await&apos; are reserved keywords starting with Python 3.7</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="133"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="131"/>
         <source>missing whitespace around parameter equals</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="175"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="173"/>
         <source>expected {0} blank lines, found {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="188"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="186"/>
         <source>expected {0} blank lines before a nested definition, found {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="215"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="213"/>
         <source>line break after binary operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="233"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="231"/>
         <source>invalid escape sequence &apos;\{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="191"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="189"/>
         <source>too many blank lines ({0}) before a nested definition, expected {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="178"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="176"/>
         <source>too many blank lines ({0}), expected {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="45"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="43"/>
         <source>over-indented</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="218"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="216"/>
         <source>doc line too long ({0} &gt; {1} characters)</source>
         <translation type="unfinished"></translation>
     </message>
--- a/eric6/i18n/eric6_ru.ts	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/i18n/eric6_ru.ts	Sun Oct 04 16:28:51 2020 +0200
@@ -1101,72 +1101,72 @@
 <context>
     <name>AnnotationsChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="808"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="806"/>
         <source>missing type annotation for function argument &apos;{0}&apos;</source>
         <translation>отсутствует аннотация типа для аргумента &apos;{0}&apos; функции</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="811"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="809"/>
         <source>missing type annotation for &apos;*{0}&apos;</source>
         <translation>отсутствует аннотация типа для &apos;*{0}&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="814"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="812"/>
         <source>missing type annotation for &apos;**{0}&apos;</source>
         <translation>отсутствует аннотация типа для &apos;**{0}&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="823"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="821"/>
         <source>missing return type annotation for public function</source>
         <translation>отсутствует аннотация типа возвращаемого значения для public функции</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="826"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="824"/>
         <source>missing return type annotation for protected function</source>
         <translation>отсутствует аннотация типа возвращаемого значения для protected функции</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="829"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="827"/>
         <source>missing return type annotation for private function</source>
         <translation>отсутствует аннотация типа возвращаемого значения для private функции</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="832"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="830"/>
         <source>missing return type annotation for special method</source>
         <translation>отсутствует аннотация типа возвращаемого значения для special метода</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="835"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="833"/>
         <source>missing return type annotation for staticmethod</source>
         <translation>отсутствует аннотация типа возвращаемого значения для static метода</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="838"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="836"/>
         <source>missing return type annotation for classmethod</source>
         <translation>отсутствует аннотация типа возвращаемого значения для class метода</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="850"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="848"/>
         <source>{0}: {1}</source>
         <translation>{0}: {1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="817"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="815"/>
         <source>missing type annotation for &apos;self&apos; in method</source>
         <translation>отсутствует аннотация типа для &apos;self&apos; метода</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="820"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="818"/>
         <source>missing type annotation for &apos;cls&apos; in classmethod</source>
         <translation>отсутствует аннотация типа для &apos;cls&apos; в class методе</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="842"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="840"/>
         <source>type annotation coverage of {0}% is too low</source>
         <translation>покрытие аннотациями типа слишком мало - {0}%</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="846"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="844"/>
         <source>type annotation is too complex ({0} &gt; {1})</source>
         <translation>слишком сложная аннотация типа - ({0}&gt; {1})</translation>
     </message>
@@ -3344,7 +3344,7 @@
 <context>
     <name>CodeStyleChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="1130"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="1128"/>
         <source>No message defined for code &apos;{0}&apos;.</source>
         <translation>Не определено сообщение для кода &apos;{0}&apos;.</translation>
     </message>
@@ -4060,142 +4060,142 @@
 <context>
     <name>CodeStyleFixer</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="858"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="856"/>
         <source>Triple single quotes converted to triple double quotes.</source>
         <translation>Утроенные одинарные кавычки заменены утроенными двойными.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="861"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="859"/>
         <source>Introductory quotes corrected to be {0}&quot;&quot;&quot;</source>
         <translation>Кавычки во введении исправлены на {0}&quot;&quot;&quot;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="864"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="862"/>
         <source>Single line docstring put on one line.</source>
         <translation>Одиночная строка документации располагается в одной строке.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="867"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="865"/>
         <source>Period added to summary line.</source>
         <translation>Добавлена точка в строке резюме.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="894"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="892"/>
         <source>Blank line before function/method docstring removed.</source>
         <translation>Удалена пустая строка перед строкой документации для function/method.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="873"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="871"/>
         <source>Blank line inserted before class docstring.</source>
         <translation>Добавлена пустая строка перед строкой документации для class.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="876"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="874"/>
         <source>Blank line inserted after class docstring.</source>
         <translation>Добавлена пустая строка после строки документации для class.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="879"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="877"/>
         <source>Blank line inserted after docstring summary.</source>
         <translation>Добавлена пустая строка после резюме строки документации.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="882"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="880"/>
         <source>Blank line inserted after last paragraph of docstring.</source>
         <translation>Добавлена пустая строка после последнего абзаца строки документации.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="885"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="883"/>
         <source>Leading quotes put on separate line.</source>
         <translation>Открывающие кавычки размещены на отдельной строке.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="888"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="886"/>
         <source>Trailing quotes put on separate line.</source>
         <translation>Закрывающие кавычки размещены на отдельной строке.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="891"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="889"/>
         <source>Blank line before class docstring removed.</source>
         <translation>Удалена пустая строка перед строкой документации для class.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="897"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="895"/>
         <source>Blank line after class docstring removed.</source>
         <translation>Удалена пустая строка после строки документации для class.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="900"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="898"/>
         <source>Blank line after function/method docstring removed.</source>
         <translation>Удалена пустая строка после строки документации для function/method.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="903"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="901"/>
         <source>Blank line after last paragraph removed.</source>
         <translation>Удалена пустая строка после последнего абзаца.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="906"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="904"/>
         <source>Tab converted to 4 spaces.</source>
         <translation>Символы табуляции заменяются на 4 пробела.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="909"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="907"/>
         <source>Indentation adjusted to be a multiple of four.</source>
         <translation>Величина отступа задана кратной четырём.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="912"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="910"/>
         <source>Indentation of continuation line corrected.</source>
         <translation>Исправлен размер отступа строки продолжения.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="915"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="913"/>
         <source>Indentation of closing bracket corrected.</source>
         <translation>Исправлен размер отступа закрывающей скобки.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="918"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="916"/>
         <source>Missing indentation of continuation line corrected.</source>
         <translation>Добавлен отступ к строке продолжения.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="921"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="919"/>
         <source>Closing bracket aligned to opening bracket.</source>
         <translation>Закрывающая скобка выровнена с открывающей.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="924"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="922"/>
         <source>Indentation level changed.</source>
         <translation>Изменен размер отступа.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="927"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="925"/>
         <source>Indentation level of hanging indentation changed.</source>
         <translation>Изменен размер отступа для висячих отступов.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="930"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="928"/>
         <source>Visual indentation corrected.</source>
         <translation>Исправленена величина визуального отступа.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="945"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="943"/>
         <source>Extraneous whitespace removed.</source>
         <translation>Посторонние пробельные символы удалены.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="942"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="940"/>
         <source>Missing whitespace added.</source>
         <translation>Добавлены недостающие пробельные символы.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="948"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="946"/>
         <source>Whitespace around comment sign corrected.</source>
         <translation>Пробельные символы вокруг символа комментария откорректированы.</translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="952"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="950"/>
         <source>%n blank line(s) inserted.</source>
         <translation>
             <numerusform>%n пустая строка вставлена.</numerusform>
@@ -4204,7 +4204,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="955"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="953"/>
         <source>%n superfluous lines removed</source>
         <translation>
             <numerusform>%n лишняя пустая строка удалена</numerusform>
@@ -4213,72 +4213,72 @@
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="959"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="957"/>
         <source>Superfluous blank lines removed.</source>
         <translation>Удалены лишние пустые строки.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="962"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="960"/>
         <source>Superfluous blank lines after function decorator removed.</source>
         <translation>Удалены лишние пустые строки после декоратора функции.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="965"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="963"/>
         <source>Imports were put on separate lines.</source>
         <translation>Операторы импорта помещены на отдельных строках.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="968"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="966"/>
         <source>Long lines have been shortened.</source>
         <translation>Укорочены длинные строки.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="971"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="969"/>
         <source>Redundant backslash in brackets removed.</source>
         <translation>Удалены излишние символы &apos;\&apos;.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="977"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="975"/>
         <source>Compound statement corrected.</source>
         <translation>Составная инструкция исправлена.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="980"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="978"/>
         <source>Comparison to None/True/False corrected.</source>
         <translation>Исправлено сравнение с None/True/False.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="983"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="981"/>
         <source>&apos;{0}&apos; argument added.</source>
         <translation>Добавлен &apos;{0}&apos; аргумент.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="986"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="984"/>
         <source>&apos;{0}&apos; argument removed.</source>
         <translation>Удалён &apos;{0}&apos; аргумент.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="989"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="987"/>
         <source>Whitespace stripped from end of line.</source>
         <translation>Завершающие пробельные символы обрезаны.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="992"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="990"/>
         <source>newline added to end of file.</source>
         <translation>символ новой строки добавлен в конец файла.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="995"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="993"/>
         <source>Superfluous trailing blank lines removed from end of file.</source>
         <translation>Удалены пустые строки в конце файла.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="998"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="996"/>
         <source>&apos;&lt;&gt;&apos; replaced by &apos;!=&apos;.</source>
         <translation>&apos;&lt;&gt;&apos; заменен на &apos;!=&apos;.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="1002"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="1000"/>
         <source>Could not save the file! Skipping it. Reason: {0}</source>
         <translation>Не удалось сохранить файл! Пропускаем. Причина: {0}</translation>
     </message>
@@ -4771,22 +4771,22 @@
 <context>
     <name>ComplexityChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="479"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="477"/>
         <source>&apos;{0}&apos; is too complex ({1})</source>
         <translation>&apos;{0}&apos; слишком сложно ({1})</translation>
     </message>
     <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="479"/>
+        <source>source code line is too complex ({0})</source>
+        <translation>строка исходного кода слишком сложная ({0})</translation>
+    </message>
+    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="481"/>
-        <source>source code line is too complex ({0})</source>
-        <translation>строка исходного кода слишком сложная ({0})</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="483"/>
         <source>overall source code line complexity is too high ({0})</source>
         <translation>слишком большая общая сложность исходного кода ({0})</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="486"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="484"/>
         <source>{0}: {1}</source>
         <translation>{0}: {1}</translation>
     </message>
@@ -8165,28 +8165,38 @@
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="73"/>
         <source>Text to be translated exceeds the translation limit of {0} characters.</source>
-        <translation>Текст, подлежащий переводу, превышает лимит перевода в {0} символов.</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="95"/>
-        <source>Invalid response received from DeepL</source>
-        <translation>От DeepL получен недопустимый ответ</translation>
+        <translation type="obsolete">Текст, подлежащий переводу, превышает лимит перевода в {0} символов.</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="98"/>
+        <source>Invalid response received from DeepL</source>
+        <translation>От DeepL получен недопустимый ответ</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="101"/>
         <source>DeepL call returned an unknown result</source>
         <translation>Вызов DeepL вернул неизвестный результат</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="102"/>
         <source>&lt;p&gt;No translation found&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Перевод не найден&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="79"/>
+        <translation type="obsolete">&lt;p&gt;Перевод не найден&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="82"/>
         <source>A valid DeepL Pro key is required.</source>
         <translation>Требуется действительный ключ DeepL Pro.</translation>
     </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="73"/>
+        <source>DeepL: Text to be translated exceeds the translation limit of {0} characters.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="105"/>
+        <source>&lt;p&gt;DeepL: No translation found&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>DeleteFilesConfirmationDialog</name>
@@ -8454,237 +8464,237 @@
 <context>
     <name>DocStyleChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="291"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="289"/>
         <source>module is missing a docstring</source>
         <translation>в модуле отсутствует строка документации</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="293"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="291"/>
         <source>public function/method is missing a docstring</source>
         <translation>для public function/method отсутствует строка документации</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="296"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="294"/>
         <source>private function/method may be missing a docstring</source>
         <translation>для private function/method возможно отсутствует строка документации</translation>
     </message>
     <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="297"/>
+        <source>public class is missing a docstring</source>
+        <translation>для public class отсутствует строка документации</translation>
+    </message>
+    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="299"/>
-        <source>public class is missing a docstring</source>
-        <translation>для public class отсутствует строка документации</translation>
+        <source>private class may be missing a docstring</source>
+        <translation>для private class возможно отсутствует строка документации</translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="301"/>
-        <source>private class may be missing a docstring</source>
-        <translation>для private class возможно отсутствует строка документации</translation>
+        <source>docstring not surrounded by &quot;&quot;&quot;</source>
+        <translation>строка документации не заключена в &quot;&quot;&quot;</translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="303"/>
-        <source>docstring not surrounded by &quot;&quot;&quot;</source>
-        <translation>строка документации не заключена в &quot;&quot;&quot;</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="305"/>
         <source>docstring containing \ not surrounded by r&quot;&quot;&quot;</source>
         <translation>строка документации содержит \ не заключеный в r&quot;&quot;&quot;</translation>
     </message>
     <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="306"/>
+        <source>one-liner docstring on multiple lines</source>
+        <translation>однострочная строка документации размещается на нескольких строках</translation>
+    </message>
+    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="308"/>
-        <source>one-liner docstring on multiple lines</source>
-        <translation>однострочная строка документации размещается на нескольких строках</translation>
+        <source>docstring has wrong indentation</source>
+        <translation>строка документации с неправильным отступом</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="357"/>
+        <source>docstring summary does not end with a period</source>
+        <translation>резюме строки документации не заканчивается точкой</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="314"/>
+        <source>docstring summary is not in imperative mood (Does instead of Do)</source>
+        <translation>резюме строки документации не в повелительном наклонении</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="318"/>
+        <source>docstring summary looks like a function&apos;s/method&apos;s signature</source>
+        <translation>резюме строки документации выглядит как описание функции</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="321"/>
+        <source>docstring does not mention the return value type</source>
+        <translation>строка документации не описывает тип возвращаемого значения</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="324"/>
+        <source>function/method docstring is separated by a blank line</source>
+        <translation>строка документации для function/method разделена пустыми строками</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="327"/>
+        <source>class docstring is not preceded by a blank line</source>
+        <translation>строка документации для class не предваряется пустой строкой</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="330"/>
+        <source>class docstring is not followed by a blank line</source>
+        <translation>строка документации для class не завершается пустой строкой</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="391"/>
+        <source>docstring summary is not followed by a blank line</source>
+        <translation>резюме строки документации не завершается пустой строкой</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="336"/>
+        <source>last paragraph of docstring is not followed by a blank line</source>
+        <translation>отсутствует пустая строка после последнего абзаца строки документации</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="344"/>
+        <source>private function/method is missing a docstring</source>
+        <translation>для private function/method отсутствует строка документации</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="347"/>
+        <source>private class is missing a docstring</source>
+        <translation>для private class отсутствует строка документации</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="351"/>
+        <source>leading quotes of docstring not on separate line</source>
+        <translation>открывающие кавычки строки документации размещены не в отдельной строке</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="354"/>
+        <source>trailing quotes of docstring not on separate line</source>
+        <translation>закрывающие кавычки строки документации размещены не в отдельной строке</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="361"/>
+        <source>docstring does not contain a @return line but function/method returns something</source>
+        <translation>строка документации не содержит строчки @return, но function/method что-то возвращает</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="365"/>
+        <source>docstring contains a @return line but function/method doesn&apos;t return anything</source>
+        <translation>строка документации содержит строчку @return, но function/method ничего не возвращает</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="369"/>
+        <source>docstring does not contain enough @param/@keyparam lines</source>
+        <translation>в строке документации недостаточно строк с @param/@keyparam</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="372"/>
+        <source>docstring contains too many @param/@keyparam lines</source>
+        <translation>в строке документации слишком много строк с @param/@keyparam</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="375"/>
+        <source>keyword only arguments must be documented with @keyparam lines</source>
+        <translation>только аргументы ключевого слова должны быть описаны с помощью строк @keyparam</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="378"/>
+        <source>order of @param/@keyparam lines does not match the function/method signature</source>
+        <translation>порядок следования строк @param/@keyparam не соответствует сигнатуре функции/метода</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="381"/>
+        <source>class docstring is preceded by a blank line</source>
+        <translation>строке документации class предшествует пустая строка</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="383"/>
+        <source>class docstring is followed by a blank line</source>
+        <translation>за строкой документации для class следует пустая строка</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="385"/>
+        <source>function/method docstring is preceded by a blank line</source>
+        <translation>строке документации для function/method предшествует пустая строка</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="388"/>
+        <source>function/method docstring is followed by a blank line</source>
+        <translation>за строкой документации для function/method следует пустая строка</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="394"/>
+        <source>last paragraph of docstring is followed by a blank line</source>
+        <translation>за последним абзацем строки документации следует пустая строка</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="397"/>
+        <source>docstring does not contain a @exception line but function/method raises an exception</source>
+        <translation>строка документации не содержит @exception, но function/method вызывает исключение</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="401"/>
+        <source>docstring contains a @exception line but function/method doesn&apos;t raise an exception</source>
+        <translation>строка документации содержит @exception, но function/method не вызывает исключение</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="424"/>
+        <source>{0}: {1}</source>
+        <translation>{0}: {1}</translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="310"/>
-        <source>docstring has wrong indentation</source>
-        <translation>строка документации с неправильным отступом</translation>
+        <source>docstring does not contain a summary</source>
+        <translation>строка документации не содержит резюме</translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="359"/>
-        <source>docstring summary does not end with a period</source>
-        <translation>резюме строки документации не заканчивается точкой</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="316"/>
-        <source>docstring summary is not in imperative mood (Does instead of Do)</source>
-        <translation>резюме строки документации не в повелительном наклонении</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="320"/>
-        <source>docstring summary looks like a function&apos;s/method&apos;s signature</source>
-        <translation>резюме строки документации выглядит как описание функции</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="323"/>
-        <source>docstring does not mention the return value type</source>
-        <translation>строка документации не описывает тип возвращаемого значения</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="326"/>
-        <source>function/method docstring is separated by a blank line</source>
-        <translation>строка документации для function/method разделена пустыми строками</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="329"/>
-        <source>class docstring is not preceded by a blank line</source>
-        <translation>строка документации для class не предваряется пустой строкой</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="332"/>
-        <source>class docstring is not followed by a blank line</source>
-        <translation>строка документации для class не завершается пустой строкой</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="393"/>
-        <source>docstring summary is not followed by a blank line</source>
-        <translation>резюме строки документации не завершается пустой строкой</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="338"/>
-        <source>last paragraph of docstring is not followed by a blank line</source>
-        <translation>отсутствует пустая строка после последнего абзаца строки документации</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="346"/>
-        <source>private function/method is missing a docstring</source>
-        <translation>для private function/method отсутствует строка документации</translation>
+        <source>docstring summary does not start with &apos;{0}&apos;</source>
+        <translation>резюме строки документации не начинается с &apos;{0}&apos;</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="405"/>
+        <source>raised exception &apos;{0}&apos; is not documented in docstring</source>
+        <translation>вызванное исключение &apos;{0}&apos; не документировано в строке документации</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="408"/>
+        <source>documented exception &apos;{0}&apos; is not raised</source>
+        <translation>документированное исключение &apos;{0}&apos; не вызвано</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="411"/>
+        <source>docstring does not contain a @signal line but class defines signals</source>
+        <translation>строка документации не содержит строку @signal но сигналы определяет класс</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="414"/>
+        <source>docstring contains a @signal line but class doesn&apos;t define signals</source>
+        <translation>строка документации содержит строку @signal но класс не определяет сигналы</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="417"/>
+        <source>defined signal &apos;{0}&apos; is not documented in docstring</source>
+        <translation>определенный сигнал &apos;{0}&apos; не документирован в строке документации</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="420"/>
+        <source>documented signal &apos;{0}&apos; is not defined</source>
+        <translation>документированный сигнал &apos;{0}&apos; не определен</translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="349"/>
-        <source>private class is missing a docstring</source>
-        <translation>для private class отсутствует строка документации</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="353"/>
-        <source>leading quotes of docstring not on separate line</source>
-        <translation>открывающие кавычки строки документации размещены не в отдельной строке</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="356"/>
-        <source>trailing quotes of docstring not on separate line</source>
-        <translation>закрывающие кавычки строки документации размещены не в отдельной строке</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="363"/>
-        <source>docstring does not contain a @return line but function/method returns something</source>
-        <translation>строка документации не содержит строчки @return, но function/method что-то возвращает</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="367"/>
-        <source>docstring contains a @return line but function/method doesn&apos;t return anything</source>
-        <translation>строка документации содержит строчку @return, но function/method ничего не возвращает</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="371"/>
-        <source>docstring does not contain enough @param/@keyparam lines</source>
-        <translation>в строке документации недостаточно строк с @param/@keyparam</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="374"/>
-        <source>docstring contains too many @param/@keyparam lines</source>
-        <translation>в строке документации слишком много строк с @param/@keyparam</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="377"/>
-        <source>keyword only arguments must be documented with @keyparam lines</source>
-        <translation>только аргументы ключевого слова должны быть описаны с помощью строк @keyparam</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="380"/>
-        <source>order of @param/@keyparam lines does not match the function/method signature</source>
-        <translation>порядок следования строк @param/@keyparam не соответствует сигнатуре функции/метода</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="383"/>
-        <source>class docstring is preceded by a blank line</source>
-        <translation>строке документации class предшествует пустая строка</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="385"/>
-        <source>class docstring is followed by a blank line</source>
-        <translation>за строкой документации для class следует пустая строка</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="387"/>
-        <source>function/method docstring is preceded by a blank line</source>
-        <translation>строке документации для function/method предшествует пустая строка</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="390"/>
-        <source>function/method docstring is followed by a blank line</source>
-        <translation>за строкой документации для function/method следует пустая строка</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="396"/>
-        <source>last paragraph of docstring is followed by a blank line</source>
-        <translation>за последним абзацем строки документации следует пустая строка</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="399"/>
-        <source>docstring does not contain a @exception line but function/method raises an exception</source>
-        <translation>строка документации не содержит @exception, но function/method вызывает исключение</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="403"/>
-        <source>docstring contains a @exception line but function/method doesn&apos;t raise an exception</source>
-        <translation>строка документации содержит @exception, но function/method не вызывает исключение</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="426"/>
-        <source>{0}: {1}</source>
-        <translation>{0}: {1}</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="312"/>
-        <source>docstring does not contain a summary</source>
-        <translation>строка документации не содержит резюме</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="361"/>
-        <source>docstring summary does not start with &apos;{0}&apos;</source>
-        <translation>резюме строки документации не начинается с &apos;{0}&apos;</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="407"/>
-        <source>raised exception &apos;{0}&apos; is not documented in docstring</source>
-        <translation>вызванное исключение &apos;{0}&apos; не документировано в строке документации</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="410"/>
-        <source>documented exception &apos;{0}&apos; is not raised</source>
-        <translation>документированное исключение &apos;{0}&apos; не вызвано</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="413"/>
-        <source>docstring does not contain a @signal line but class defines signals</source>
-        <translation>строка документации не содержит строку @signal но сигналы определяет класс</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="416"/>
-        <source>docstring contains a @signal line but class doesn&apos;t define signals</source>
-        <translation>строка документации содержит строку @signal но класс не определяет сигналы</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="419"/>
-        <source>defined signal &apos;{0}&apos; is not documented in docstring</source>
-        <translation>определенный сигнал &apos;{0}&apos; не документирован в строке документации</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="422"/>
-        <source>documented signal &apos;{0}&apos; is not defined</source>
-        <translation>документированный сигнал &apos;{0}&apos; не определен</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="351"/>
         <source>class docstring is still a default string</source>
         <translation>строка документации для class все же является строкой по умолчанию</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="344"/>
-        <source>function docstring is still a default string</source>
-        <translation>строка документации для function docstring все же является строкой по умолчанию</translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="342"/>
+        <source>function docstring is still a default string</source>
+        <translation>строка документации для function docstring все же является строкой по умолчанию</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="340"/>
         <source>module docstring is still a default string</source>
         <translation>строка документации для module все же является строкой по умолчанию</translation>
     </message>
@@ -11003,7 +11013,7 @@
         <translation>Снять выделение</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7835"/>
+        <location filename="../QScintilla/Editor.py" line="7834"/>
         <source>Check spelling...</source>
         <translation>Проверка орфографии...</translation>
     </message>
@@ -11228,7 +11238,7 @@
         <translation>Редактировать точку останова...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5605"/>
+        <location filename="../QScintilla/Editor.py" line="5604"/>
         <source>Enable breakpoint</source>
         <translation>Разрешить точку останова</translation>
     </message>
@@ -11393,267 +11403,267 @@
         <translation>&lt;p&gt;Файл &lt;b&gt;{0}&lt;/b&gt; уже существует. Переписать?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4767"/>
+        <location filename="../QScintilla/Editor.py" line="4766"/>
         <source>Autocompletion</source>
         <translation>Автодополнение</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4767"/>
+        <location filename="../QScintilla/Editor.py" line="4766"/>
         <source>Autocompletion is not available because there is no autocompletion source set.</source>
         <translation>Автодополнение недоступно, так как не задан источник автодополнения.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5608"/>
+        <location filename="../QScintilla/Editor.py" line="5607"/>
         <source>Disable breakpoint</source>
         <translation>Запретить точку останова</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5983"/>
+        <location filename="../QScintilla/Editor.py" line="5982"/>
         <source>Code Coverage</source>
         <translation>Покрытие кода</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5983"/>
+        <location filename="../QScintilla/Editor.py" line="5982"/>
         <source>Please select a coverage file</source>
         <translation>Пожалуйста, выберите файл покрытия</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6046"/>
+        <location filename="../QScintilla/Editor.py" line="6045"/>
         <source>Show Code Coverage Annotations</source>
         <translation>Показать аннотации по покрытию кода</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6039"/>
+        <location filename="../QScintilla/Editor.py" line="6038"/>
         <source>All lines have been covered.</source>
         <translation>Все строки были охвачены.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6046"/>
+        <location filename="../QScintilla/Editor.py" line="6045"/>
         <source>There is no coverage file available.</source>
         <translation>Нет доступного файла покрытия.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6163"/>
+        <location filename="../QScintilla/Editor.py" line="6162"/>
         <source>Profile Data</source>
         <translation>Данные профайлера</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6163"/>
+        <location filename="../QScintilla/Editor.py" line="6162"/>
         <source>Please select a profile file</source>
         <translation>Пожалуйста, выберите файл профиля</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6325"/>
+        <location filename="../QScintilla/Editor.py" line="6324"/>
         <source>Syntax Error</source>
         <translation>Синтаксическая ошибка</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6325"/>
+        <location filename="../QScintilla/Editor.py" line="6324"/>
         <source>No syntax error message available.</source>
         <translation>Нет сообщения о синтаксической ошибке.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6714"/>
+        <location filename="../QScintilla/Editor.py" line="6713"/>
         <source>Macro Name</source>
         <translation>Имя макроса</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6714"/>
+        <location filename="../QScintilla/Editor.py" line="6713"/>
         <source>Select a macro name:</source>
         <translation>Задайте имя макроса:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6742"/>
+        <location filename="../QScintilla/Editor.py" line="6741"/>
         <source>Load macro file</source>
         <translation>Загрузить макрос</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6785"/>
+        <location filename="../QScintilla/Editor.py" line="6784"/>
         <source>Macro files (*.macro)</source>
         <translation>Макросы (*.macro)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6765"/>
+        <location filename="../QScintilla/Editor.py" line="6764"/>
         <source>Error loading macro</source>
         <translation>Ошибка при загрузке макроса</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6756"/>
+        <location filename="../QScintilla/Editor.py" line="6755"/>
         <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Невозможно прочитать файл с макросами: &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6765"/>
+        <location filename="../QScintilla/Editor.py" line="6764"/>
         <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; is corrupt.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Файл с макросами &lt;b&gt;{0}&lt;/b&gt; повреждён.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6785"/>
+        <location filename="../QScintilla/Editor.py" line="6784"/>
         <source>Save macro file</source>
         <translation>Сохранить файл с макросами</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6802"/>
+        <location filename="../QScintilla/Editor.py" line="6801"/>
         <source>Save macro</source>
         <translation>Сохранить макрос</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6802"/>
+        <location filename="../QScintilla/Editor.py" line="6801"/>
         <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="6818"/>
+        <location filename="../QScintilla/Editor.py" line="6817"/>
         <source>Error saving macro</source>
         <translation>Ошибка при сохранении макроса</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6818"/>
+        <location filename="../QScintilla/Editor.py" line="6817"/>
         <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Невозможно сохранить файл с макросами: &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6831"/>
+        <location filename="../QScintilla/Editor.py" line="6830"/>
         <source>Start Macro Recording</source>
         <translation>Начать запись макроса</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6831"/>
+        <location filename="../QScintilla/Editor.py" line="6830"/>
         <source>Macro recording is already active. Start new?</source>
         <translation>Запись макроса уже идёт. Начать новую запись?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6857"/>
+        <location filename="../QScintilla/Editor.py" line="6856"/>
         <source>Macro Recording</source>
         <translation>Запись макроса</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6857"/>
+        <location filename="../QScintilla/Editor.py" line="6856"/>
         <source>Enter name of the macro:</source>
         <translation>Задайте имя макроса:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6997"/>
+        <location filename="../QScintilla/Editor.py" line="6996"/>
         <source>File changed</source>
         <translation>Файл изменен</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7167"/>
+        <location filename="../QScintilla/Editor.py" line="7166"/>
         <source>{0} (ro)</source>
         <translation>{0} (только чтение)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7308"/>
+        <location filename="../QScintilla/Editor.py" line="7307"/>
         <source>Drop Error</source>
         <translation>Ошибка Drag&amp;&amp;Drop</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7308"/>
+        <location filename="../QScintilla/Editor.py" line="7307"/>
         <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="7329"/>
+        <location filename="../QScintilla/Editor.py" line="7328"/>
         <source>Resources</source>
         <translation>Ресурсы</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7331"/>
+        <location filename="../QScintilla/Editor.py" line="7330"/>
         <source>Add file...</source>
         <translation>Добавить файл...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7333"/>
+        <location filename="../QScintilla/Editor.py" line="7332"/>
         <source>Add files...</source>
         <translation>Добавить файлы...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7335"/>
+        <location filename="../QScintilla/Editor.py" line="7334"/>
         <source>Add aliased file...</source>
         <translation>Добавить файл под другим именем...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7338"/>
+        <location filename="../QScintilla/Editor.py" line="7337"/>
         <source>Add localized resource...</source>
         <translation>Добавить локализованный ресурс...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7342"/>
+        <location filename="../QScintilla/Editor.py" line="7341"/>
         <source>Add resource frame</source>
         <translation>Добавить фрагмент ресурсов</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7361"/>
+        <location filename="../QScintilla/Editor.py" line="7360"/>
         <source>Add file resource</source>
         <translation>Добавить файл ресурсов</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7377"/>
+        <location filename="../QScintilla/Editor.py" line="7376"/>
         <source>Add file resources</source>
         <translation>Добавить файлы ресурсов</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7404"/>
+        <location filename="../QScintilla/Editor.py" line="7403"/>
         <source>Add aliased file resource</source>
         <translation>Добавить файл ресурсов под другим именем</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7404"/>
+        <location filename="../QScintilla/Editor.py" line="7403"/>
         <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
         <translation>Другое имя для файла &lt;b&gt;{0}&lt;/b&gt;:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7470"/>
+        <location filename="../QScintilla/Editor.py" line="7469"/>
         <source>Package Diagram</source>
         <translation>Диаграмма пакетов</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7470"/>
+        <location filename="../QScintilla/Editor.py" line="7469"/>
         <source>Include class attributes?</source>
         <translation>Включать атрибуты класса?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7492"/>
+        <location filename="../QScintilla/Editor.py" line="7491"/>
         <source>Imports Diagram</source>
         <translation>Диаграмма импортов</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7492"/>
+        <location filename="../QScintilla/Editor.py" line="7491"/>
         <source>Include imports from external modules?</source>
         <translation>Включать импорты из внешних модулей?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7506"/>
+        <location filename="../QScintilla/Editor.py" line="7505"/>
         <source>Application Diagram</source>
         <translation>Диаграмма приложения</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7506"/>
+        <location filename="../QScintilla/Editor.py" line="7505"/>
         <source>Include module names?</source>
         <translation>Включать имена модулей?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7838"/>
+        <location filename="../QScintilla/Editor.py" line="7837"/>
         <source>Add to dictionary</source>
         <translation>Добавить в словарь</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7840"/>
+        <location filename="../QScintilla/Editor.py" line="7839"/>
         <source>Ignore All</source>
         <translation>Игнорировать всё</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6602"/>
+        <location filename="../QScintilla/Editor.py" line="6601"/>
         <source>Warning: {0}</source>
         <translation>Предупреждение: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6609"/>
+        <location filename="../QScintilla/Editor.py" line="6608"/>
         <source>Error: {0}</source>
         <translation>Ошибка: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6993"/>
+        <location filename="../QScintilla/Editor.py" line="6992"/>
         <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>
@@ -11678,27 +11688,27 @@
         <translation>Предыдущее изменение</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8256"/>
+        <location filename="../QScintilla/Editor.py" line="8255"/>
         <source>Sort Lines</source>
         <translation>Сортировать строки</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8256"/>
+        <location filename="../QScintilla/Editor.py" line="8255"/>
         <source>The selection contains illegal data for a numerical sort.</source>
         <translation>Выборка содержит данные неподходящие для сортировки как числа.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6537"/>
+        <location filename="../QScintilla/Editor.py" line="6536"/>
         <source>Warning</source>
         <translation>Предупреждение</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6537"/>
+        <location filename="../QScintilla/Editor.py" line="6536"/>
         <source>No warning messages available.</source>
         <translation>Нет предупреждающего сообщения.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6599"/>
+        <location filename="../QScintilla/Editor.py" line="6598"/>
         <source>Style: {0}</source>
         <translation>Стиль: {0}</translation>
     </message>
@@ -11723,7 +11733,7 @@
         <translation>Открыть заново с кодировкой</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6987"/>
+        <location filename="../QScintilla/Editor.py" line="6986"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric6. Reread it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Файл &lt;b&gt;{0}&lt;/b&gt; был изменён, будучи открытым в eric6. Перепрочесть?&lt;/p&gt;</translation>
     </message>
@@ -11738,32 +11748,32 @@
         <translation>Дополнить</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4897"/>
+        <location filename="../QScintilla/Editor.py" line="4896"/>
         <source>Auto-Completion Provider</source>
         <translation>Источник автодополнений</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4897"/>
+        <location filename="../QScintilla/Editor.py" line="4896"/>
         <source>The completion list provider &apos;{0}&apos; was already registered. Ignoring duplicate request.</source>
         <translation>Список дополнений источника &apos;{0}&apos; уже зарегистрирован. Повторный запрос проигнорирован.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5176"/>
+        <location filename="../QScintilla/Editor.py" line="5175"/>
         <source>Call-Tips Provider</source>
         <translation>Источник всплывающих подсказок</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5176"/>
+        <location filename="../QScintilla/Editor.py" line="5175"/>
         <source>The call-tips provider &apos;{0}&apos; was already registered. Ignoring duplicate request.</source>
         <translation>Источник всплывающих подсказок &apos;{0}&apos; уже зарегистрирован. Повторный запрос проигнорирован.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8345"/>
+        <location filename="../QScintilla/Editor.py" line="8344"/>
         <source>Register Mouse Click Handler</source>
         <translation>Регистрация обработчика кликов мышки</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8345"/>
+        <location filename="../QScintilla/Editor.py" line="8344"/>
         <source>A mouse click handler for &quot;{0}&quot; was already registered by &quot;{1}&quot;. Aborting request by &quot;{2}&quot;...</source>
         <translation>Обработчик кликов мышки для &quot;{0}&quot; уже зарегистрирован &quot;{1}&quot;. Запрос прерван &quot;{2}&quot;...</translation>
     </message>
@@ -11793,12 +11803,12 @@
         <translation>Выполнить выбор в консоли</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8466"/>
+        <location filename="../QScintilla/Editor.py" line="8465"/>
         <source>EditorConfig Properties</source>
         <translation>Свойства EditorConfig</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8466"/>
+        <location filename="../QScintilla/Editor.py" line="8465"/>
         <source>&lt;p&gt;The EditorConfig properties for file &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Не удается загрузить свойства EditorConfig для файла &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
@@ -13569,27 +13579,27 @@
         <translation>Файлы стилей подсветки (*.e6h *.e4h)</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="681"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="685"/>
         <source>Delete Sub-Style</source>
         <translation>Удалить подстиль</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="681"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="685"/>
         <source>&lt;p&gt;Shall the sub-style &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Действительно ли подстиль &lt;b&gt;{0}&lt;/b&gt; должен быть удален?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="721"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="725"/>
         <source>{0} - Copy</source>
         <translation>{0} - Copy</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="749"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="753"/>
         <source>Reset Sub-Styles to Default</source>
         <translation>Сбросить подстили к значениям по умолчанию</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="749"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="753"/>
         <source>&lt;p&gt;Do you really want to reset all defined sub-styles of &lt;b&gt;{0}&lt;/b&gt; to the default values?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Вы действительно хотите сбросить все определенные подстили &lt;b&gt;{0}&lt;/b&gt; к значениям по умолчанию? &lt;/ p&gt;</translation>
     </message>
@@ -17145,7 +17155,7 @@
 <context>
     <name>EricdocPlugin</name>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="102"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="81"/>
         <source>Qt Help Tools</source>
         <translation>Утилиты Qt справки</translation>
     </message>
@@ -17155,22 +17165,22 @@
         <translation>Генератор документации eric6</translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="145"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="124"/>
         <source>Generate documentation (eric6_doc)</source>
         <translation>Создать документацию (eric6_doc)</translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="145"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="124"/>
         <source>Generate &amp;documentation (eric6_doc)</source>
         <translation>Создать &amp;документацию (eric6_doc)</translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="149"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="128"/>
         <source>Generate API documentation using eric6_doc</source>
         <translation>Создать документацию API с помощью eric6_doc</translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="151"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="130"/>
         <source>&lt;b&gt;Generate documentation&lt;/b&gt;&lt;p&gt;Generate API documentation using eric6_doc.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Создать документацию&lt;/b&gt;&lt;p&gt;Создать документацию API с помощью eric6_doc&lt;/p&gt;</translation>
     </message>
@@ -26048,27 +26058,27 @@
 <context>
     <name>Globals</name>
     <message>
-        <location filename="../Globals/__init__.py" line="452"/>
+        <location filename="../Globals/__init__.py" line="421"/>
         <source>{0:4.2f} Bytes</source>
         <translation>{0:4.2f} байтов</translation>
     </message>
     <message>
-        <location filename="../Globals/__init__.py" line="456"/>
+        <location filename="../Globals/__init__.py" line="425"/>
         <source>{0:4.2f} KiB</source>
         <translation>{0:4.2f} KiB</translation>
     </message>
     <message>
-        <location filename="../Globals/__init__.py" line="460"/>
+        <location filename="../Globals/__init__.py" line="429"/>
         <source>{0:4.2f} MiB</source>
         <translation>{0:4.2f} MiB</translation>
     </message>
     <message>
-        <location filename="../Globals/__init__.py" line="464"/>
+        <location filename="../Globals/__init__.py" line="433"/>
         <source>{0:4.2f} GiB</source>
         <translation>{0:4.2f} GiB</translation>
     </message>
     <message>
-        <location filename="../Globals/__init__.py" line="468"/>
+        <location filename="../Globals/__init__.py" line="437"/>
         <source>{0:4.2f} TiB</source>
         <translation>{0:4.2f} TiB</translation>
     </message>
@@ -26078,12 +26088,22 @@
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GlosbeEngine.py" line="85"/>
         <source>Invalid response received</source>
-        <translation>Получен недопустимый ответ</translation>
+        <translation type="obsolete">Получен недопустимый ответ</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GlosbeEngine.py" line="99"/>
         <source>No translation found.</source>
-        <translation>Перевод не найден.</translation>
+        <translation type="obsolete">Перевод не найден.</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GlosbeEngine.py" line="85"/>
+        <source>Glosbe: Invalid response received</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GlosbeEngine.py" line="99"/>
+        <source>Glosbe: No translation found.</source>
+        <translation type="unfinished"></translation>
     </message>
 </context>
 <context>
@@ -26091,17 +26111,32 @@
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV1Engine.py" line="165"/>
         <source>Only texts up to {0} characters are allowed.</source>
-        <translation>Разрешены фрагменты текста не длинее {0} символов.</translation>
+        <translation type="obsolete">Разрешены фрагменты текста не длинее {0} символов.</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV1Engine.py" line="98"/>
         <source>Invalid response received</source>
-        <translation>Получен недопустимый ответ</translation>
+        <translation type="obsolete">Получен недопустимый ответ</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV1Engine.py" line="135"/>
         <source>No translation found.</source>
-        <translation>Перевод не найден.</translation>
+        <translation type="obsolete">Перевод не найден.</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV1Engine.py" line="98"/>
+        <source>Google V1: Invalid response received</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV1Engine.py" line="135"/>
+        <source>Google V1: No translation found.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV1Engine.py" line="165"/>
+        <source>Google V1: Only texts up to {0} characters are allowed.</source>
+        <translation type="unfinished"></translation>
     </message>
 </context>
 <context>
@@ -26109,17 +26144,32 @@
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="72"/>
         <source>A valid Google Translate key is required.</source>
-        <translation>Требуется действительный ключ Google Translate.</translation>
+        <translation type="obsolete">Требуется действительный ключ Google Translate.</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="83"/>
         <source>Invalid response received</source>
-        <translation>Получен недопустимый ответ</translation>
+        <translation type="obsolete">Получен недопустимый ответ</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="89"/>
         <source>No translation available.</source>
-        <translation>Перевод отсутствует.</translation>
+        <translation type="obsolete">Перевод отсутствует.</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="72"/>
+        <source>Google V2: A valid Google Translate key is required.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="84"/>
+        <source>Google V2: Invalid response received</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="90"/>
+        <source>Google V2: No translation available.</source>
+        <translation type="unfinished"></translation>
     </message>
 </context>
 <context>
@@ -36130,22 +36180,22 @@
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="183"/>
         <source>A valid IBM Watson Language Translator key is required.</source>
-        <translation>Требуется действительный ключ переводчика IBM Watson Language Translator.</translation>
+        <translation type="obsolete">Требуется действительный ключ переводчика IBM Watson Language Translator.</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="192"/>
         <source>A valid IBM Watson Language Translator URL is required.</source>
-        <translation>Требуется действительный ключ переводчика IBM Watson Language Translator.</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="244"/>
+        <translation type="obsolete">Требуется действительный ключ переводчика IBM Watson Language Translator.</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="147"/>
         <source>Invalid response received</source>
-        <translation>Получен недопустимый ответ</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
+        <translation type="obsolete">Получен недопустимый ответ</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="150"/>
         <source>No translation available.</source>
-        <translation>Перевод отсутствует.</translation>
+        <translation type="obsolete">Перевод отсутствует.</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
@@ -36156,9 +36206,35 @@
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="232"/>
         <source>The server sent an error indication.
 Error: {0}</source>
-        <translation>Сервер отправил сообщение об ошибке.
+        <translation type="obsolete">Сервер отправил сообщение об ошибке.
 Ошибка: {0}</translation>
     </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
+        <source>IBM Watson: No translation available.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="183"/>
+        <source>IBM Watson: A valid Language Translator key is required.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="192"/>
+        <source>IBM Watson: A valid Language Translator URL is required.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="244"/>
+        <source>IBM Watson: Invalid response received</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="232"/>
+        <source>IBM Watson: The server sent an error indication.
+ Error: {0}</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>IconEditorGrid</name>
@@ -41892,610 +41968,615 @@
 <context>
     <name>Lexers</name>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="86"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="84"/>
         <source>Bash</source>
         <translation>Bash</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="86"/>
+        <source>Batch</source>
+        <translation>Batch</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="88"/>
-        <source>Batch</source>
-        <translation>Batch</translation>
+        <source>C/C++</source>
+        <translation>C/C++</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="90"/>
-        <source>C/C++</source>
-        <translation>C/C++</translation>
+        <source>C#</source>
+        <translation>C#</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="92"/>
-        <source>C#</source>
-        <translation>C#</translation>
+        <source>CMake</source>
+        <translation>CMake</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="94"/>
-        <source>CMake</source>
-        <translation>CMake</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="96"/>
         <source>CSS</source>
         <translation>CSS</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="98"/>
+        <source>D</source>
+        <translation>D</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="100"/>
-        <source>D</source>
-        <translation>D</translation>
+        <source>Diff</source>
+        <translation>Diff</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="102"/>
-        <source>Diff</source>
-        <translation>Diff</translation>
+        <source>Fortran</source>
+        <translation>Fortran</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="104"/>
-        <source>Fortran</source>
-        <translation>Fortran</translation>
+        <source>Fortran77</source>
+        <translation>Fortran77</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="106"/>
-        <source>Fortran77</source>
-        <translation>Fortran77</translation>
+        <source>HTML/PHP/XML</source>
+        <translation>HTML/PHP/XML</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="108"/>
-        <source>HTML/PHP/XML</source>
-        <translation>HTML/PHP/XML</translation>
+        <source>IDL</source>
+        <translation>IDL</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="110"/>
-        <source>IDL</source>
-        <translation>IDL</translation>
+        <source>Java</source>
+        <translation>Java</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="112"/>
-        <source>Java</source>
-        <translation>Java</translation>
+        <source>JavaScript</source>
+        <translation>JavaScript</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="114"/>
-        <source>JavaScript</source>
-        <translation>JavaScript</translation>
+        <source>Lua</source>
+        <translation>Lua</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="116"/>
-        <source>Lua</source>
-        <translation>Lua</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="118"/>
         <source>Makefile</source>
         <translation>Makefile</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="122"/>
+        <source>Pascal</source>
+        <translation>Pascal</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="124"/>
-        <source>Pascal</source>
-        <translation>Pascal</translation>
+        <source>Perl</source>
+        <translation>Perl</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="126"/>
-        <source>Perl</source>
-        <translation>Perl</translation>
+        <source>PostScript</source>
+        <translation>PostScript</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="128"/>
-        <source>PostScript</source>
-        <translation>PostScript</translation>
+        <source>Povray</source>
+        <translation>Povray</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="130"/>
-        <source>Povray</source>
-        <translation>Povray</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="132"/>
         <source>Properties</source>
         <translation>Properties</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="141"/>
+        <source>Ruby</source>
+        <translation>Ruby</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="143"/>
-        <source>Ruby</source>
-        <translation>Ruby</translation>
+        <source>SQL</source>
+        <translation>SQL</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="145"/>
-        <source>SQL</source>
-        <translation>SQL</translation>
+        <source>TCL</source>
+        <translation>TCL</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="147"/>
-        <source>TCL</source>
-        <translation>TCL</translation>
+        <source>TeX</source>
+        <translation>TeX</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="149"/>
-        <source>TeX</source>
-        <translation>TeX</translation>
+        <source>VHDL</source>
+        <translation>VHDL</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="151"/>
-        <source>VHDL</source>
-        <translation>VHDL</translation>
+        <source>XML</source>
+        <translation>XML</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="153"/>
-        <source>XML</source>
-        <translation>XML</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="155"/>
         <source>YAML</source>
         <translation>YAML</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="183"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="173"/>
         <source>Pygments</source>
         <translation>Pygments</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="575"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="562"/>
         <source>Quixote Template Files (*.ptl)</source>
         <translation>Файлы шаблонов Quixote (*.ptl)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="578"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="565"/>
         <source>Ruby Files (*.rb)</source>
         <translation>Файлы Ruby (*.rb)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="581"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="568"/>
         <source>IDL Files (*.idl)</source>
         <translation>Файлы IDL (*.idl)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="408"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="398"/>
         <source>C Files (*.h *.c)</source>
         <translation>Файлы C (*.h *.c)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="411"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="401"/>
         <source>C++ Files (*.h *.hpp *.hh *.cxx *.cpp *.cc)</source>
         <translation>Файлы C++ (*.h *.hpp *.hh *.cxx *.cpp *.cc)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="596"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="583"/>
         <source>C# Files (*.cs)</source>
         <translation>Файлы C# (*.cs)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="417"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="407"/>
         <source>HTML Files (*.html *.htm *.asp *.shtml)</source>
         <translation>Файлы HTML (*.html *.htm *.asp *.shtml)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="608"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="595"/>
         <source>CSS Files (*.css)</source>
         <translation>Файлы CSS (*.css)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="611"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="598"/>
         <source>QSS Files (*.qss)</source>
         <translation>Файлы QSS (*.qss)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="426"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="416"/>
         <source>PHP Files (*.php *.php3 *.php4 *.php5 *.phtml)</source>
         <translation>Файлы PHP (*.php *.php3 *.php4 *.php5 *.phtml)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="429"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="419"/>
         <source>XML Files (*.xml *.xsl *.xslt *.dtd *.svg *.xul *.xsd)</source>
         <translation>Файлы XML (*.xml *.xsl *.xslt *.dtd *.svg *.xul *.xsd)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="623"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="610"/>
         <source>Qt Resource Files (*.qrc)</source>
         <translation>Файлы Qt ресурсов (*.qrc)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="435"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="425"/>
         <source>D Files (*.d *.di)</source>
         <translation>Файлы D (*.d *.di)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="632"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="619"/>
         <source>Java Files (*.java)</source>
         <translation>Файлы Java (*.java)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="635"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="622"/>
         <source>JavaScript Files (*.js)</source>
         <translation>Файлы JavaScript (*.js)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="638"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="625"/>
         <source>SQL Files (*.sql)</source>
         <translation>Файлы SQL (*.sql)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="641"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="628"/>
         <source>Docbook Files (*.docbook)</source>
         <translation>Файлы Docbook (*.docbook)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="450"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="440"/>
         <source>Perl Files (*.pl *.pm *.ph)</source>
         <translation>Файлы Perl (*.pl *.pm *.ph)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="650"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="637"/>
         <source>Lua Files (*.lua)</source>
         <translation>Файлы Lua (*.lua)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="456"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="446"/>
         <source>Tex Files (*.tex *.sty *.aux *.toc *.idx)</source>
         <translation>Файлы TeX (*.tex *.sty *.aux *.toc *.idx)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="653"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="640"/>
         <source>Shell Files (*.sh)</source>
         <translation>Файлы Shell (*.sh)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="462"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="452"/>
         <source>Batch Files (*.bat *.cmd)</source>
         <translation>Файлы Batch (*.bat *.cmd)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="465"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="455"/>
         <source>Diff Files (*.diff *.patch)</source>
         <translation>Файлы Diff (*.diff *.patch)</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="458"/>
+        <source>Makefiles (*makefile Makefile *.mak)</source>
+        <translation>Файлы Makefiles (*makefile Makefile *.mak)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="461"/>
+        <source>Properties Files (*.properties *.ini *.inf *.reg *.cfg *.cnf *.rc)</source>
+        <translation>Файлы Properties (*.properties *.ini *.inf *.reg *.cfg *.cnf *.rc)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="664"/>
+        <source>Povray Files (*.pov)</source>
+        <translation>Файлы Povray (*.pov)</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="468"/>
-        <source>Makefiles (*makefile Makefile *.mak)</source>
-        <translation>Файлы Makefiles (*makefile Makefile *.mak)</translation>
+        <source>CMake Files (CMakeLists.txt *.cmake *.ctest)</source>
+        <translation>Файлы CMake (CMakeLists.txt *.cmake *.ctest)</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="471"/>
-        <source>Properties Files (*.properties *.ini *.inf *.reg *.cfg *.cnf *.rc)</source>
-        <translation>Файлы Properties (*.properties *.ini *.inf *.reg *.cfg *.cnf *.rc)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="677"/>
-        <source>Povray Files (*.pov)</source>
-        <translation>Файлы Povray (*.pov)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="478"/>
-        <source>CMake Files (CMakeLists.txt *.cmake *.ctest)</source>
-        <translation>Файлы CMake (CMakeLists.txt *.cmake *.ctest)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="481"/>
         <source>VHDL Files (*.vhd *.vhdl)</source>
         <translation>Файлы VHDL (*.vhd *.vhdl)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="484"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="474"/>
         <source>TCL/Tk Files (*.tcl *.tk)</source>
         <translation>Файлы TCL/Tk (*.tcl *.tk)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="487"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="477"/>
         <source>Fortran Files (*.f90 *.f95 *.f2k)</source>
         <translation>Файлы Fortran (*.f90 *.f95 *.f2k)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="490"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="480"/>
         <source>Fortran77 Files (*.f *.for)</source>
         <translation>Файлы Fortran77 (*.f *.for)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="493"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="483"/>
         <source>Pascal Files (*.dpr *.dpk *.pas *.dfm *.inc *.pp)</source>
         <translation>Файлы Pascal (*.dpr *.dpk *.pas *.dfm *.inc *.pp)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="704"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="691"/>
         <source>PostScript Files (*.ps)</source>
         <translation>Файлы PostScript (*.ps)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="499"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="489"/>
         <source>YAML Files (*.yaml *.yml)</source>
         <translation>Файлы YAML (*.yaml *.yml)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="746"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="730"/>
         <source>All Files (*)</source>
         <translation>Все файлы (*)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="560"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="547"/>
         <source>Python3 Files (*.py)</source>
         <translation>Файлы Python3 (*.py)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="563"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="550"/>
         <source>Python3 GUI Files (*.pyw)</source>
         <translation>Файлы GUI Python3 (*.pyw)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="587"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="574"/>
         <source>C Files (*.c)</source>
         <translation>Файлы C (*.c)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="590"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="577"/>
         <source>C++ Files (*.cpp)</source>
         <translation>Файлы C++ (*.cpp)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="593"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="580"/>
         <source>C++/C Header Files (*.h)</source>
         <translation>Файлы C++/C Header (*.h)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="599"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="586"/>
         <source>HTML Files (*.html)</source>
         <translation>Файлы HTML (*.html)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="602"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="589"/>
         <source>PHP Files (*.php)</source>
         <translation>Файлы PHP (*.php)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="605"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="592"/>
         <source>ASP Files (*.asp)</source>
         <translation>Файлы ASP (*.asp)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="614"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="601"/>
         <source>XML Files (*.xml)</source>
         <translation>Файлы XML (*.sql)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="617"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="604"/>
         <source>XSL Files (*.xsl)</source>
         <translation>Файлы XSL (*.xsl)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="620"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="607"/>
         <source>DTD Files (*.dtd)</source>
         <translation>Файлы DTD (*.dtd)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="626"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="613"/>
         <source>D Files (*.d)</source>
         <translation>Файлы D (*.d)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="629"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="616"/>
         <source>D Interface Files (*.di)</source>
         <translation>Файлы D интерфейса (*.di)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="644"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="631"/>
         <source>Perl Files (*.pl)</source>
         <translation>Файлы Perl (*.pl)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="647"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="634"/>
         <source>Perl Module Files (*.pm)</source>
         <translation>Файлы Perl-модулей (*.pm)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="656"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="643"/>
         <source>Batch Files (*.bat)</source>
         <translation>Файлы Batch (*.bat)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="659"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="646"/>
         <source>TeX Files (*.tex)</source>
         <translation>Файлы TeX (*.tex)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="662"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="649"/>
         <source>TeX Template Files (*.sty)</source>
         <translation>Файлы шаблонов TeX (*.sty)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="665"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="652"/>
         <source>Diff Files (*.diff)</source>
         <translation>Файлы Diff (*.diff)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="668"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="655"/>
         <source>Make Files (*.mak)</source>
         <translation>Файлы Make (*.mak)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="671"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="658"/>
         <source>Properties Files (*.ini)</source>
         <translation>Файлы предпочтений (*.ini)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="674"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="661"/>
         <source>Configuration Files (*.cfg)</source>
         <translation>Файлы конфигурации (*.cfg)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="680"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="667"/>
         <source>CMake Files (CMakeLists.txt)</source>
         <translation>Файлы CMake (CMakeLists.txt)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="683"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="670"/>
         <source>CMake Macro Files (*.cmake)</source>
         <translation>Файлы CMake macro (*.cmake)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="686"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="673"/>
         <source>VHDL Files (*.vhd)</source>
         <translation>Файлы VHDL (*.vhd)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="689"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="676"/>
         <source>TCL Files (*.tcl)</source>
         <translation>Файлы TCL (*.tcl)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="692"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="679"/>
         <source>Tk Files (*.tk)</source>
         <translation>Файлы Tk (*.tk)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="695"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="682"/>
         <source>Fortran Files (*.f95)</source>
         <translation>Файлы Fortran (*.f95)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="698"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="685"/>
         <source>Fortran77 Files (*.f)</source>
         <translation>Файлы Fortran77 (*.f)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="701"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="688"/>
         <source>Pascal Files (*.pas)</source>
         <translation>Файлы Pascal (*.pas)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="707"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="694"/>
         <source>YAML Files (*.yml)</source>
         <translation>Файлы YAML (*.yml)</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="135"/>
+        <source>Python3</source>
+        <translation>Python3</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="118"/>
+        <source>Matlab</source>
+        <translation>Matlab</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="120"/>
+        <source>Octave</source>
+        <translation>Octave</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="495"/>
+        <source>Matlab Files (*.m *.m.matlab)</source>
+        <translation>Файлы Matlab (*.m *.m.matlab)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="700"/>
+        <source>Matlab Files (*.m)</source>
+        <translation>Файлы Matlab (*.m)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="703"/>
+        <source>Octave Files (*.m.octave)</source>
+        <translation>Файлы Octave (*.m.octave)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="498"/>
+        <source>Octave Files (*.m *.m.octave)</source>
+        <translation>Файлы Octave (*.m *.m.octave)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="139"/>
+        <source>QSS</source>
+        <translation>QSS</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="155"/>
+        <source>Gettext</source>
+        <translation>Gettext</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="706"/>
+        <source>Gettext Files (*.po)</source>
+        <translation>Файлы Gettext (*.po)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="157"/>
+        <source>CoffeeScript</source>
+        <translation>CoffeeScript</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="709"/>
+        <source>CoffeeScript Files (*.coffee)</source>
+        <translation>Файлы CoffeeScript (*.coffee)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="159"/>
+        <source>JSON</source>
+        <translation>JSON</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="712"/>
+        <source>JSON Files (*.json)</source>
+        <translation>Файлы JSON (*.json)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="161"/>
+        <source>Markdown</source>
+        <translation>Markdown</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="715"/>
+        <source>Markdown Files (*.md)</source>
+        <translation>Файлы Markdown (*.md)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="132"/>
+        <source>Protocol (protobuf)</source>
+        <translation>Protocol (protobuf)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="571"/>
+        <source>Protocol Files (*.proto)</source>
+        <translation>Файлы Protocol (*.proto)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="96"/>
+        <source>Cython</source>
+        <translation>Cython</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="383"/>
+        <source>Cython Files (*.pyx *.pxd *.pxi)</source>
+        <translation>Файлы Cython (*.pyx *.pxd *.pxi)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="553"/>
+        <source>Cython Files (*.pyx)</source>
+        <translation>Файлы Cython (*.pyx)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="556"/>
+        <source>Cython Declaration Files (*.pxd)</source>
+        <translation>Файлы Cython Declaration (*.pxd)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="559"/>
+        <source>Cython Include Files (*.pxi)</source>
+        <translation>Файлы Cython Include (*.pxi)</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="137"/>
-        <source>Python3</source>
-        <translation>Python3</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="120"/>
-        <source>Matlab</source>
-        <translation>Matlab</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="122"/>
-        <source>Octave</source>
-        <translation>Octave</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="502"/>
-        <source>Matlab Files (*.m *.m.matlab)</source>
-        <translation>Файлы Matlab (*.m *.m.matlab)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="710"/>
-        <source>Matlab Files (*.m)</source>
-        <translation>Файлы Matlab (*.m)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="713"/>
-        <source>Octave Files (*.m.octave)</source>
-        <translation>Файлы Octave (*.m.octave)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="505"/>
-        <source>Octave Files (*.m *.m.octave)</source>
-        <translation>Файлы Octave (*.m *.m.octave)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="141"/>
-        <source>QSS</source>
-        <translation>QSS</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="157"/>
-        <source>Gettext</source>
-        <translation>Gettext</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="716"/>
-        <source>Gettext Files (*.po)</source>
-        <translation>Файлы Gettext (*.po)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="159"/>
-        <source>CoffeeScript</source>
-        <translation>CoffeeScript</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="719"/>
-        <source>CoffeeScript Files (*.coffee)</source>
-        <translation>Файлы CoffeeScript (*.coffee)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="165"/>
-        <source>JSON</source>
-        <translation>JSON</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="725"/>
-        <source>JSON Files (*.json)</source>
-        <translation>Файлы JSON (*.json)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="170"/>
-        <source>Markdown</source>
-        <translation>Markdown</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="730"/>
-        <source>Markdown Files (*.md)</source>
-        <translation>Файлы Markdown (*.md)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="134"/>
-        <source>Protocol (protobuf)</source>
-        <translation>Protocol (protobuf)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="584"/>
-        <source>Protocol Files (*.proto)</source>
-        <translation>Файлы Protocol (*.proto)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="98"/>
-        <source>Cython</source>
-        <translation>Cython</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="393"/>
-        <source>Cython Files (*.pyx *.pxd *.pxi)</source>
-        <translation>Файлы Cython (*.pyx *.pxd *.pxi)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="566"/>
-        <source>Cython Files (*.pyx)</source>
-        <translation>Файлы Cython (*.pyx)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="569"/>
-        <source>Cython Declaration Files (*.pxd)</source>
-        <translation>Файлы Cython Declaration (*.pxd)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="572"/>
-        <source>Cython Include Files (*.pxi)</source>
-        <translation>Файлы Cython Include (*.pxi)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="139"/>
         <source>MicroPython</source>
         <translation>MicroPython</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="387"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="377"/>
         <source>Python Files (*.py *.py3)</source>
         <translation>Файлы Python (*.py *.py3)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="390"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="380"/>
         <source>Python GUI Files (*.pyw *.pyw3)</source>
         <translation>Файлы GUI Python3 (*.pyw *.pyw3)</translation>
     </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="697"/>
+        <source>TOML Files (*.toml)</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>LfConvertDataDialog</name>
@@ -44519,24 +44600,39 @@
 <context>
     <name>MicrosoftEngine</name>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="187"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="190"/>
         <source>You have not registered for the Microsoft Translation service.</source>
         <translation>Вы не зарегистрированы в службе переводов Microsoft Translation.</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="193"/>
         <source>No valid access token available.</source>
-        <translation>Нет достоверного маркера доступа.</translation>
+        <translation type="obsolete">Нет достоверного маркера доступа.</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="170"/>
         <source>No translation available.</source>
-        <translation>Перевод отсутствует.</translation>
+        <translation type="obsolete">Перевод отсутствует.</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="205"/>
         <source>No Text-to-Speech for the selected language available.</source>
-        <translation>Функция Text-to-Speech для выбранного языка недоступна (преобразование текста в речь).</translation>
+        <translation type="obsolete">Функция Text-to-Speech для выбранного языка недоступна (преобразование текста в речь).</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="196"/>
+        <source>MS Translator: No valid access token available.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="173"/>
+        <source>MS Translator: No translation available.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="211"/>
+        <source>MS Translator: No Text-to-Speech for the selected language available.</source>
+        <translation type="unfinished"></translation>
     </message>
 </context>
 <context>
@@ -44947,238 +45043,238 @@
 &lt;p&gt;Удаление всего текста из текущего редактора.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2176"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2175"/>
         <source>About</source>
         <translation>О программе</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2176"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2175"/>
         <source>&amp;About</source>
         <translation>&amp;О программе</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2180"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2179"/>
         <source>Display information about this software</source>
         <translation>Информация о программе</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2182"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2181"/>
         <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="2188"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2187"/>
         <source>About Qt</source>
         <translation>О Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2188"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2187"/>
         <source>About &amp;Qt</source>
         <translation>О &amp;Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2192"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2191"/>
         <source>Display information about the Qt toolkit</source>
         <translation>Информация о наборе инструментов Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2194"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2193"/>
         <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="2201"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2200"/>
         <source>What&apos;s This?</source>
         <translation>Что это?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2201"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2200"/>
         <source>&amp;What&apos;s This?</source>
         <translation>&amp;Что это?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2201"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2200"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation>Shift+F1</translation>
     </message>
     <message>
+        <location filename="../QScintilla/MiniEditor.py" line="2206"/>
+        <source>Context sensitive help</source>
+        <translation>Контекстнозависимая справка</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/MiniEditor.py" line="2207"/>
-        <source>Context sensitive help</source>
-        <translation>Контекстнозависимая справка</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2208"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Показ контекстнозависимой справки&lt;/b&gt;&lt;p&gt;В режиме &quot;What&apos;s This?&quot;(Что это?)курсор мыши отображается как стрелка со знаком вопроса, и вы можете, кликнув по элементу интерфейса, получить краткое описание того, что он делает и как его использовать. В диалоговом окне эта функция может быть вызвана кнопкой контекстной справки в панели заголовка.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2224"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2223"/>
         <source>&amp;File</source>
         <translation>&amp;Файл</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2236"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2235"/>
         <source>&amp;Edit</source>
         <translation>&amp;Правка</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2256"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2255"/>
         <source>&amp;Help</source>
         <translation>&amp;Справка</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2268"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2267"/>
         <source>File</source>
         <translation>Файл</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2281"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2280"/>
         <source>Edit</source>
         <translation>Редактировать</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2291"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2290"/>
         <source>Find</source>
         <translation>Найти</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2298"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2297"/>
         <source>Help</source>
         <translation>Справка</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2311"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2310"/>
         <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;В этой части строки состояния отображается режим ro/rw файла, открытого в редакторе.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2318"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2317"/>
         <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="2325"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2324"/>
         <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="2330"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2329"/>
         <source>Ready</source>
         <translation>Готово</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2357"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2356"/>
         <source>The document has unsaved changes.</source>
         <translation>Изменения в текущем документе не сохранены.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2386"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2385"/>
         <source>Open File</source>
         <translation>Открыть файл</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2386"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2385"/>
         <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="2415"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2414"/>
         <source>File loaded</source>
         <translation>Файл загружен</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2496"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2495"/>
         <source>Save File</source>
         <translation>Сохранить файл</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2496"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2495"/>
         <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="2504"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2503"/>
         <source>File saved</source>
         <translation>Файл сохранён</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2851"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2849"/>
         <source>Untitled</source>
         <translation>Без имени</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2533"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2532"/>
         <source>{0}[*] - {1}</source>
         <translation>{0}[*] - {1}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2533"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2532"/>
         <source>Mini Editor</source>
         <translation>Миниредактор</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2814"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2812"/>
         <source>Printing...</source>
         <translation>Печать...</translation>
     </message>
     <message>
+        <location filename="../QScintilla/MiniEditor.py" line="2830"/>
+        <source>Printing completed</source>
+        <translation>Печать завершена</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/MiniEditor.py" line="2832"/>
-        <source>Printing completed</source>
-        <translation>Печать завершена</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2834"/>
         <source>Error while printing</source>
         <translation>Ошибка печати</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2837"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2835"/>
         <source>Printing aborted</source>
         <translation>Печать прервана</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2892"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2890"/>
         <source>Select all</source>
         <translation>Выбрать всё</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2893"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2891"/>
         <source>Deselect all</source>
         <translation>Снять выделение</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2907"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2905"/>
         <source>Languages</source>
         <translation>Языки</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2910"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2908"/>
         <source>No Language</source>
         <translation>Нет языка</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2934"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2932"/>
         <source>Guessed</source>
         <translation>Предполагаемый язык</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2956"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2954"/>
         <source>Alternatives</source>
         <translation>Альтернативная подсветка</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2952"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2950"/>
         <source>Alternatives ({0})</source>
         <translation>Альтернативы ({0})</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2972"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2970"/>
         <source>Pygments Lexer</source>
         <translation>Лексер Pygments</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2972"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2970"/>
         <source>Select the Pygments lexer to apply.</source>
         <translation>Выберите для использования лексер Pygments.</translation>
     </message>
@@ -45193,7 +45289,7 @@
         <translation>Eric6 миниредактор — это компонент, основанный на QScintilla. Его можно использовать для простых задач редактирования, не требующих полномасштабного редактора.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2357"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2356"/>
         <source>eric6 Mini Editor</source>
         <translation>Eric6 миниредактор</translation>
     </message>
@@ -45218,17 +45314,17 @@
         <translation>&lt;b&gt;Сохранить копию&lt;/b&gt;&lt;p&gt;Сохранение контента текущего окна редактора. Имя файла может быть введено в диалоге выбора файла.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3490"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3488"/>
         <source>EditorConfig Properties</source>
         <translation>Свойства EditorConfig</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3490"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3488"/>
         <source>&lt;p&gt;The EditorConfig properties for file &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Не удается загрузить свойства EditorConfig для файла &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2516"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2515"/>
         <source>[*] - {0}</source>
         <translation>[*] - {0}</translation>
     </message>
@@ -45236,469 +45332,469 @@
 <context>
     <name>MiscellaneousChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="492"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="490"/>
         <source>coding magic comment not found</source>
         <translation>кодирование magic компонентов не найдено</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="495"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="493"/>
         <source>unknown encoding ({0}) found in coding magic comment</source>
         <translation>неизвестный код ({0}) обнаружен в коде magic комментариев</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="498"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="496"/>
         <source>copyright notice not present</source>
         <translation>уведомление об авторских правах не предоставлено</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="501"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="499"/>
         <source>copyright notice contains invalid author</source>
         <translation>уведомление об авторских правах содержит недействительного автора</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="702"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="700"/>
         <source>found {0} formatter</source>
         <translation>найден {0} форматтер</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="705"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="703"/>
         <source>format string does contain unindexed parameters</source>
         <translation>строка формата действительно содержит неиндексированные параметры</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="708"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="706"/>
         <source>docstring does contain unindexed parameters</source>
         <translation>строка документации действительно содержит неиндексированные параметры</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="711"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="709"/>
         <source>other string does contain unindexed parameters</source>
         <translation>другая строка действительно содержит неиндексированные параметры</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="714"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="712"/>
         <source>format call uses too large index ({0})</source>
         <translation>формат вызова использует слишком большой индекс ({0})</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="717"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="715"/>
         <source>format call uses missing keyword ({0})</source>
         <translation>формат вызова использует отсутствующее ключевое слово ({0})</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="720"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="718"/>
         <source>format call uses keyword arguments but no named entries</source>
         <translation>формат вызова использует ключевые аргументы, но нет именованных записей</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="723"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="721"/>
         <source>format call uses variable arguments but no numbered entries</source>
         <translation>формат ячейки использует переменные аргументы, но нет пронумерованных записей</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="726"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="724"/>
         <source>format call uses implicit and explicit indexes together</source>
         <translation>формат вызова использует скрытые и явные индексы вместе</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="729"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="727"/>
         <source>format call provides unused index ({0})</source>
         <translation>формат вызова предоставляет неиспользованный индекс ({0})</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="732"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="730"/>
         <source>format call provides unused keyword ({0})</source>
         <translation>формат вызова предоставляет неиспользуемое ключевое слово ({0})</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="751"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="749"/>
         <source>expected these __future__ imports: {0}; but only got: {1}</source>
         <translation>ожидался __future__ imports: {0}; получены только: {1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="754"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="752"/>
         <source>expected these __future__ imports: {0}; but got none</source>
         <translation>ожидался __future__ imports: {0}; не получено ничего</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="761"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="759"/>
         <source>print statement found</source>
         <translation>обнаружена инструкция печати</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="764"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="762"/>
         <source>one element tuple found</source>
         <translation>один элемент кортежа найден</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="800"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="798"/>
         <source>{0}: {1}</source>
         <translation>{0}: {1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="504"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="502"/>
         <source>&quot;{0}&quot; is a Python builtin and is being shadowed; consider renaming the variable</source>
         <translation>&quot;{0}&quot; является встроенным именем Python и затеняется; рассмотрите возможность переименования переменной</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="508"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="506"/>
         <source>&quot;{0}&quot; is used as an argument and thus shadows a Python builtin; consider renaming the argument</source>
         <translation>&quot;{0}&quot; используется как аргумент и таким образом затеняет встроенные имена Python; рассмотрите возможность переименования аргумента</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="512"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="510"/>
         <source>unnecessary generator - rewrite as a list comprehension</source>
         <translation>неподходящий генератор - перепишите как списк выражений</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="515"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="513"/>
         <source>unnecessary generator - rewrite as a set comprehension</source>
         <translation>неподходящий генератор - перепишите как набор выражений</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="518"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="516"/>
         <source>unnecessary generator - rewrite as a dict comprehension</source>
         <translation>неподходящий генератор - перепишите как словарь выражений</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="521"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="519"/>
         <source>unnecessary list comprehension - rewrite as a set comprehension</source>
         <translation>неподходящий список выражений - перепишите как набор выражений</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="524"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="522"/>
         <source>unnecessary list comprehension - rewrite as a dict comprehension</source>
         <translation>неподходящий список выражений - перепишите как словарь выражений</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="530"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="528"/>
         <source>unnecessary list comprehension - &quot;{0}&quot; can take a generator</source>
         <translation>неподходящий список выражений - &quot;{0}&quot; может являться генератором</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="770"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="768"/>
         <source>mutable default argument of type {0}</source>
         <translation>изменяемый аргумент по умолчанию типа {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="555"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="553"/>
         <source>sort keys - &apos;{0}&apos; should be before &apos;{1}&apos;</source>
         <translation>ключи сортировки - &apos;{0}&apos; должны быть прежде чем &apos;{1}&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="738"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="736"/>
         <source>logging statement uses &apos;%&apos;</source>
         <translation>инструкция ведения журнала использует &apos;%&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="744"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="742"/>
         <source>logging statement uses f-string</source>
         <translation>инструкция ведения журнала использует f-string</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="747"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="745"/>
         <source>logging statement uses &apos;warn&apos; instead of &apos;warning&apos;</source>
         <translation>инструкция ведения журнала использует &apos;warn&apos; вместо &apos;warning&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="735"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="733"/>
         <source>logging statement uses string.format()</source>
         <translation>инструкция ведения журнала использует string.format()</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="741"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="739"/>
         <source>logging statement uses &apos;+&apos;</source>
         <translation>инструкция ведения журнала использует &apos;+&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="757"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="755"/>
         <source>gettext import with alias _ found: {0}</source>
         <translation>gettext import with alias _ found: {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="648"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="646"/>
         <source>Python does not support the unary prefix increment</source>
         <translation>Python не поддерживает инкремент унарного префикса</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="657"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="655"/>
         <source>&apos;sys.maxint&apos; is not defined in Python 3 - use &apos;sys.maxsize&apos;</source>
         <translation>&apos;sys.maxint&apos; не определен в Python 3 - используйте &apos;sys.maxsize&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="660"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="658"/>
         <source>&apos;BaseException.message&apos; has been deprecated as of Python 2.6 and is removed in Python 3 - use &apos;str(e)&apos;</source>
         <translation>&apos;BaseException.message&apos; устарел в Python 2.6 и удален в Python 3 - используйте &apos;str(e)&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="664"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="662"/>
         <source>assigning to &apos;os.environ&apos; does not clear the environment - use &apos;os.environ.clear()&apos;</source>
         <translation>назначение &apos;os.environ&apos; не очищает среду окружения - используйте &apos;os.environ.clear()&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="688"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="686"/>
         <source>Python 3 does not include &apos;.iter*&apos; methods on dictionaries</source>
         <translation>Python 3 не включает методы &apos;.iter*&apos; в словарях</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="691"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="689"/>
         <source>Python 3 does not include &apos;.view*&apos; methods on dictionaries</source>
         <translation>Python 3 не включает методы &apos;.view*&apos; в словарях</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="694"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="692"/>
         <source>&apos;.next()&apos; does not exist in Python 3</source>
         <translation>&apos;.next()&apos; не существует в Python 3</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="697"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="695"/>
         <source>&apos;__metaclass__&apos; does nothing on Python 3 - use &apos;class MyClass(BaseClass, metaclass=...)&apos;</source>
         <translation>&apos;__metaclass__&apos; не работает в Python 3 - используйте &apos;class MyClass(BaseClass, metaclass=...)&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="773"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="771"/>
         <source>mutable default argument of function call &apos;{0}&apos;</source>
         <translation>измененный аргумент по умолчанию для вызова функции &apos;{0}&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="651"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="649"/>
         <source>using .strip() with multi-character strings is misleading</source>
         <translation>использование .strip() с многосимвольными строками приводит к заблуждению</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="678"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="676"/>
         <source>using &apos;hasattr(x, &quot;__call__&quot;)&apos; to test if &apos;x&apos; is callable is unreliable</source>
         <translation>использование &apos;hasattr(x, &quot;__call__&quot;)&apos; для проверки является ли &apos;x&apos; вызываемым - ненадежно</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="668"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="666"/>
         <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/translations.py" line="776"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="774"/>
         <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/translations.py" line="780"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="778"/>
         <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/translations.py" line="784"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="782"/>
         <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/translations.py" line="788"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="786"/>
         <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/translations.py" line="654"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="652"/>
         <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/translations.py" line="672"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="670"/>
         <source>unncessary f-string</source>
         <translation>ненужная f-string</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="675"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="673"/>
         <source>cannot use &apos;self.__class__&apos; as first argument of &apos;super()&apos; call</source>
         <translation>не используйте &apos;self .__ class__&apos; в качестве первого аргумента вызова &apos;super ()&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="682"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="680"/>
         <source>do not call getattr with a constant attribute value</source>
         <translation>не используйте вызовы getattr с постоянным значением атрибута</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="685"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="683"/>
         <source>do not call setattr with a constant attribute value</source>
         <translation>не используйте вызовы setattr с постоянным значением атрибута</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="796"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="794"/>
         <source>commented code lines should be removed</source>
         <translation>закомментированные строки кода должны быть удалены</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="792"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="790"/>
         <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/translations.py" line="559"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="557"/>
         <source>use of &apos;datetime.datetime()&apos; without &apos;tzinfo&apos; argument should be avoided</source>
         <translation>следует избегать использования &apos;datetime.datetime()&apos; без аргумента &apos;tzinfo&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="563"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="561"/>
         <source>use of &apos;datetime.datetime.today()&apos; should be avoided.
 Use &apos;datetime.datetime.now(tz=)&apos; instead.</source>
         <translation>следует избегать использования &apos;datetime.datetime.today()&apos;.
 Взамен используйте &apos;datetime.datetime.now(tz=)&apos;.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="567"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="565"/>
         <source>use of &apos;datetime.datetime.utcnow()&apos; should be avoided.
 Use &apos;datetime.datetime.now(tz=)&apos; instead.</source>
         <translation>следует избегать использования &apos;datetime.datetime.utcnow()&apos;.
 Взамен используйте &apos;datetime.datetime.now(tz=)&apos;.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="571"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="569"/>
         <source>use of &apos;datetime.datetime.utcfromtimestamp()&apos; should be avoided.
 Use &apos;datetime.datetime.fromtimestamp(, tz=)&apos; instead.</source>
         <translation>следует избегать использования &apos;datetime.datetime.utcfromtimestamp()&apos;.
 Взамен используйте &apos;datetime.datetime.fromtimestamp(, tz=)&apos;.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="575"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="573"/>
         <source>use of &apos;datetime.datetime.now()&apos; without &apos;tz&apos; argument should be avoided</source>
         <translation>следует избегать использования &apos;datetime.datetime.now()&apos; без аргумента &apos;tz&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="579"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="577"/>
         <source>use of &apos;datetime.datetime.fromtimestamp()&apos; without &apos;tz&apos; argument should be avoided</source>
         <translation>следует избегать использования &apos;datetime.datetime.fromtimestamp()&apos; без аргумента &apos;tz&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="583"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="581"/>
         <source>use of &apos;datetime.datetime.strptime()&apos; should be followed by &apos;.replace(tzinfo=)&apos;</source>
         <translation>применение &apos;datetime.datetime.strptime()&apos; должно сопровождаться &apos;.replace(tzinfo=)&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="590"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="588"/>
         <source>use of &apos;datetime.date()&apos; should be avoided.
 Use &apos;datetime.datetime(, tzinfo=).date()&apos; instead.</source>
         <translation>следует избегать использования &apos;datetime.date()&apos;.
 Взамен используйте &apos;datetime.datetime(, tzinfo=).date()&apos;.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="594"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="592"/>
         <source>use of &apos;datetime.date.today()&apos; should be avoided.
 Use &apos;datetime.datetime.now(tz=).date()&apos; instead.</source>
         <translation>следует избегать использования &apos;datetime.date.today()&apos;.
 Взамен используйте &apos;datetime.datetime.now(tz=).date()&apos;.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="598"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="596"/>
         <source>use of &apos;datetime.date.fromtimestamp()&apos; should be avoided.
 Use &apos;datetime.datetime.fromtimestamp(tz=).date()&apos; instead.</source>
         <translation>следует избегать использования &apos;datetime.date.fromtimestamp()&apos;.
 Взамен используйте &apos;datetime.datetime.fromtimestamp(tz=).date()&apos;.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="608"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="606"/>
         <source>use of &apos;datetime.time()&apos; without &apos;tzinfo&apos; argument should be avoided</source>
         <translation>следует избегать использования &apos;datetime.time()&apos; без аргумента &apos;tzinfo&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="587"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="585"/>
         <source>use of &apos;datetime.datetime.fromordinal()&apos; should be avoided</source>
         <translation>следует избегать использования &apos;datetime.datetime.fromordinal()&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="602"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="600"/>
         <source>use of &apos;datetime.date.fromordinal()&apos; should be avoided</source>
         <translation>следует избегать использования &apos;datetime.date.fromordinal()&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="605"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="603"/>
         <source>use of &apos;datetime.date.fromisoformat()&apos; should be avoided</source>
         <translation>следует избегать использования &apos;datetime.date.fromordinal()&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="527"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="525"/>
         <source>unnecessary {0} call - rewrite as a literal</source>
         <translation>неподходящий вызов {0} - перепишите как литерал</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="533"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="531"/>
         <source>unnecessary {0} literal - rewrite as a {1} literal</source>
         <translation>неподходящий литерал {0} - перепишите как литерал {1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="536"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="534"/>
         <source>unnecessary {0} passed to tuple() - rewrite as a {1} literal</source>
         <translation>неподходящий {0} передан в tuple() - перепишите как литерал {1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="539"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="537"/>
         <source>unnecessary {0} passed to list() - rewrite as a {1} literal</source>
         <translation>неподходящий {0} передан в list() - перепишите как литерал {1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="542"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="540"/>
         <source>unnecessary list call - remove the outer call to list()</source>
         <translation>лишний вызов списка - удалите внешний вызов list()</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="545"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="543"/>
         <source>unnecessary list comprehension - &quot;in&quot; can take a generator</source>
         <translation>неподходящий список выражений - &quot;in&quot; может take a generator</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="548"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="546"/>
         <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/translations.py" line="551"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="549"/>
         <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/translations.py" line="613"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="611"/>
         <source>&apos;sys.version[:3]&apos; referenced (Python 3.10), use &apos;sys.version_info&apos;</source>
         <translation>&apos;sys.version[:3]&apos; referenced (Python 3.10), используйте &apos;sys.version_info&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="616"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="614"/>
         <source>&apos;sys.version[2]&apos; referenced (Python 3.10), use &apos;sys.version_info&apos;</source>
         <translation>&apos;sys.version[2]&apos; referenced (Python 3.10), используйте &apos;sys.version_info&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="619"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="617"/>
         <source>&apos;sys.version&apos; compared to string (Python 3.10), use &apos;sys.version_info&apos;</source>
         <translation>&apos;sys.version&apos; compared to string (Python 3.10), используйте &apos;sys.version_info&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="623"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="621"/>
         <source>&apos;sys.version_info[0] == 3&apos; referenced (Python 4), use &apos;&gt;=&apos;</source>
         <translation>&apos;sys.version_info[0] == 3&apos; referenced (Python 4), используйте &apos;&gt;=&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="626"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="624"/>
         <source>&apos;six.PY3&apos; referenced (Python 4), use &apos;not six.PY2&apos;</source>
         <translation>&apos;six.PY3&apos; referenced (Python 4), используйте &apos;not six.PY2&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="629"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="627"/>
         <source>&apos;sys.version_info[1]&apos; compared to integer (Python 4), compare &apos;sys.version_info&apos; to tuple</source>
         <translation>&apos;sys.version_info[1]&apos; compared to integer (Python 4), compare &apos;sys.version_info&apos; to tuple</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="633"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="631"/>
         <source>&apos;sys.version_info.minor&apos; compared to integer (Python 4), compare &apos;sys.version_info&apos; to tuple</source>
         <translation>&apos;sys.version_info.minor&apos; compared to integer (Python 4), compare &apos;sys.version_info&apos; to tuple</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="637"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="635"/>
         <source>&apos;sys.version[0]&apos; referenced (Python 10), use &apos;sys.version_info&apos;</source>
         <translation>&apos;sys.version[0]&apos; referenced (Python 10), используйте &apos;sys.version_info&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="640"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="638"/>
         <source>&apos;sys.version&apos; compared to string (Python 10), use &apos;sys.version_info&apos;</source>
         <translation>&apos;sys.version&apos; compared to string (Python 10), используйте &apos;sys.version_info&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="644"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="642"/>
         <source>&apos;sys.version[:1]&apos; referenced (Python 10), use &apos;sys.version_info&apos;</source>
         <translation>&apos;sys.version[:1]&apos; referenced (Python 10), используйте &apos;sys.version_info&apos;</translation>
     </message>
@@ -46143,83 +46239,93 @@
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MyMemoryEngine.py" line="72"/>
         <source>Only texts up to {0} characters are allowed.</source>
-        <translation>Разрешены фрагменты текста не длинее {0} символов.</translation>
+        <translation type="obsolete">Разрешены фрагменты текста не длинее {0} символов.</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MyMemoryEngine.py" line="95"/>
         <source>Invalid response received</source>
-        <translation>Получен недопустимый ответ</translation>
+        <translation type="obsolete">Получен недопустимый ответ</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MyMemoryEngine.py" line="72"/>
+        <source>MyMemory: Only texts up to {0} characters are allowed.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MyMemoryEngine.py" line="99"/>
+        <source>MyMemory: Invalid response received</source>
+        <translation type="unfinished"></translation>
     </message>
 </context>
 <context>
     <name>NamingStyleChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="432"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="430"/>
         <source>class names should use CapWords convention</source>
         <translation>имена классов должны использовать CapWords соглашение</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="435"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="433"/>
         <source>function name should be lowercase</source>
         <translation>имена функций должны быть в нижнем регистре</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="438"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="436"/>
         <source>argument name should be lowercase</source>
         <translation>имена парамеров должны быть в нижнем регистре</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="441"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="439"/>
         <source>first argument of a class method should be named &apos;cls&apos;</source>
         <translation>первый параметр метода класса должен быть &apos;cls&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="444"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="442"/>
         <source>first argument of a method should be named &apos;self&apos;</source>
         <translation>первый параметр метода должен быть &apos;self&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="447"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="445"/>
         <source>first argument of a static method should not be named &apos;self&apos; or &apos;cls</source>
         <translation>первый параметр статического метода класса не должен быть &apos;cls&apos; или &apos;self&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="451"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="449"/>
         <source>module names should be lowercase</source>
         <translation>имена модулей должны быть в нижнем регистре</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="454"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="452"/>
         <source>package names should be lowercase</source>
         <translation>имена пакетов должны быть в нижнем регистре</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="457"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="455"/>
         <source>constant imported as non constant</source>
         <translation>константа импортирована как не константа</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="460"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="458"/>
         <source>lowercase imported as non lowercase</source>
         <translation>имена в нижнем регистре импортированы не в нижнем регистре</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="463"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="461"/>
         <source>camelcase imported as lowercase</source>
         <translation>имена в camelcase импортированы в нижнем регистре</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="466"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="464"/>
         <source>camelcase imported as constant</source>
         <translation>имена в camelcase импортированы как константы</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="469"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="467"/>
         <source>variable in function should be lowercase</source>
         <translation>имена переменных в функции должны быть в нижнем регистре</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="472"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="470"/>
         <source>names &apos;l&apos;, &apos;O&apos; and &apos;I&apos; should be avoided</source>
         <translation>имена &apos;l&apos;, &apos;O&apos; и &apos;I&apos; следует избегать</translation>
     </message>
@@ -53279,12 +53385,22 @@
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/PromtEngine.py" line="97"/>
         <source>Invalid response received</source>
-        <translation>Получен недопустимый ответ</translation>
+        <translation type="obsolete">Получен недопустимый ответ</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/PromtEngine.py" line="106"/>
         <source>This direction of translation is not available.</source>
-        <translation>Данное направление перевода недоступно.</translation>
+        <translation type="obsolete">Данное направление перевода недоступно.</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/PromtEngine.py" line="97"/>
+        <source>Promt: Invalid response received</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/PromtEngine.py" line="106"/>
+        <source>Promt: This direction of translation is not available.</source>
+        <translation type="unfinished"></translation>
     </message>
 </context>
 <context>
@@ -78474,3197 +78590,3197 @@
 <context>
     <name>ViewManager</name>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="635"/>
+        <location filename="../ViewManager/ViewManager.py" line="634"/>
         <source>New</source>
         <translation>Новый</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="635"/>
+        <location filename="../ViewManager/ViewManager.py" line="634"/>
         <source>&amp;New</source>
         <translation>&amp;Новый</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="635"/>
+        <location filename="../ViewManager/ViewManager.py" line="634"/>
         <source>Ctrl+N</source>
         <comment>File|New</comment>
         <translation>Ctrl+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="643"/>
+        <location filename="../ViewManager/ViewManager.py" line="642"/>
         <source>Open an empty editor window</source>
         <translation>Открыть пустое окно редактора</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="646"/>
+        <location filename="../ViewManager/ViewManager.py" line="645"/>
         <source>&lt;b&gt;New&lt;/b&gt;&lt;p&gt;An empty editor window will be created.&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="654"/>
+        <location filename="../ViewManager/ViewManager.py" line="653"/>
         <source>Open</source>
         <translation>Открыть</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="654"/>
+        <location filename="../ViewManager/ViewManager.py" line="653"/>
         <source>&amp;Open...</source>
         <translation>&amp;Открыть...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="654"/>
+        <location filename="../ViewManager/ViewManager.py" line="653"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation>Ctrl+O</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="662"/>
+        <location filename="../ViewManager/ViewManager.py" line="661"/>
         <source>Open a file</source>
         <translation>Открыть файл</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="664"/>
+        <location filename="../ViewManager/ViewManager.py" line="663"/>
         <source>&lt;b&gt;Open a file&lt;/b&gt;&lt;p&gt;You will be asked for the name of a file to be opened in an editor window.&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="675"/>
+        <location filename="../ViewManager/ViewManager.py" line="674"/>
         <source>Close</source>
         <translation>Закрыть</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="675"/>
+        <location filename="../ViewManager/ViewManager.py" line="674"/>
         <source>&amp;Close</source>
         <translation>&amp;Закрыть</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="675"/>
+        <location filename="../ViewManager/ViewManager.py" line="674"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation>Ctrl+W</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="683"/>
+        <location filename="../ViewManager/ViewManager.py" line="682"/>
         <source>Close the current window</source>
         <translation>Закрыть текущее окно</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="686"/>
+        <location filename="../ViewManager/ViewManager.py" line="685"/>
         <source>&lt;b&gt;Close Window&lt;/b&gt;&lt;p&gt;Close the current window.&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="694"/>
+        <location filename="../ViewManager/ViewManager.py" line="693"/>
         <source>Close All</source>
         <translation>Закрыть все</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="694"/>
+        <location filename="../ViewManager/ViewManager.py" line="693"/>
         <source>Clos&amp;e All</source>
         <translation>Закрыть &amp;всё</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="698"/>
+        <location filename="../ViewManager/ViewManager.py" line="697"/>
         <source>Close all editor windows</source>
         <translation>Закрыть все окна редактора</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="701"/>
+        <location filename="../ViewManager/ViewManager.py" line="700"/>
         <source>&lt;b&gt;Close All Windows&lt;/b&gt;&lt;p&gt;Close all editor windows.&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="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="712"/>
         <source>Save</source>
         <translation>Сохранить</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="712"/>
         <source>&amp;Save</source>
         <translation>&amp;Сохранить</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="712"/>
         <source>Ctrl+S</source>
         <comment>File|Save</comment>
         <translation>Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="720"/>
+        <location filename="../ViewManager/ViewManager.py" line="719"/>
         <source>Save the current file</source>
         <translation>Сохранить текущий файл</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="722"/>
+        <location filename="../ViewManager/ViewManager.py" line="721"/>
         <source>&lt;b&gt;Save File&lt;/b&gt;&lt;p&gt;Save the contents of current editor window.&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="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="729"/>
         <source>Save as</source>
         <translation>Сохранить как</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="729"/>
         <source>Save &amp;as...</source>
         <translation>Сохранить &amp;как...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="729"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation>Shift+Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="737"/>
+        <location filename="../ViewManager/ViewManager.py" line="736"/>
         <source>Save the current file to a new one</source>
         <translation>Сохранить текущий файл в новый</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="739"/>
+        <location filename="../ViewManager/ViewManager.py" line="738"/>
         <source>&lt;b&gt;Save File as&lt;/b&gt;&lt;p&gt;Save the contents of current editor window to a new file. The file can be entered in a file selection dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Сохранить файл как&lt;/b&gt;
 &lt;p&gt;Сохранение содержания текущего окна редактора в новый файл.
 Имя файла будет запрошено с помощью диалога выбора файлов.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="764"/>
+        <location filename="../ViewManager/ViewManager.py" line="763"/>
         <source>Save all</source>
         <translation>Сохранить всё</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="769"/>
+        <location filename="../ViewManager/ViewManager.py" line="768"/>
         <source>Save all files</source>
         <translation>Сохранить все файлы</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="771"/>
+        <location filename="../ViewManager/ViewManager.py" line="770"/>
         <source>&lt;b&gt;Save All Files&lt;/b&gt;&lt;p&gt;Save the contents of all editor windows.&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="781"/>
+        <location filename="../ViewManager/ViewManager.py" line="780"/>
         <source>Print</source>
         <translation>Печать</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="781"/>
+        <location filename="../ViewManager/ViewManager.py" line="780"/>
         <source>&amp;Print</source>
         <translation>&amp;Печать</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="781"/>
+        <location filename="../ViewManager/ViewManager.py" line="780"/>
         <source>Ctrl+P</source>
         <comment>File|Print</comment>
         <translation>Ctrl+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="788"/>
+        <location filename="../ViewManager/ViewManager.py" line="787"/>
         <source>Print the current file</source>
         <translation>Печать текущего файла</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="790"/>
+        <location filename="../ViewManager/ViewManager.py" line="789"/>
         <source>&lt;b&gt;Print File&lt;/b&gt;&lt;p&gt;Print the contents of current editor window.&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="799"/>
+        <location filename="../ViewManager/ViewManager.py" line="798"/>
         <source>Print Preview</source>
         <translation>Предварительный просмотр печати</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="804"/>
+        <location filename="../ViewManager/ViewManager.py" line="803"/>
         <source>Print preview of the current file</source>
         <translation>Предварительный просмотр печати текущего файла</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="806"/>
+        <location filename="../ViewManager/ViewManager.py" line="805"/>
         <source>&lt;b&gt;Print Preview&lt;/b&gt;&lt;p&gt;Print preview of the current editor window.&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="816"/>
+        <location filename="../ViewManager/ViewManager.py" line="815"/>
         <source>Search File</source>
         <translation>Искать файл</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="816"/>
+        <location filename="../ViewManager/ViewManager.py" line="815"/>
         <source>Search &amp;File...</source>
         <translation>Искать &amp;файл...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="816"/>
+        <location filename="../ViewManager/ViewManager.py" line="815"/>
         <source>Alt+Ctrl+F</source>
         <comment>File|Search File</comment>
         <translation>Alt+Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="822"/>
+        <location filename="../ViewManager/ViewManager.py" line="821"/>
         <source>Search for a file</source>
         <translation>Искать файл</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="824"/>
+        <location filename="../ViewManager/ViewManager.py" line="823"/>
         <source>&lt;b&gt;Search File&lt;/b&gt;&lt;p&gt;Search for a file.&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="838"/>
+        <location filename="../ViewManager/ViewManager.py" line="837"/>
         <source>&amp;File</source>
         <translation>&amp;Файл</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="840"/>
+        <location filename="../ViewManager/ViewManager.py" line="839"/>
         <source>Open &amp;Recent Files</source>
         <translation>Открыть &amp;недавние файлы</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="843"/>
+        <location filename="../ViewManager/ViewManager.py" line="842"/>
         <source>Open &amp;Bookmarked Files</source>
         <translation>Открыть &amp;закладки на файлы</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="891"/>
+        <location filename="../ViewManager/ViewManager.py" line="890"/>
         <source>File</source>
         <translation>Файл</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="914"/>
+        <location filename="../ViewManager/ViewManager.py" line="913"/>
         <source>Export as</source>
         <translation>Экспортировать как</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="938"/>
+        <location filename="../ViewManager/ViewManager.py" line="937"/>
         <source>Undo</source>
         <translation>Отмена</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="938"/>
+        <location filename="../ViewManager/ViewManager.py" line="937"/>
         <source>&amp;Undo</source>
         <translation>&amp;Отмена</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="938"/>
+        <location filename="../ViewManager/ViewManager.py" line="937"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation>Ctrl+Z</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="938"/>
+        <location filename="../ViewManager/ViewManager.py" line="937"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation>Alt+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="947"/>
+        <location filename="../ViewManager/ViewManager.py" line="946"/>
         <source>Undo the last change</source>
         <translation>Отменить последнее изменение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="949"/>
+        <location filename="../ViewManager/ViewManager.py" line="948"/>
         <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last change done in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Отмена&lt;/b&gt;
 &lt;p&gt;Отмена последнего изменения в текущем сеансе редактирования.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="957"/>
+        <location filename="../ViewManager/ViewManager.py" line="956"/>
         <source>Redo</source>
         <translation>Повтор</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="957"/>
+        <location filename="../ViewManager/ViewManager.py" line="956"/>
         <source>&amp;Redo</source>
         <translation>&amp;Повтор</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="957"/>
+        <location filename="../ViewManager/ViewManager.py" line="956"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation>Ctrl+Shift+Z</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="965"/>
+        <location filename="../ViewManager/ViewManager.py" line="964"/>
         <source>Redo the last change</source>
         <translation>Восстановить последнее отменённое изменение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="967"/>
+        <location filename="../ViewManager/ViewManager.py" line="966"/>
         <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last change done in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Повтор&lt;/b&gt;
 &lt;p&gt;Восстановление последнего отменённого изменения.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="984"/>
+        <location filename="../ViewManager/ViewManager.py" line="983"/>
         <source>Revert to last saved state</source>
         <translation>Вернуть к последнему сохраненному состоянию</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="975"/>
+        <location filename="../ViewManager/ViewManager.py" line="974"/>
         <source>Re&amp;vert to last saved state</source>
         <translation>&amp;Вернуть к последнему сохраненному состоянию</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="975"/>
+        <location filename="../ViewManager/ViewManager.py" line="974"/>
         <source>Ctrl+Y</source>
         <comment>Edit|Revert</comment>
         <translation>Ctrl+Y</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="985"/>
         <source>&lt;b&gt;Revert to last saved state&lt;/b&gt;&lt;p&gt;Undo all changes up to the last saved state of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Вернуть к последнему сохраненному состоянию&lt;/b&gt;
 &lt;p&gt;Отменить все изменения текущего редактирования, сделанные с момента последнего сохранения.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <source>Cut</source>
         <translation>Вырезать</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <source>Cu&amp;t</source>
         <translation>В&amp;ырезать</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation>Ctrl+X</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation>Shift+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1006"/>
+        <location filename="../ViewManager/ViewManager.py" line="1005"/>
         <source>Cut the selection</source>
         <translation>Вырезать выделение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1008"/>
+        <location filename="../ViewManager/ViewManager.py" line="1007"/>
         <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected text of the current editor to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Вырезать&lt;/b&gt;
 &lt;p&gt;Вырезать выделение и поместить его в буфер обмена.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1017"/>
+        <location filename="../ViewManager/ViewManager.py" line="1016"/>
         <source>Copy</source>
         <translation>Копировать</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1017"/>
+        <location filename="../ViewManager/ViewManager.py" line="1016"/>
         <source>&amp;Copy</source>
         <translation>&amp;Копировать</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1017"/>
+        <location filename="../ViewManager/ViewManager.py" line="1016"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1017"/>
+        <location filename="../ViewManager/ViewManager.py" line="1016"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+Ins</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1026"/>
+        <location filename="../ViewManager/ViewManager.py" line="1025"/>
         <source>Copy the selection</source>
         <translation>Копировать выделение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1028"/>
+        <location filename="../ViewManager/ViewManager.py" line="1027"/>
         <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected text of the current editor to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Копировать&lt;/b&gt;
 &lt;p&gt;Копировать выделение и поместить его в буфер обмена.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1037"/>
+        <location filename="../ViewManager/ViewManager.py" line="1036"/>
         <source>Paste</source>
         <translation>Вставить</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1037"/>
+        <location filename="../ViewManager/ViewManager.py" line="1036"/>
         <source>&amp;Paste</source>
         <translation>Вс&amp;тавить</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1037"/>
+        <location filename="../ViewManager/ViewManager.py" line="1036"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation>Ctrl+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1037"/>
+        <location filename="../ViewManager/ViewManager.py" line="1036"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation>Shift+Ins</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1046"/>
+        <location filename="../ViewManager/ViewManager.py" line="1045"/>
         <source>Paste the last cut/copied text</source>
         <translation>Вставить вырезанный/скопированный текст</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1048"/>
+        <location filename="../ViewManager/ViewManager.py" line="1047"/>
         <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the last cut/copied text from the clipboard to the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Вставить&lt;/b&gt;
 &lt;p&gt;Вставить текст из буфера обмена в текущую позицию редактора.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1057"/>
+        <location filename="../ViewManager/ViewManager.py" line="1056"/>
         <source>Clear</source>
         <translation>Очистить</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1057"/>
+        <location filename="../ViewManager/ViewManager.py" line="1056"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation>Alt+Shift+C</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1065"/>
+        <location filename="../ViewManager/ViewManager.py" line="1064"/>
         <source>Clear all text</source>
         <translation>Убрать весь текст</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1067"/>
+        <location filename="../ViewManager/ViewManager.py" line="1066"/>
         <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Delete all text of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Очистить&lt;/b&gt;
 &lt;p&gt;Удаление всего текста из текущего редактора.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1082"/>
+        <location filename="../ViewManager/ViewManager.py" line="1081"/>
         <source>Join Lines</source>
         <translation>Соединить строки</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1075"/>
+        <location filename="../ViewManager/ViewManager.py" line="1074"/>
         <source>Ctrl+J</source>
         <comment>Edit|Join Lines</comment>
         <translation>Ctrl+J</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1084"/>
+        <location filename="../ViewManager/ViewManager.py" line="1083"/>
         <source>&lt;b&gt;Join Lines&lt;/b&gt;&lt;p&gt;Join the current and the next lines.&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="1092"/>
+        <location filename="../ViewManager/ViewManager.py" line="1091"/>
         <source>Indent</source>
         <translation>Увеличить отступ</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1092"/>
+        <location filename="../ViewManager/ViewManager.py" line="1091"/>
         <source>&amp;Indent</source>
         <translation>У&amp;величить отступ</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1092"/>
+        <location filename="../ViewManager/ViewManager.py" line="1091"/>
         <source>Ctrl+I</source>
         <comment>Edit|Indent</comment>
         <translation>Ctrl+I</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1100"/>
+        <location filename="../ViewManager/ViewManager.py" line="1099"/>
         <source>Indent line</source>
         <translation>Увеличить отступ строки</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1102"/>
+        <location filename="../ViewManager/ViewManager.py" line="1101"/>
         <source>&lt;b&gt;Indent&lt;/b&gt;&lt;p&gt;Indents the current line or the lines of the selection by one level.&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="1111"/>
+        <location filename="../ViewManager/ViewManager.py" line="1110"/>
         <source>Unindent</source>
         <translation>Уменьшить отступ</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1111"/>
+        <location filename="../ViewManager/ViewManager.py" line="1110"/>
         <source>U&amp;nindent</source>
         <translation>У&amp;меньшить отступ</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1111"/>
+        <location filename="../ViewManager/ViewManager.py" line="1110"/>
         <source>Ctrl+Shift+I</source>
         <comment>Edit|Unindent</comment>
         <translation>Ctrl+Shift+I</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1119"/>
+        <location filename="../ViewManager/ViewManager.py" line="1118"/>
         <source>Unindent line</source>
         <translation>Уменьшить отступ строки</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1121"/>
+        <location filename="../ViewManager/ViewManager.py" line="1120"/>
         <source>&lt;b&gt;Unindent&lt;/b&gt;&lt;p&gt;Unindents the current line or the lines of the selection by one level.&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="1130"/>
+        <location filename="../ViewManager/ViewManager.py" line="1129"/>
         <source>Smart indent</source>
         <translation>Интеллектуальные отступы</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1136"/>
+        <location filename="../ViewManager/ViewManager.py" line="1135"/>
         <source>Smart indent Line or Selection</source>
         <translation>Форматировать строку или выделение умными отступами</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1138"/>
+        <location filename="../ViewManager/ViewManager.py" line="1137"/>
         <source>&lt;b&gt;Smart indent&lt;/b&gt;&lt;p&gt;Indents the current line or the lines of the current selection smartly.&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="1147"/>
+        <location filename="../ViewManager/ViewManager.py" line="1146"/>
         <source>Comment</source>
         <translation>Закомментировать</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1147"/>
+        <location filename="../ViewManager/ViewManager.py" line="1146"/>
         <source>C&amp;omment</source>
         <translation>&amp;Закомментировать</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1147"/>
+        <location filename="../ViewManager/ViewManager.py" line="1146"/>
         <source>Ctrl+M</source>
         <comment>Edit|Comment</comment>
         <translation>Ctrl+M</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1155"/>
+        <location filename="../ViewManager/ViewManager.py" line="1154"/>
         <source>Comment Line or Selection</source>
         <translation>Закомментировать строку или выделение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1157"/>
+        <location filename="../ViewManager/ViewManager.py" line="1156"/>
         <source>&lt;b&gt;Comment&lt;/b&gt;&lt;p&gt;Comments the current line or the lines of the current selection.&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="1166"/>
+        <location filename="../ViewManager/ViewManager.py" line="1165"/>
         <source>Uncomment</source>
         <translation>Раскомментировать</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1166"/>
+        <location filename="../ViewManager/ViewManager.py" line="1165"/>
         <source>Unco&amp;mment</source>
         <translation>&amp;Раскомментировать</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1166"/>
+        <location filename="../ViewManager/ViewManager.py" line="1165"/>
         <source>Alt+Ctrl+M</source>
         <comment>Edit|Uncomment</comment>
         <translation>Alt+Ctrl+M</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1174"/>
+        <location filename="../ViewManager/ViewManager.py" line="1173"/>
         <source>Uncomment Line or Selection</source>
         <translation>Раскомментировать строку или выделение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1176"/>
+        <location filename="../ViewManager/ViewManager.py" line="1175"/>
         <source>&lt;b&gt;Uncomment&lt;/b&gt;&lt;p&gt;Uncomments the current line or the lines of the current selection.&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="1207"/>
+        <location filename="../ViewManager/ViewManager.py" line="1206"/>
         <source>Stream Comment</source>
         <translation>Поточный комментарий</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1212"/>
+        <location filename="../ViewManager/ViewManager.py" line="1211"/>
         <source>Stream Comment Line or Selection</source>
         <translation>Закомментировать строку или выделение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1215"/>
+        <location filename="../ViewManager/ViewManager.py" line="1214"/>
         <source>&lt;b&gt;Stream Comment&lt;/b&gt;&lt;p&gt;Stream comments the current line or the current selection.&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="1224"/>
+        <location filename="../ViewManager/ViewManager.py" line="1223"/>
         <source>Box Comment</source>
         <translation>Прямоугольный комментарий</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1229"/>
+        <location filename="../ViewManager/ViewManager.py" line="1228"/>
         <source>Box Comment Line or Selection</source>
         <translation>Закомментировать строку или выделение прямоугольным комментарием</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1231"/>
+        <location filename="../ViewManager/ViewManager.py" line="1230"/>
         <source>&lt;b&gt;Box Comment&lt;/b&gt;&lt;p&gt;Box comments the current line or the lines of the current selection.&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="1240"/>
+        <location filename="../ViewManager/ViewManager.py" line="1239"/>
         <source>Select to brace</source>
         <translation>Выбрать до скобки</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1240"/>
+        <location filename="../ViewManager/ViewManager.py" line="1239"/>
         <source>Select to &amp;brace</source>
         <translation>В&amp;ыбрать до скобки</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1240"/>
+        <location filename="../ViewManager/ViewManager.py" line="1239"/>
         <source>Ctrl+E</source>
         <comment>Edit|Select to brace</comment>
         <translation>Ctrl+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1247"/>
+        <location filename="../ViewManager/ViewManager.py" line="1246"/>
         <source>Select text to the matching brace</source>
         <translation>Выбрать до соответствующей скобки</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1249"/>
+        <location filename="../ViewManager/ViewManager.py" line="1248"/>
         <source>&lt;b&gt;Select to brace&lt;/b&gt;&lt;p&gt;Select text of the current editor to the matching brace.&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="1258"/>
+        <location filename="../ViewManager/ViewManager.py" line="1257"/>
         <source>Select all</source>
         <translation>Выбрать всё</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1258"/>
+        <location filename="../ViewManager/ViewManager.py" line="1257"/>
         <source>&amp;Select all</source>
         <translation>В&amp;ыбрать всё</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1258"/>
+        <location filename="../ViewManager/ViewManager.py" line="1257"/>
         <source>Ctrl+A</source>
         <comment>Edit|Select all</comment>
         <translation>Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1266"/>
+        <location filename="../ViewManager/ViewManager.py" line="1265"/>
         <source>Select all text</source>
         <translation>Выбрать весь текст</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1268"/>
+        <location filename="../ViewManager/ViewManager.py" line="1267"/>
         <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Select all text of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Выбрать всё&lt;/b&gt;&lt;p&gt;Выбрать весь текст в текущем редакторе.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1275"/>
         <source>Deselect all</source>
         <translation>Снять выделение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1275"/>
         <source>&amp;Deselect all</source>
         <translation>&amp;Снять выделение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1275"/>
         <source>Alt+Ctrl+A</source>
         <comment>Edit|Deselect all</comment>
         <translation>Alt+Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1283"/>
+        <location filename="../ViewManager/ViewManager.py" line="1282"/>
         <source>Deselect all text</source>
         <translation>Снять выделение со всего текста</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1285"/>
+        <location filename="../ViewManager/ViewManager.py" line="1284"/>
         <source>&lt;b&gt;Deselect All&lt;/b&gt;&lt;p&gt;Deselect all text of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Снять выделение&lt;/b&gt;&lt;p&gt;Снять выделение со всего текста в текущем редакторе.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1300"/>
+        <location filename="../ViewManager/ViewManager.py" line="1299"/>
         <source>Convert Line End Characters</source>
         <translation>Конвертировать окончания строк</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1293"/>
+        <location filename="../ViewManager/ViewManager.py" line="1292"/>
         <source>Convert &amp;Line End Characters</source>
         <translation>К&amp;онвертировать окончания строк</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1302"/>
+        <location filename="../ViewManager/ViewManager.py" line="1301"/>
         <source>&lt;b&gt;Convert Line End Characters&lt;/b&gt;&lt;p&gt;Convert the line end characters to the currently set type.&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="1316"/>
+        <location filename="../ViewManager/ViewManager.py" line="1315"/>
         <source>Shorten empty lines</source>
         <translation>Укоротить пустые строки</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1318"/>
+        <location filename="../ViewManager/ViewManager.py" line="1317"/>
         <source>&lt;b&gt;Shorten empty lines&lt;/b&gt;&lt;p&gt;Shorten lines consisting solely of whitespace characters.&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="1414"/>
+        <location filename="../ViewManager/ViewManager.py" line="1413"/>
         <source>Calltip</source>
         <translation>Подсказка</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1414"/>
+        <location filename="../ViewManager/ViewManager.py" line="1413"/>
         <source>&amp;Calltip</source>
         <translation>&amp;Подсказка</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1421"/>
+        <location filename="../ViewManager/ViewManager.py" line="1420"/>
         <source>Show Calltips</source>
         <translation>Показать подсказки</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1423"/>
+        <location filename="../ViewManager/ViewManager.py" line="1422"/>
         <source>&lt;b&gt;Calltip&lt;/b&gt;&lt;p&gt;Show calltips based on the characters immediately to the left of the cursor.&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="1481"/>
+        <location filename="../ViewManager/ViewManager.py" line="1480"/>
         <source>Move left one character</source>
         <translation>Перейти влево на один символ</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1481"/>
+        <location filename="../ViewManager/ViewManager.py" line="1480"/>
         <source>Left</source>
         <translation>Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1495"/>
+        <location filename="../ViewManager/ViewManager.py" line="1494"/>
         <source>Move right one character</source>
         <translation>Перейти вправо на один символ</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1495"/>
+        <location filename="../ViewManager/ViewManager.py" line="1494"/>
         <source>Right</source>
         <translation>Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1509"/>
+        <location filename="../ViewManager/ViewManager.py" line="1508"/>
         <source>Move up one line</source>
         <translation>Перейти на одну строку вверх</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1509"/>
+        <location filename="../ViewManager/ViewManager.py" line="1508"/>
         <source>Up</source>
         <translation>Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1521"/>
+        <location filename="../ViewManager/ViewManager.py" line="1520"/>
         <source>Move down one line</source>
         <translation>Перейти на одну строку вниз</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1521"/>
+        <location filename="../ViewManager/ViewManager.py" line="1520"/>
         <source>Down</source>
         <translation>Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1533"/>
+        <location filename="../ViewManager/ViewManager.py" line="1532"/>
         <source>Move left one word part</source>
         <translation>Перейти влево на одну часть слова</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1567"/>
+        <location filename="../ViewManager/ViewManager.py" line="1566"/>
         <source>Alt+Left</source>
         <translation>Alt+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1547"/>
+        <location filename="../ViewManager/ViewManager.py" line="1546"/>
         <source>Move right one word part</source>
         <translation>Перейти вправо на одну часть слова</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2448"/>
+        <location filename="../ViewManager/ViewManager.py" line="2446"/>
         <source>Alt+Right</source>
         <translation>Alt+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1561"/>
+        <location filename="../ViewManager/ViewManager.py" line="1560"/>
         <source>Move left one word</source>
         <translation>Перейти влево на одно слово</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1612"/>
+        <location filename="../ViewManager/ViewManager.py" line="1611"/>
         <source>Ctrl+Left</source>
         <translation>Ctrl+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1576"/>
+        <location filename="../ViewManager/ViewManager.py" line="1575"/>
         <source>Move right one word</source>
         <translation>Перейти вправо на одно слово</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2202"/>
+        <location filename="../ViewManager/ViewManager.py" line="2200"/>
         <source>Ctrl+Right</source>
         <translation>Ctrl+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2403"/>
+        <location filename="../ViewManager/ViewManager.py" line="2401"/>
         <source>Home</source>
         <translation>Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1615"/>
+        <location filename="../ViewManager/ViewManager.py" line="1614"/>
         <source>Alt+Home</source>
         <translation>Alt+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2418"/>
+        <location filename="../ViewManager/ViewManager.py" line="2416"/>
         <source>End</source>
         <translation>End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1638"/>
+        <location filename="../ViewManager/ViewManager.py" line="1637"/>
         <source>Scroll view down one line</source>
         <translation>Прокрутить на одну строку вниз</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1728"/>
+        <location filename="../ViewManager/ViewManager.py" line="1727"/>
         <source>Ctrl+Down</source>
         <translation>Ctrl+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1650"/>
+        <location filename="../ViewManager/ViewManager.py" line="1649"/>
         <source>Scroll view up one line</source>
         <translation>Прокрутить на одну строку вверх</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1711"/>
+        <location filename="../ViewManager/ViewManager.py" line="1710"/>
         <source>Ctrl+Up</source>
         <translation>Ctrl+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1661"/>
+        <location filename="../ViewManager/ViewManager.py" line="1660"/>
         <source>Move up one paragraph</source>
         <translation>Перейти на один параграф вверх</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1661"/>
+        <location filename="../ViewManager/ViewManager.py" line="1660"/>
         <source>Alt+Up</source>
         <translation>Alt+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1670"/>
+        <location filename="../ViewManager/ViewManager.py" line="1669"/>
         <source>Move down one paragraph</source>
         <translation>Перейти на один параграф вниз</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1670"/>
+        <location filename="../ViewManager/ViewManager.py" line="1669"/>
         <source>Alt+Down</source>
         <translation>Alt+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1682"/>
+        <location filename="../ViewManager/ViewManager.py" line="1681"/>
         <source>Move up one page</source>
         <translation>Перейти на одну страницу вверх</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1682"/>
+        <location filename="../ViewManager/ViewManager.py" line="1681"/>
         <source>PgUp</source>
         <translation>PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1691"/>
+        <location filename="../ViewManager/ViewManager.py" line="1690"/>
         <source>Move down one page</source>
         <translation>Перейти на одну страницу вниз</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1691"/>
+        <location filename="../ViewManager/ViewManager.py" line="1690"/>
         <source>PgDown</source>
         <translation>PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1714"/>
+        <location filename="../ViewManager/ViewManager.py" line="1713"/>
         <source>Ctrl+Home</source>
         <translation>Ctrl+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1731"/>
+        <location filename="../ViewManager/ViewManager.py" line="1730"/>
         <source>Ctrl+End</source>
         <translation>Ctrl+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1737"/>
+        <location filename="../ViewManager/ViewManager.py" line="1736"/>
         <source>Indent one level</source>
         <translation>Увеличить отступ</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1737"/>
+        <location filename="../ViewManager/ViewManager.py" line="1736"/>
         <source>Tab</source>
         <translation>Tab</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1746"/>
+        <location filename="../ViewManager/ViewManager.py" line="1745"/>
         <source>Unindent one level</source>
         <translation>Уменьшить отступ</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1746"/>
+        <location filename="../ViewManager/ViewManager.py" line="1745"/>
         <source>Shift+Tab</source>
         <translation>Shift+Tab</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1756"/>
+        <location filename="../ViewManager/ViewManager.py" line="1755"/>
         <source>Extend selection left one character</source>
         <translation>Распространить выделение на один символ влево</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1756"/>
+        <location filename="../ViewManager/ViewManager.py" line="1755"/>
         <source>Shift+Left</source>
         <translation>Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1771"/>
+        <location filename="../ViewManager/ViewManager.py" line="1770"/>
         <source>Extend selection right one character</source>
         <translation>Распространить выделение на один символ вправо</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1771"/>
+        <location filename="../ViewManager/ViewManager.py" line="1770"/>
         <source>Shift+Right</source>
         <translation>Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1786"/>
+        <location filename="../ViewManager/ViewManager.py" line="1785"/>
         <source>Extend selection up one line</source>
         <translation>Распространить выделение на одну строку вверх</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1786"/>
+        <location filename="../ViewManager/ViewManager.py" line="1785"/>
         <source>Shift+Up</source>
         <translation>Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1801"/>
+        <location filename="../ViewManager/ViewManager.py" line="1800"/>
         <source>Extend selection down one line</source>
         <translation>Распространить выделение на одну строку вниз</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1801"/>
+        <location filename="../ViewManager/ViewManager.py" line="1800"/>
         <source>Shift+Down</source>
         <translation>Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1816"/>
+        <location filename="../ViewManager/ViewManager.py" line="1815"/>
         <source>Extend selection left one word part</source>
         <translation>Распространить выделение на одну часть слова влево</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1852"/>
+        <location filename="../ViewManager/ViewManager.py" line="1851"/>
         <source>Alt+Shift+Left</source>
         <translation>Alt+Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1830"/>
+        <location filename="../ViewManager/ViewManager.py" line="1829"/>
         <source>Extend selection right one word part</source>
         <translation>Распространить выделение на одну часть слова вправо</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2463"/>
+        <location filename="../ViewManager/ViewManager.py" line="2461"/>
         <source>Alt+Shift+Right</source>
         <translation>Alt+Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1844"/>
+        <location filename="../ViewManager/ViewManager.py" line="1843"/>
         <source>Extend selection left one word</source>
         <translation>Распространить выделение на одно слово влево</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2557"/>
+        <location filename="../ViewManager/ViewManager.py" line="2555"/>
         <source>Ctrl+Shift+Left</source>
         <translation>Ctrl+Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1861"/>
+        <location filename="../ViewManager/ViewManager.py" line="1860"/>
         <source>Extend selection right one word</source>
         <translation>Распространить выделение на одно слово вправо</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2219"/>
+        <location filename="../ViewManager/ViewManager.py" line="2217"/>
         <source>Ctrl+Shift+Right</source>
         <translation>Ctrl+Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1890"/>
+        <location filename="../ViewManager/ViewManager.py" line="1889"/>
         <source>Shift+Home</source>
         <translation>Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2323"/>
+        <location filename="../ViewManager/ViewManager.py" line="2321"/>
         <source>Alt+Shift+Home</source>
         <translation>Alt+Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1907"/>
+        <location filename="../ViewManager/ViewManager.py" line="1906"/>
         <source>Shift+End</source>
         <translation>Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1913"/>
+        <location filename="../ViewManager/ViewManager.py" line="1912"/>
         <source>Extend selection up one paragraph</source>
         <translation>Распространить выделение на один параграф вверх</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1913"/>
+        <location filename="../ViewManager/ViewManager.py" line="1912"/>
         <source>Alt+Shift+Up</source>
         <translation>Alt+Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1926"/>
+        <location filename="../ViewManager/ViewManager.py" line="1925"/>
         <source>Extend selection down one paragraph</source>
         <translation>Распространить выделение на один параграф вниз</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1926"/>
+        <location filename="../ViewManager/ViewManager.py" line="1925"/>
         <source>Alt+Shift+Down</source>
         <translation>Alt+Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1939"/>
+        <location filename="../ViewManager/ViewManager.py" line="1938"/>
         <source>Extend selection up one page</source>
         <translation>Распространить выделение на страницу вверх</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1939"/>
+        <location filename="../ViewManager/ViewManager.py" line="1938"/>
         <source>Shift+PgUp</source>
         <translation>Shift+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1951"/>
+        <location filename="../ViewManager/ViewManager.py" line="1950"/>
         <source>Extend selection down one page</source>
         <translation>Распространить выделение на страницу вниз</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1951"/>
+        <location filename="../ViewManager/ViewManager.py" line="1950"/>
         <source>Shift+PgDown</source>
         <translation>Shift+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1978"/>
+        <location filename="../ViewManager/ViewManager.py" line="1977"/>
         <source>Ctrl+Shift+Home</source>
         <translation>Ctrl+Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1995"/>
+        <location filename="../ViewManager/ViewManager.py" line="1994"/>
         <source>Ctrl+Shift+End</source>
         <translation>Ctrl+Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2001"/>
+        <location filename="../ViewManager/ViewManager.py" line="2000"/>
         <source>Delete previous character</source>
         <translation>Удалить предыдущий символ</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2001"/>
+        <location filename="../ViewManager/ViewManager.py" line="2000"/>
         <source>Backspace</source>
         <translation>Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2013"/>
+        <location filename="../ViewManager/ViewManager.py" line="2012"/>
         <source>Shift+Backspace</source>
         <translation>Shift+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2032"/>
+        <location filename="../ViewManager/ViewManager.py" line="2031"/>
         <source>Delete current character</source>
         <translation>Удалить текущий символ</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2032"/>
+        <location filename="../ViewManager/ViewManager.py" line="2031"/>
         <source>Del</source>
         <translation>Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2046"/>
+        <location filename="../ViewManager/ViewManager.py" line="2045"/>
         <source>Delete word to left</source>
         <translation>Удалить слово слева</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2046"/>
+        <location filename="../ViewManager/ViewManager.py" line="2045"/>
         <source>Ctrl+Backspace</source>
         <translation>Ctrl+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2057"/>
+        <location filename="../ViewManager/ViewManager.py" line="2056"/>
         <source>Delete word to right</source>
         <translation>Удалить слово справа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2057"/>
+        <location filename="../ViewManager/ViewManager.py" line="2056"/>
         <source>Ctrl+Del</source>
         <translation>Ctrl+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2067"/>
+        <location filename="../ViewManager/ViewManager.py" line="2066"/>
         <source>Delete line to left</source>
         <translation>Удалить строку слева</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2067"/>
+        <location filename="../ViewManager/ViewManager.py" line="2066"/>
         <source>Ctrl+Shift+Backspace</source>
         <translation>Ctrl+Shift+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2078"/>
+        <location filename="../ViewManager/ViewManager.py" line="2077"/>
         <source>Delete line to right</source>
         <translation>Удалить строку справа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2087"/>
+        <location filename="../ViewManager/ViewManager.py" line="2086"/>
         <source>Ctrl+Shift+Del</source>
         <translation>Ctrl+Shift+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2093"/>
+        <location filename="../ViewManager/ViewManager.py" line="2092"/>
         <source>Insert new line</source>
         <translation>Вставить новую строку</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2093"/>
+        <location filename="../ViewManager/ViewManager.py" line="2092"/>
         <source>Return</source>
         <translation>Return</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2093"/>
+        <location filename="../ViewManager/ViewManager.py" line="2092"/>
         <source>Enter</source>
         <translation>Enter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2103"/>
+        <location filename="../ViewManager/ViewManager.py" line="2102"/>
         <source>Insert new line below current line</source>
         <translation>Вставить новую строку после текущей</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2103"/>
+        <location filename="../ViewManager/ViewManager.py" line="2102"/>
         <source>Shift+Return</source>
         <translation>Shift+Return</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2103"/>
+        <location filename="../ViewManager/ViewManager.py" line="2102"/>
         <source>Shift+Enter</source>
         <translation>Shift+Enter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2116"/>
+        <location filename="../ViewManager/ViewManager.py" line="2115"/>
         <source>Delete current line</source>
         <translation>Удалить текущую строку</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2116"/>
+        <location filename="../ViewManager/ViewManager.py" line="2115"/>
         <source>Ctrl+Shift+L</source>
         <translation>Ctrl+Shift+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2127"/>
+        <location filename="../ViewManager/ViewManager.py" line="2126"/>
         <source>Duplicate current line</source>
         <translation>Дублировать текущую строку</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2127"/>
+        <location filename="../ViewManager/ViewManager.py" line="2126"/>
         <source>Ctrl+D</source>
         <translation>Ctrl+D</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2138"/>
+        <location filename="../ViewManager/ViewManager.py" line="2137"/>
         <source>Swap current and previous lines</source>
         <translation>Поменять местами предыдущую и последующую строки</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2138"/>
+        <location filename="../ViewManager/ViewManager.py" line="2137"/>
         <source>Ctrl+T</source>
         <translation>Ctrl+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2162"/>
+        <location filename="../ViewManager/ViewManager.py" line="2160"/>
         <source>Cut current line</source>
         <translation>Вырезать текущую строку</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2162"/>
+        <location filename="../ViewManager/ViewManager.py" line="2160"/>
         <source>Alt+Shift+L</source>
         <translation>Alt+Shift+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2172"/>
+        <location filename="../ViewManager/ViewManager.py" line="2170"/>
         <source>Copy current line</source>
         <translation>Копировать текущую строку</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2172"/>
+        <location filename="../ViewManager/ViewManager.py" line="2170"/>
         <source>Ctrl+Shift+T</source>
         <translation>Ctrl+Shift+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2183"/>
+        <location filename="../ViewManager/ViewManager.py" line="2181"/>
         <source>Toggle insert/overtype</source>
         <translation>Вставка/Замена</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2183"/>
+        <location filename="../ViewManager/ViewManager.py" line="2181"/>
         <source>Ins</source>
         <translation>Ins</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2747"/>
+        <location filename="../ViewManager/ViewManager.py" line="2745"/>
         <source>Convert selection to lower case</source>
         <translation>Преобразовать выделение в нижний регистр</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2747"/>
+        <location filename="../ViewManager/ViewManager.py" line="2745"/>
         <source>Alt+Shift+U</source>
         <translation>Alt+Shift+U</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2759"/>
+        <location filename="../ViewManager/ViewManager.py" line="2757"/>
         <source>Convert selection to upper case</source>
         <translation>Преобразовать выделение в верхний регистр</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2759"/>
+        <location filename="../ViewManager/ViewManager.py" line="2757"/>
         <source>Ctrl+Shift+U</source>
         <translation>Ctrl+Shift+U</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2205"/>
+        <location filename="../ViewManager/ViewManager.py" line="2203"/>
         <source>Alt+End</source>
         <translation>Alt+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2225"/>
+        <location filename="../ViewManager/ViewManager.py" line="2223"/>
         <source>Formfeed</source>
         <translation>Перевод страницы</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2234"/>
+        <location filename="../ViewManager/ViewManager.py" line="2232"/>
         <source>Escape</source>
         <translation>Escape</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2234"/>
+        <location filename="../ViewManager/ViewManager.py" line="2232"/>
         <source>Esc</source>
         <translation>Esc</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2243"/>
+        <location filename="../ViewManager/ViewManager.py" line="2241"/>
         <source>Extend rectangular selection down one line</source>
         <translation>Распространить прямоугольное выделение на одну строку вниз</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2243"/>
+        <location filename="../ViewManager/ViewManager.py" line="2241"/>
         <source>Alt+Ctrl+Down</source>
         <translation>Alt+Ctrl+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2259"/>
+        <location filename="../ViewManager/ViewManager.py" line="2257"/>
         <source>Extend rectangular selection up one line</source>
         <translation>Распространить прямоугольное выделение на одну строку вверх</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2259"/>
+        <location filename="../ViewManager/ViewManager.py" line="2257"/>
         <source>Alt+Ctrl+Up</source>
         <translation>Alt+Ctrl+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2274"/>
+        <location filename="../ViewManager/ViewManager.py" line="2272"/>
         <source>Extend rectangular selection left one character</source>
         <translation>Распространить прямоугольное выделение на один символ влево</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2274"/>
+        <location filename="../ViewManager/ViewManager.py" line="2272"/>
         <source>Alt+Ctrl+Left</source>
         <translation>Alt+Ctrl+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2292"/>
+        <location filename="../ViewManager/ViewManager.py" line="2290"/>
         <source>Extend rectangular selection right one character</source>
         <translation>Распространить прямоугольное выделение на один символ вправо</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2292"/>
+        <location filename="../ViewManager/ViewManager.py" line="2290"/>
         <source>Alt+Ctrl+Right</source>
         <translation>Alt+Ctrl+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2348"/>
+        <location filename="../ViewManager/ViewManager.py" line="2346"/>
         <source>Extend rectangular selection up one page</source>
         <translation>Распространить прямоугольное выделение на одну страницу вверх</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2363"/>
+        <location filename="../ViewManager/ViewManager.py" line="2361"/>
         <source>Extend rectangular selection down one page</source>
         <translation>Распространить прямоугольное выделение на одну страницу вниз</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2381"/>
+        <location filename="../ViewManager/ViewManager.py" line="2379"/>
         <source>Duplicate current selection</source>
         <translation>Дублировать текущее выделение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2381"/>
+        <location filename="../ViewManager/ViewManager.py" line="2379"/>
         <source>Ctrl+Shift+D</source>
         <translation>Ctrl+Shift+D</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3354"/>
+        <location filename="../ViewManager/ViewManager.py" line="3352"/>
         <source>&amp;Search</source>
         <translation>&amp;Поиск</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2788"/>
+        <location filename="../ViewManager/ViewManager.py" line="2786"/>
         <source>&amp;Edit</source>
         <translation>П&amp;равка</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2845"/>
+        <location filename="../ViewManager/ViewManager.py" line="2843"/>
         <source>Edit</source>
         <translation>Редактировать</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3449"/>
+        <location filename="../ViewManager/ViewManager.py" line="3447"/>
         <source>Search</source>
         <translation>Поиск</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2877"/>
+        <location filename="../ViewManager/ViewManager.py" line="2875"/>
         <source>&amp;Search...</source>
         <translation>&amp;Найти...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2877"/>
+        <location filename="../ViewManager/ViewManager.py" line="2875"/>
         <source>Ctrl+F</source>
         <comment>Search|Search</comment>
         <translation>Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2885"/>
+        <location filename="../ViewManager/ViewManager.py" line="2883"/>
         <source>Search for a text</source>
         <translation>Поиск текста</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2887"/>
+        <location filename="../ViewManager/ViewManager.py" line="2885"/>
         <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="2897"/>
+        <location filename="../ViewManager/ViewManager.py" line="2895"/>
         <source>Search next</source>
         <translation>Найти следующее</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2897"/>
+        <location filename="../ViewManager/ViewManager.py" line="2895"/>
         <source>Search &amp;next</source>
         <translation>&amp;Следующее</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2897"/>
+        <location filename="../ViewManager/ViewManager.py" line="2895"/>
         <source>F3</source>
         <comment>Search|Search next</comment>
         <translation>F3</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2906"/>
+        <location filename="../ViewManager/ViewManager.py" line="2904"/>
         <source>Search next occurrence of text</source>
         <translation>Поиск следующего вхождения текста</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2908"/>
+        <location filename="../ViewManager/ViewManager.py" line="2906"/>
         <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="2918"/>
+        <location filename="../ViewManager/ViewManager.py" line="2916"/>
         <source>Search previous</source>
         <translation>Найти предыдущее</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2918"/>
+        <location filename="../ViewManager/ViewManager.py" line="2916"/>
         <source>Search &amp;previous</source>
         <translation>&amp;Предыдущее</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2918"/>
+        <location filename="../ViewManager/ViewManager.py" line="2916"/>
         <source>Shift+F3</source>
         <comment>Search|Search previous</comment>
         <translation>Shift+F3</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="2924"/>
+        <source>Search previous occurrence of text</source>
+        <translation>Поиск предыдущего вхождения текста</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="2926"/>
-        <source>Search previous occurrence of text</source>
-        <translation>Поиск предыдущего вхождения текста</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2928"/>
         <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="2938"/>
+        <location filename="../ViewManager/ViewManager.py" line="2936"/>
         <source>Clear search markers</source>
         <translation>Убрать подсветку найденого</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2938"/>
+        <location filename="../ViewManager/ViewManager.py" line="2936"/>
         <source>Ctrl+3</source>
         <comment>Search|Clear search markers</comment>
         <translation>Ctrl+3</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="2944"/>
+        <source>Clear all displayed search markers</source>
+        <translation>Убрать подсветку всех результатов поиска</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="2946"/>
-        <source>Clear all displayed search markers</source>
-        <translation>Убрать подсветку всех результатов поиска</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2948"/>
         <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="3003"/>
+        <location filename="../ViewManager/ViewManager.py" line="3001"/>
         <source>Replace</source>
         <translation>Заменить</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3003"/>
+        <location filename="../ViewManager/ViewManager.py" line="3001"/>
         <source>&amp;Replace...</source>
         <translation>&amp;Заменить...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3003"/>
+        <location filename="../ViewManager/ViewManager.py" line="3001"/>
         <source>Ctrl+R</source>
         <comment>Search|Replace</comment>
         <translation>Ctrl+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3010"/>
+        <location filename="../ViewManager/ViewManager.py" line="3008"/>
         <source>Replace some text</source>
         <translation>Заменить заданный текст</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3012"/>
+        <location filename="../ViewManager/ViewManager.py" line="3010"/>
         <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="3389"/>
+        <location filename="../ViewManager/ViewManager.py" line="3387"/>
         <source>Quicksearch</source>
         <translation>Быстрый поиск</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3090"/>
+        <location filename="../ViewManager/ViewManager.py" line="3088"/>
         <source>&amp;Quicksearch</source>
         <translation>&amp;Быстрый поиск</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3090"/>
+        <location filename="../ViewManager/ViewManager.py" line="3088"/>
         <source>Ctrl+Shift+K</source>
         <comment>Search|Quicksearch</comment>
         <translation>Ctrl+Shift+K</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3096"/>
+        <source>Perform a quicksearch</source>
+        <translation>Выполнить быстрый поиск</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3098"/>
-        <source>Perform a quicksearch</source>
-        <translation>Выполнить быстрый поиск</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3100"/>
         <source>&lt;b&gt;Quicksearch&lt;/b&gt;&lt;p&gt;This activates the quicksearch function of the IDE by giving focus to the quicksearch entry field. If this field is already active and contains text, it searches for the next occurrence of this text.&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="3111"/>
+        <location filename="../ViewManager/ViewManager.py" line="3109"/>
         <source>Quicksearch backwards</source>
         <translation>Быстрый поиск назад</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3111"/>
+        <location filename="../ViewManager/ViewManager.py" line="3109"/>
         <source>Quicksearch &amp;backwards</source>
         <translation>Быстрый поиск &amp;назад</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3111"/>
+        <location filename="../ViewManager/ViewManager.py" line="3109"/>
         <source>Ctrl+Shift+J</source>
         <comment>Search|Quicksearch backwards</comment>
         <translation>Ctrl+Shift+J</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3121"/>
+        <location filename="../ViewManager/ViewManager.py" line="3119"/>
         <source>Perform a quicksearch backwards</source>
         <translation>Выполнить быстрый поиск назад</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3124"/>
+        <location filename="../ViewManager/ViewManager.py" line="3122"/>
         <source>&lt;b&gt;Quicksearch backwards&lt;/b&gt;&lt;p&gt;This searches the previous occurrence of the quicksearch text.&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="3133"/>
+        <location filename="../ViewManager/ViewManager.py" line="3131"/>
         <source>Quicksearch extend</source>
         <translation>Расширить быстрый поиск</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3133"/>
+        <location filename="../ViewManager/ViewManager.py" line="3131"/>
         <source>Quicksearch e&amp;xtend</source>
         <translation>Рас&amp;ширить быстрый поиск</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3133"/>
+        <location filename="../ViewManager/ViewManager.py" line="3131"/>
         <source>Ctrl+Shift+H</source>
         <comment>Search|Quicksearch extend</comment>
         <translation>Ctrl+Shift+H</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3141"/>
+        <location filename="../ViewManager/ViewManager.py" line="3139"/>
         <source>Extend the quicksearch to the end of the current word</source>
         <translation>Расширить быстрый поиск до конца текущего слова</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3144"/>
+        <location filename="../ViewManager/ViewManager.py" line="3142"/>
         <source>&lt;b&gt;Quicksearch extend&lt;/b&gt;&lt;p&gt;This extends the quicksearch text to the end of the word currently found.&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="3160"/>
+        <source>Goto Line</source>
+        <translation>Перейти на строку</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3152"/>
+        <source>&amp;Goto Line...</source>
+        <translation>&amp;Перейти на строку...</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3152"/>
+        <source>Ctrl+G</source>
+        <comment>Search|Goto Line</comment>
+        <translation>Ctrl+G</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3162"/>
-        <source>Goto Line</source>
-        <translation>Перейти на строку</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3154"/>
-        <source>&amp;Goto Line...</source>
-        <translation>&amp;Перейти на строку...</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3154"/>
-        <source>Ctrl+G</source>
-        <comment>Search|Goto Line</comment>
-        <translation>Ctrl+G</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3164"/>
         <source>&lt;b&gt;Goto Line&lt;/b&gt;&lt;p&gt;Go to a specific line of text in the current editor. A dialog is shown to enter the linenumber.&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="3181"/>
+        <location filename="../ViewManager/ViewManager.py" line="3179"/>
         <source>Goto Brace</source>
         <translation>Перейти к скобке</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3173"/>
+        <location filename="../ViewManager/ViewManager.py" line="3171"/>
         <source>Goto &amp;Brace</source>
         <translation>Перейти к &amp;скобке</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3173"/>
+        <location filename="../ViewManager/ViewManager.py" line="3171"/>
         <source>Ctrl+L</source>
         <comment>Search|Goto Brace</comment>
         <translation>Ctrl+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3183"/>
+        <location filename="../ViewManager/ViewManager.py" line="3181"/>
         <source>&lt;b&gt;Goto Brace&lt;/b&gt;&lt;p&gt;Go to the matching brace in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Перейти к скобке&lt;/b&gt;
 &lt;p&gt;Переход к соответствующей скобке.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3261"/>
+        <location filename="../ViewManager/ViewManager.py" line="3259"/>
         <source>Search in Files</source>
         <translation>Поиск в файлах</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3261"/>
+        <location filename="../ViewManager/ViewManager.py" line="3259"/>
         <source>Search in &amp;Files...</source>
         <translation>Найти в &amp;файлах...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3261"/>
+        <location filename="../ViewManager/ViewManager.py" line="3259"/>
         <source>Shift+Ctrl+F</source>
         <comment>Search|Search Files</comment>
         <translation>Shift+Ctrl+F</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3267"/>
+        <source>Search for a text in files</source>
+        <translation>Поиск заданного текста в файлах</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3269"/>
-        <source>Search for a text in files</source>
-        <translation>Поиск заданного текста в файлах</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3271"/>
         <source>&lt;b&gt;Search in Files&lt;/b&gt;&lt;p&gt;Search for some text in the files of a directory tree or the project. A dialog is shown to enter the searchtext and options for the search and to display the result.&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="3281"/>
+        <location filename="../ViewManager/ViewManager.py" line="3279"/>
         <source>Replace in Files</source>
         <translation>Заменить в файлах</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3281"/>
+        <location filename="../ViewManager/ViewManager.py" line="3279"/>
         <source>Replace in F&amp;iles...</source>
         <translation>Заменить в ф&amp;айлах...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3281"/>
+        <location filename="../ViewManager/ViewManager.py" line="3279"/>
         <source>Shift+Ctrl+R</source>
         <comment>Search|Replace in Files</comment>
         <translation>Shift+Ctrl+R</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3286"/>
+        <source>Search for a text in files and replace it</source>
+        <translation>Поиск заданного текста в файлах и его замена</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3288"/>
-        <source>Search for a text in files and replace it</source>
-        <translation>Поиск заданного текста в файлах и его замена</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3290"/>
         <source>&lt;b&gt;Replace in Files&lt;/b&gt;&lt;p&gt;Search for some text in the files of a directory tree or the project and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and to display the result.&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="3408"/>
+        <location filename="../ViewManager/ViewManager.py" line="3406"/>
         <source>&lt;p&gt;Enter the searchtext directly into this field. The search will be performed case insensitive. The quicksearch function is activated upon activation of the quicksearch next action (default key Ctrl+Shift+K), if this entry field does not have the input focus. Otherwise it searches for the next occurrence of the text entered. The quicksearch backwards action (default key Ctrl+Shift+J) searches backward. Activating the &apos;quicksearch extend&apos; action (default key Ctrl+Shift+H) extends the current searchtext to the end of the currently found word. The quicksearch can be ended by pressing the Return key while the quicksearch entry has the the input focus.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Введите текст поиска непосредственно в этом поле. Поиск будет выполняться без учёта регистра. Функция быстрого поиска активизируется при запуске быстрого поиска (по умолчанию клавиш Ctrl+Shift+K). если в этом поле не находится фокус ввода. В противном случае выполняется поиск следующего вхождения заданного текста. Быстрый поиск назад (по умолчанию клавиш Ctrl+Shift+J) выполняет поиск назад. Активация действия &apos;продлить быстрый поиск&apos; (по умолчанию клавиш Ctrl+Shift+H) продляет действие текущего шаблона поиска до конца текущего найденного слова. Если поле ввода быстрого поиска активно, то выйти из режима поиска можно просто нажав клавишу &quot;Ввод&quot;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3435"/>
+        <location filename="../ViewManager/ViewManager.py" line="3433"/>
         <source>Quicksearch Textedit</source>
         <translation>Быстрый поиск</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3487"/>
         <source>Zoom in</source>
         <translation>Увеличить масштаб</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3487"/>
         <source>Zoom &amp;in</source>
         <translation>У&amp;величить масштаб</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3487"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation>Ctrl++</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3498"/>
+        <location filename="../ViewManager/ViewManager.py" line="3496"/>
         <source>Zoom in on the text</source>
         <translation>Увеличить масштаб текста</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3500"/>
+        <location filename="../ViewManager/ViewManager.py" line="3498"/>
         <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="3508"/>
+        <location filename="../ViewManager/ViewManager.py" line="3506"/>
         <source>Zoom out</source>
         <translation>Уменьшить масштаб</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3508"/>
+        <location filename="../ViewManager/ViewManager.py" line="3506"/>
         <source>Zoom &amp;out</source>
         <translation>У&amp;меньшить масштаб</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3508"/>
+        <location filename="../ViewManager/ViewManager.py" line="3506"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation>Ctrl+-</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3515"/>
+        <source>Zoom out on the text</source>
+        <translation>Уменьшить масштаб текста</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3517"/>
-        <source>Zoom out on the text</source>
-        <translation>Уменьшить масштаб текста</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3519"/>
         <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="3546"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>Zoom</source>
         <translation>Масштаб</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3546"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>&amp;Zoom</source>
         <translation>Мас&amp;штаб</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3546"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>Ctrl+#</source>
         <comment>View|Zoom</comment>
         <translation>Ctrl+#</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3554"/>
+        <location filename="../ViewManager/ViewManager.py" line="3552"/>
         <source>Zoom the text</source>
         <translation>Масштаб текста</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3556"/>
+        <location filename="../ViewManager/ViewManager.py" line="3554"/>
         <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>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3567"/>
+        <source>Toggle all folds</source>
+        <translation>Свернуть/Развернуть все свертки</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3563"/>
+        <source>&amp;Toggle all folds</source>
+        <translation>&amp;Свернуть/Развернуть все свертки</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3569"/>
-        <source>Toggle all folds</source>
-        <translation>Свернуть/Развернуть все свертки</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3565"/>
-        <source>&amp;Toggle all folds</source>
-        <translation>&amp;Свернуть/Развернуть все свертки</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3571"/>
         <source>&lt;b&gt;Toggle all folds&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Свернуть/Развернуть все свертки&lt;/b&gt;&lt;p&gt;Свернуть/Развернуть все свертки текущего редактора.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3583"/>
+        <source>Toggle all folds (including children)</source>
+        <translation>Свернуть/Развернуть все свёртки (включая дочерние)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3577"/>
+        <source>Toggle all &amp;folds (including children)</source>
+        <translation>Свернуть/Развернуть все &amp;свёртки (включая дочерние)</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3585"/>
-        <source>Toggle all folds (including children)</source>
-        <translation>Свернуть/Развернуть все свёртки (включая дочерние)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3579"/>
-        <source>Toggle all &amp;folds (including children)</source>
-        <translation>Свернуть/Развернуть все &amp;свёртки (включая дочерние)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3587"/>
         <source>&lt;b&gt;Toggle all folds (including children)&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor including all children.&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="3599"/>
+        <source>Toggle current fold</source>
+        <translation>Свернуть/Развернуть текущую свертку</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3595"/>
+        <source>Toggle &amp;current fold</source>
+        <translation>Свернуть/Развернуть &amp;текущую свертку</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3601"/>
-        <source>Toggle current fold</source>
-        <translation>Свернуть/Развернуть текущую свертку</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3597"/>
-        <source>Toggle &amp;current fold</source>
-        <translation>Свернуть/Развернуть &amp;текущую свертку</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3603"/>
         <source>&lt;b&gt;Toggle current fold&lt;/b&gt;&lt;p&gt;Toggle the folds of the current line of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Свернуть/Развернуть текущую свертку&lt;/b&gt;&lt;p&gt;Свернуть/Развернуть свертку текущей строки текущего редактора.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3631"/>
+        <source>Remove all highlights</source>
+        <translation>Снять все выделения</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3633"/>
-        <source>Remove all highlights</source>
-        <translation>Снять все выделения</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3635"/>
         <source>&lt;b&gt;Remove all highlights&lt;/b&gt;&lt;p&gt;Remove the highlights of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Снять все выделения&lt;/b&gt;&lt;p&gt;Снять выделения во всех редакторах.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3681"/>
+        <location filename="../ViewManager/ViewManager.py" line="3679"/>
         <source>Split view</source>
         <translation>Разделить окно</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3681"/>
+        <location filename="../ViewManager/ViewManager.py" line="3679"/>
         <source>&amp;Split view</source>
         <translation>&amp;Разделить окно</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3684"/>
+        <source>Add a split to the view</source>
+        <translation>Разделить текущее окно</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3686"/>
-        <source>Add a split to the view</source>
-        <translation>Разделить текущее окно</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3688"/>
         <source>&lt;b&gt;Split view&lt;/b&gt;&lt;p&gt;Add a split to the view.&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="3696"/>
+        <location filename="../ViewManager/ViewManager.py" line="3694"/>
         <source>Arrange horizontally</source>
         <translation>Расположить окна горизонтально</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3696"/>
+        <location filename="../ViewManager/ViewManager.py" line="3694"/>
         <source>Arrange &amp;horizontally</source>
         <translation>Расположить окна &amp;горизонтально</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3698"/>
+        <source>Arrange the splitted views horizontally</source>
+        <translation>Расположить разделённые окна горизонтально</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3700"/>
-        <source>Arrange the splitted views horizontally</source>
-        <translation>Расположить разделённые окна горизонтально</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3702"/>
         <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&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="3711"/>
+        <location filename="../ViewManager/ViewManager.py" line="3709"/>
         <source>Remove split</source>
         <translation>Отменить разделение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3711"/>
+        <location filename="../ViewManager/ViewManager.py" line="3709"/>
         <source>&amp;Remove split</source>
         <translation>&amp;Отменить разделение</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3714"/>
+        <source>Remove the current split</source>
+        <translation>Отменить текущее разделение</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3716"/>
-        <source>Remove the current split</source>
-        <translation>Отменить текущее разделение</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3718"/>
         <source>&lt;b&gt;Remove split&lt;/b&gt;&lt;p&gt;Remove the current split.&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="3726"/>
+        <location filename="../ViewManager/ViewManager.py" line="3724"/>
         <source>Next split</source>
         <translation>Следующее разделение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3726"/>
+        <location filename="../ViewManager/ViewManager.py" line="3724"/>
         <source>&amp;Next split</source>
         <translation>&amp;Следующее разделение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3726"/>
+        <location filename="../ViewManager/ViewManager.py" line="3724"/>
         <source>Ctrl+Alt+N</source>
         <comment>View|Next split</comment>
         <translation>Ctrl+Alt+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3733"/>
+        <location filename="../ViewManager/ViewManager.py" line="3731"/>
         <source>Move to the next split</source>
         <translation>Перейти в следующее разделение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3735"/>
+        <location filename="../ViewManager/ViewManager.py" line="3733"/>
         <source>&lt;b&gt;Next split&lt;/b&gt;&lt;p&gt;Move to the next split.&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="3743"/>
+        <location filename="../ViewManager/ViewManager.py" line="3741"/>
         <source>Previous split</source>
         <translation>Предыдущее разделение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3743"/>
+        <location filename="../ViewManager/ViewManager.py" line="3741"/>
         <source>&amp;Previous split</source>
         <translation>&amp;Предыдущее разделение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3743"/>
+        <location filename="../ViewManager/ViewManager.py" line="3741"/>
         <source>Ctrl+Alt+P</source>
         <comment>View|Previous split</comment>
         <translation>Ctrl+Alt+P</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3747"/>
+        <source>Move to the previous split</source>
+        <translation>Перейти в предыдущее разделение</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3749"/>
-        <source>Move to the previous split</source>
-        <translation>Перейти в предыдущее разделение</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3751"/>
         <source>&lt;b&gt;Previous split&lt;/b&gt;&lt;p&gt;Move to the previous split.&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="3835"/>
+        <location filename="../ViewManager/ViewManager.py" line="3833"/>
         <source>&amp;View</source>
         <translation>&amp;Вид</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3872"/>
+        <location filename="../ViewManager/ViewManager.py" line="3870"/>
         <source>View</source>
         <translation>Вид</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3906"/>
+        <source>Start Macro Recording</source>
+        <translation>Начать запись макроса</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3900"/>
+        <source>S&amp;tart Macro Recording</source>
+        <translation>&amp;Начать запись макроса</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3908"/>
-        <source>Start Macro Recording</source>
-        <translation>Начать запись макроса</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3902"/>
-        <source>S&amp;tart Macro Recording</source>
-        <translation>&amp;Начать запись макроса</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3910"/>
         <source>&lt;b&gt;Start Macro Recording&lt;/b&gt;&lt;p&gt;Start recording editor commands into a new macro.&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="3920"/>
+        <source>Stop Macro Recording</source>
+        <translation>Закончить запись макроса</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3916"/>
+        <source>Sto&amp;p Macro Recording</source>
+        <translation>&amp;Закончить запись макроса</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3922"/>
-        <source>Stop Macro Recording</source>
-        <translation>Закончить запись макроса</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3918"/>
-        <source>Sto&amp;p Macro Recording</source>
-        <translation>&amp;Закончить запись макроса</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3924"/>
         <source>&lt;b&gt;Stop Macro Recording&lt;/b&gt;&lt;p&gt;Stop recording editor commands into a new macro.&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="3936"/>
+        <location filename="../ViewManager/ViewManager.py" line="3934"/>
         <source>Run Macro</source>
         <translation>Выполнить макрос</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3932"/>
+        <location filename="../ViewManager/ViewManager.py" line="3930"/>
         <source>&amp;Run Macro</source>
         <translation>&amp;Выполнить макрос</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3938"/>
+        <location filename="../ViewManager/ViewManager.py" line="3936"/>
         <source>&lt;b&gt;Run Macro&lt;/b&gt;&lt;p&gt;Run a previously recorded editor macro.&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="3950"/>
+        <location filename="../ViewManager/ViewManager.py" line="3948"/>
         <source>Delete Macro</source>
         <translation>Удалить макрос</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3946"/>
+        <location filename="../ViewManager/ViewManager.py" line="3944"/>
         <source>&amp;Delete Macro</source>
         <translation>&amp;Удалить макрос</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3952"/>
+        <location filename="../ViewManager/ViewManager.py" line="3950"/>
         <source>&lt;b&gt;Delete Macro&lt;/b&gt;&lt;p&gt;Delete a previously recorded editor macro.&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="3962"/>
+        <source>Load Macro</source>
+        <translation>Загрузить макрос</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3958"/>
+        <source>&amp;Load Macro</source>
+        <translation>&amp;Загрузить макрос</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3964"/>
-        <source>Load Macro</source>
-        <translation>Загрузить макрос</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3960"/>
-        <source>&amp;Load Macro</source>
-        <translation>&amp;Загрузить макрос</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3966"/>
         <source>&lt;b&gt;Load Macro&lt;/b&gt;&lt;p&gt;Load an editor macro from a file.&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="3976"/>
+        <source>Save Macro</source>
+        <translation>Сохранить макрос</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3972"/>
+        <source>&amp;Save Macro</source>
+        <translation>&amp;Сохранить макрос</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3978"/>
-        <source>Save Macro</source>
-        <translation>Сохранить макрос</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3974"/>
-        <source>&amp;Save Macro</source>
-        <translation>&amp;Сохранить макрос</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3980"/>
         <source>&lt;b&gt;Save Macro&lt;/b&gt;&lt;p&gt;Save a previously recorded editor macro to a file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Сохранить макрос&lt;/b&gt;&lt;p&gt;Сохранить записанный макрос в файл.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3996"/>
+        <location filename="../ViewManager/ViewManager.py" line="3994"/>
         <source>&amp;Macros</source>
         <translation>&amp;Макросы</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4020"/>
+        <source>Toggle Bookmark</source>
+        <translation>Создать/Удалить закладку</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <source>&amp;Toggle Bookmark</source>
+        <translation>&amp;Создать/Удалить закладку</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <source>Alt+Ctrl+T</source>
+        <comment>Bookmark|Toggle</comment>
+        <translation>Alt+Ctrl+T</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4022"/>
-        <source>Toggle Bookmark</source>
-        <translation>Создать/Удалить закладку</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4014"/>
-        <source>&amp;Toggle Bookmark</source>
-        <translation>&amp;Создать/Удалить закладку</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4014"/>
-        <source>Alt+Ctrl+T</source>
-        <comment>Bookmark|Toggle</comment>
-        <translation>Alt+Ctrl+T</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4024"/>
         <source>&lt;b&gt;Toggle Bookmark&lt;/b&gt;&lt;p&gt;Toggle a bookmark at the current line of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Создать/Удалить закладку&lt;/b&gt;&lt;p&gt;Создать/Удалить закладку на текущей строке текущего редактора.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4039"/>
+        <source>Next Bookmark</source>
+        <translation>Следующая закладка</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4031"/>
+        <source>&amp;Next Bookmark</source>
+        <translation>&amp;Следующая закладка</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4031"/>
+        <source>Ctrl+PgDown</source>
+        <comment>Bookmark|Next</comment>
+        <translation>Ctrl+PgDown</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4041"/>
-        <source>Next Bookmark</source>
-        <translation>Следующая закладка</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4033"/>
-        <source>&amp;Next Bookmark</source>
-        <translation>&amp;Следующая закладка</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4033"/>
-        <source>Ctrl+PgDown</source>
-        <comment>Bookmark|Next</comment>
-        <translation>Ctrl+PgDown</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4043"/>
         <source>&lt;b&gt;Next Bookmark&lt;/b&gt;&lt;p&gt;Go to next bookmark of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Следующая закладка&lt;/b&gt;
 &lt;p&gt;Переход к следующей закладке в текущем редакторе.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4059"/>
+        <location filename="../ViewManager/ViewManager.py" line="4057"/>
         <source>Previous Bookmark</source>
         <translation>Предыдущая закладка</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4051"/>
+        <location filename="../ViewManager/ViewManager.py" line="4049"/>
         <source>&amp;Previous Bookmark</source>
         <translation>&amp;Предыдущая закладка</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4051"/>
+        <location filename="../ViewManager/ViewManager.py" line="4049"/>
         <source>Ctrl+PgUp</source>
         <comment>Bookmark|Previous</comment>
         <translation>Ctrl+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4061"/>
+        <location filename="../ViewManager/ViewManager.py" line="4059"/>
         <source>&lt;b&gt;Previous Bookmark&lt;/b&gt;&lt;p&gt;Go to previous bookmark of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Предыдущая закладка&lt;/b&gt;
 &lt;p&gt;Переход к предыдущей закладке в текущем редакторе.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4074"/>
+        <source>Clear Bookmarks</source>
+        <translation>Стереть закладки</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <source>&amp;Clear Bookmarks</source>
+        <translation>&amp;Стереть закладки</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <source>Alt+Ctrl+C</source>
+        <comment>Bookmark|Clear</comment>
+        <translation>Alt+Ctrl+C</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4076"/>
-        <source>Clear Bookmarks</source>
-        <translation>Стереть закладки</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4069"/>
-        <source>&amp;Clear Bookmarks</source>
-        <translation>&amp;Стереть закладки</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4069"/>
-        <source>Alt+Ctrl+C</source>
-        <comment>Bookmark|Clear</comment>
-        <translation>Alt+Ctrl+C</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4078"/>
         <source>&lt;b&gt;Clear Bookmarks&lt;/b&gt;&lt;p&gt;Clear bookmarks of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Стереть закладки&lt;/b&gt;&lt;p&gt;Убрать закладки из всех редакторов.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4090"/>
+        <source>Goto Syntax Error</source>
+        <translation>Перейти к синтаксической ошибке</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4084"/>
+        <source>&amp;Goto Syntax Error</source>
+        <translation>&amp;Перейти к синтаксической ошибке</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4092"/>
-        <source>Goto Syntax Error</source>
-        <translation>Перейти к синтаксической ошибке</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4086"/>
-        <source>&amp;Goto Syntax Error</source>
-        <translation>&amp;Перейти к синтаксической ошибке</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4094"/>
         <source>&lt;b&gt;Goto Syntax Error&lt;/b&gt;&lt;p&gt;Go to next syntax error of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Перейти к синтаксической ошибке&lt;/b&gt;
 &lt;p&gt;Переход к следующей синтаксической ошибке в текущем редакторе.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4105"/>
+        <source>Clear Syntax Errors</source>
+        <translation>Очистить синтаксические ошибки</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4100"/>
+        <source>Clear &amp;Syntax Errors</source>
+        <translation>Очистить синтаксические &amp;ошибки</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4107"/>
-        <source>Clear Syntax Errors</source>
-        <translation>Очистить синтаксические ошибки</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4102"/>
-        <source>Clear &amp;Syntax Errors</source>
-        <translation>Очистить синтаксические &amp;ошибки</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4109"/>
         <source>&lt;b&gt;Clear Syntax Errors&lt;/b&gt;&lt;p&gt;Clear syntax errors of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Очистить синтаксические ошибки&lt;/b&gt;&lt;p&gt;Убрать сообщения об синтаксических ошибках во всех редакторах.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4124"/>
+        <location filename="../ViewManager/ViewManager.py" line="4122"/>
         <source>Next warning message</source>
         <translation>Следующее предупреждение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4118"/>
+        <location filename="../ViewManager/ViewManager.py" line="4116"/>
         <source>&amp;Next warning message</source>
         <translation>&amp;Следующее предупреждение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4143"/>
+        <location filename="../ViewManager/ViewManager.py" line="4141"/>
         <source>Previous warning message</source>
         <translation>Предыдущее предупреждение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4135"/>
+        <location filename="../ViewManager/ViewManager.py" line="4133"/>
         <source>&amp;Previous warning message</source>
         <translation>&amp;Предыдущее предупреждение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4161"/>
+        <location filename="../ViewManager/ViewManager.py" line="4159"/>
         <source>Clear Warning Messages</source>
         <translation>Очистить предупреждения</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4154"/>
+        <location filename="../ViewManager/ViewManager.py" line="4152"/>
         <source>Clear &amp;Warning Messages</source>
         <translation>&amp;Очистить предупреждения</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4175"/>
+        <source>Next uncovered line</source>
+        <translation>Следующая неохваченная строка</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4169"/>
+        <source>&amp;Next uncovered line</source>
+        <translation>&amp;Следующая неохваченная строка</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4177"/>
-        <source>Next uncovered line</source>
-        <translation>Следующая неохваченная строка</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4171"/>
-        <source>&amp;Next uncovered line</source>
-        <translation>&amp;Следующая неохваченная строка</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4179"/>
         <source>&lt;b&gt;Next uncovered line&lt;/b&gt;&lt;p&gt;Go to next line of the current editor marked as not covered.&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="4194"/>
+        <source>Previous uncovered line</source>
+        <translation>Предыдущая неохваченная строка</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4186"/>
+        <source>&amp;Previous uncovered line</source>
+        <translation>&amp;Предыдущая неохваченная строка</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4196"/>
-        <source>Previous uncovered line</source>
-        <translation>Предыдущая неохваченная строка</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4188"/>
-        <source>&amp;Previous uncovered line</source>
-        <translation>&amp;Предыдущая неохваченная строка</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4198"/>
         <source>&lt;b&gt;Previous uncovered line&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor marked as not covered.&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="4212"/>
+        <source>Next Task</source>
+        <translation>Следующая задача</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4206"/>
+        <source>&amp;Next Task</source>
+        <translation>&amp;Следующая задача</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4214"/>
-        <source>Next Task</source>
-        <translation>Следующая задача</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4208"/>
-        <source>&amp;Next Task</source>
-        <translation>&amp;Следующая задача</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4216"/>
         <source>&lt;b&gt;Next Task&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a task.&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="4229"/>
+        <source>Previous Task</source>
+        <translation>Предыдущая задача</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4222"/>
+        <source>&amp;Previous Task</source>
+        <translation>&amp;Предыдущая задача</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4231"/>
-        <source>Previous Task</source>
-        <translation>Предыдущая задача</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4224"/>
-        <source>&amp;Previous Task</source>
-        <translation>&amp;Предыдущая задача</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4233"/>
         <source>&lt;b&gt;Previous Task&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a task.&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="4287"/>
+        <location filename="../ViewManager/ViewManager.py" line="4285"/>
         <source>&amp;Bookmarks</source>
         <translation>&amp;Закладки</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4333"/>
+        <location filename="../ViewManager/ViewManager.py" line="4331"/>
         <source>Bookmarks</source>
         <translation>Закладки</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4366"/>
+        <location filename="../ViewManager/ViewManager.py" line="4364"/>
         <source>Shift+F7</source>
         <comment>Spelling|Spell Check</comment>
         <translation>Shift+F7</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4375"/>
+        <location filename="../ViewManager/ViewManager.py" line="4373"/>
         <source>Perform spell check of current editor</source>
         <translation>Проверить орфографию в текущем редакторе</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4385"/>
+        <location filename="../ViewManager/ViewManager.py" line="4383"/>
         <source>Automatic spell checking</source>
         <translation>Автоматическая проверка орфографии</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4385"/>
+        <location filename="../ViewManager/ViewManager.py" line="4383"/>
         <source>&amp;Automatic spell checking</source>
         <translation>&amp;Автоматическая проверка орфографии</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4391"/>
+        <source>(De-)Activate automatic spell checking</source>
+        <translation>Разрешить/Запретить автоматическую проверку орфографии</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4393"/>
-        <source>(De-)Activate automatic spell checking</source>
-        <translation>Разрешить/Запретить автоматическую проверку орфографии</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4395"/>
         <source>&lt;b&gt;Automatic spell checking&lt;/b&gt;&lt;p&gt;Activate or deactivate the automatic spell checking function of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Автоматическая проверка орфографии&lt;/b&gt;&lt;p&gt;Запретить или разрешить автоматическую проверку орфографии.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4462"/>
+        <location filename="../ViewManager/ViewManager.py" line="4460"/>
         <source>Spelling</source>
         <translation>Проверка орфографии</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4485"/>
+        <location filename="../ViewManager/ViewManager.py" line="4483"/>
         <source>Open files</source>
         <translation>Открыть файлы</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4529"/>
+        <location filename="../ViewManager/ViewManager.py" line="4527"/>
         <source>File Modified</source>
         <translation>Файл изменён</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4529"/>
+        <location filename="../ViewManager/ViewManager.py" line="4527"/>
         <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="../ViewManager/ViewManager.py" line="4928"/>
+        <location filename="../ViewManager/ViewManager.py" line="4926"/>
         <source>Line: {0:5}</source>
         <translation>Строка: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4934"/>
+        <location filename="../ViewManager/ViewManager.py" line="4932"/>
         <source>Pos: {0:5}</source>
         <translation>Позиция: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5373"/>
+        <location filename="../ViewManager/ViewManager.py" line="5371"/>
         <source>&amp;Clear</source>
         <translation>&amp;Очистить</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5367"/>
+        <location filename="../ViewManager/ViewManager.py" line="5365"/>
         <source>&amp;Add</source>
         <translation>&amp;Добавить</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5370"/>
+        <location filename="../ViewManager/ViewManager.py" line="5368"/>
         <source>&amp;Edit...</source>
         <translation>&amp;Правка...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3202"/>
+        <location filename="../ViewManager/ViewManager.py" line="3200"/>
         <source>Goto Last Edit Location</source>
         <translation>Перейти к месту последнего редактирования</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3191"/>
+        <location filename="../ViewManager/ViewManager.py" line="3189"/>
         <source>Goto Last &amp;Edit Location</source>
         <translation>П&amp;ерейти к месту последнего редактирования</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3191"/>
+        <location filename="../ViewManager/ViewManager.py" line="3189"/>
         <source>Ctrl+Shift+G</source>
         <comment>Search|Goto Last Edit Location</comment>
         <translation>Ctrl+Shift+G</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3205"/>
+        <location filename="../ViewManager/ViewManager.py" line="3203"/>
         <source>&lt;b&gt;Goto Last Edit Location&lt;/b&gt;&lt;p&gt;Go to the location of the last edit in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Перейти к месту последнего редактирования&lt;/b&gt;&lt;p&gt;Переход к месту последнего редактирования в текущем редакторе.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3214"/>
+        <location filename="../ViewManager/ViewManager.py" line="3212"/>
         <source>Goto Previous Method or Class</source>
         <translation>Перейти к предыдущему методу или классу</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3214"/>
+        <location filename="../ViewManager/ViewManager.py" line="3212"/>
         <source>Ctrl+Shift+Up</source>
         <comment>Search|Goto Previous Method or Class</comment>
         <translation>Ctrl+Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3224"/>
+        <location filename="../ViewManager/ViewManager.py" line="3222"/>
         <source>Go to the previous method or class definition</source>
         <translation>Перейти к предыдущему объявлению метода или класса</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3228"/>
+        <location filename="../ViewManager/ViewManager.py" line="3226"/>
         <source>&lt;b&gt;Goto Previous Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the previous method or class definition and highlights the name.&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="3238"/>
+        <location filename="../ViewManager/ViewManager.py" line="3236"/>
         <source>Goto Next Method or Class</source>
         <translation>Перейти к следующему методу или классу</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3238"/>
+        <location filename="../ViewManager/ViewManager.py" line="3236"/>
         <source>Ctrl+Shift+Down</source>
         <comment>Search|Goto Next Method or Class</comment>
         <translation>Ctrl+Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3248"/>
+        <location filename="../ViewManager/ViewManager.py" line="3246"/>
         <source>Go to the next method or class definition</source>
         <translation>Перейти к следующему объявлению метода или класса</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3250"/>
+        <location filename="../ViewManager/ViewManager.py" line="3248"/>
         <source>&lt;b&gt;Goto Next Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the next method or class definition and highlights the name.&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="3759"/>
+        <location filename="../ViewManager/ViewManager.py" line="3757"/>
         <source>Preview</source>
         <translation>Предварительный просмотр</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3762"/>
+        <source>Preview the current file in the web browser</source>
+        <translation>Предварительный просмотр текущего файла в web-браузере</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3764"/>
-        <source>Preview the current file in the web browser</source>
-        <translation>Предварительный просмотр текущего файла в web-браузере</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3766"/>
         <source>&lt;b&gt;Preview&lt;/b&gt;&lt;p&gt;This opens the web browser with a preview of the current file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Предварительный просмотр&lt;/b&gt;&lt;p&gt;Предварительный просмотр текущего файла в web-браузере.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1490"/>
+        <location filename="../ViewManager/ViewManager.py" line="1489"/>
         <source>Meta+B</source>
         <translation>Meta+B</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1503"/>
+        <location filename="../ViewManager/ViewManager.py" line="1502"/>
         <source>Meta+F</source>
         <translation>Meta+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1515"/>
+        <location filename="../ViewManager/ViewManager.py" line="1514"/>
         <source>Meta+P</source>
         <translation>Meta+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1527"/>
+        <location filename="../ViewManager/ViewManager.py" line="1526"/>
         <source>Meta+N</source>
         <translation>Meta+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1588"/>
+        <location filename="../ViewManager/ViewManager.py" line="1587"/>
         <source>Move to first visible character in document line</source>
         <translation>Перейти к первому видимому символу в строке документа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1604"/>
+        <location filename="../ViewManager/ViewManager.py" line="1603"/>
         <source>Move to start of display line</source>
         <translation>Перейти на начало строки экрана</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1621"/>
+        <location filename="../ViewManager/ViewManager.py" line="1620"/>
         <source>Move to end of document line</source>
         <translation>Перейти на конец строки документа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1629"/>
+        <location filename="../ViewManager/ViewManager.py" line="1628"/>
         <source>Meta+E</source>
         <translation>Meta+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1697"/>
+        <location filename="../ViewManager/ViewManager.py" line="1696"/>
         <source>Meta+V</source>
         <translation>Meta+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1703"/>
+        <location filename="../ViewManager/ViewManager.py" line="1702"/>
         <source>Move to start of document</source>
         <translation>Перейти на начало документа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1720"/>
+        <location filename="../ViewManager/ViewManager.py" line="1719"/>
         <source>Move to end of document</source>
         <translation>Перейти на конец документа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1765"/>
+        <location filename="../ViewManager/ViewManager.py" line="1764"/>
         <source>Meta+Shift+B</source>
         <translation>Meta+Shift+B</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1780"/>
+        <location filename="../ViewManager/ViewManager.py" line="1779"/>
         <source>Meta+Shift+F</source>
         <translation>Meta+Shift+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1795"/>
+        <location filename="../ViewManager/ViewManager.py" line="1794"/>
         <source>Meta+Shift+P</source>
         <translation>Meta+Shift+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1810"/>
+        <location filename="../ViewManager/ViewManager.py" line="1809"/>
         <source>Meta+Shift+N</source>
         <translation>Meta+Shift+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1878"/>
+        <location filename="../ViewManager/ViewManager.py" line="1877"/>
         <source>Extend selection to first visible character in document line</source>
         <translation>Распространить выделение до первого видимого символа в строке документа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1896"/>
+        <location filename="../ViewManager/ViewManager.py" line="1895"/>
         <source>Extend selection to end of document line</source>
         <translation>Распространить выделение до конца строки документа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1904"/>
+        <location filename="../ViewManager/ViewManager.py" line="1903"/>
         <source>Meta+Shift+E</source>
         <translation>Meta+Shift+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1961"/>
+        <location filename="../ViewManager/ViewManager.py" line="1960"/>
         <source>Meta+Shift+V</source>
         <translation>Meta+Shift+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1967"/>
+        <location filename="../ViewManager/ViewManager.py" line="1966"/>
         <source>Extend selection to start of document</source>
         <translation>Распространить выделение до начала документа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1975"/>
+        <location filename="../ViewManager/ViewManager.py" line="1974"/>
         <source>Ctrl+Shift+Up</source>
         <translation>Ctrl+Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1984"/>
+        <location filename="../ViewManager/ViewManager.py" line="1983"/>
         <source>Extend selection to end of document</source>
         <translation>Распространить выделение до конца документа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1992"/>
+        <location filename="../ViewManager/ViewManager.py" line="1991"/>
         <source>Ctrl+Shift+Down</source>
         <translation>Ctrl+Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2010"/>
+        <location filename="../ViewManager/ViewManager.py" line="2009"/>
         <source>Meta+H</source>
         <translation>Meta+H</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2019"/>
+        <location filename="../ViewManager/ViewManager.py" line="2018"/>
         <source>Delete previous character if not at start of line</source>
         <translation>Удалить предыдущий символ если он не первый в строке</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2040"/>
+        <location filename="../ViewManager/ViewManager.py" line="2039"/>
         <source>Meta+D</source>
         <translation>Meta+D</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2084"/>
+        <location filename="../ViewManager/ViewManager.py" line="2083"/>
         <source>Meta+K</source>
         <translation>Meta+K</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2194"/>
+        <location filename="../ViewManager/ViewManager.py" line="2192"/>
         <source>Move to end of display line</source>
         <translation>Перейти на конец строки экрана</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2211"/>
+        <location filename="../ViewManager/ViewManager.py" line="2209"/>
         <source>Extend selection to end of display line</source>
         <translation>Распространить выделение до конца строки экрана</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2253"/>
+        <location filename="../ViewManager/ViewManager.py" line="2251"/>
         <source>Meta+Alt+Shift+N</source>
         <translation>Meta+Alt+Shift+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2268"/>
+        <location filename="../ViewManager/ViewManager.py" line="2266"/>
         <source>Meta+Alt+Shift+P</source>
         <translation>Meta+Alt+Shift+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2286"/>
+        <location filename="../ViewManager/ViewManager.py" line="2284"/>
         <source>Meta+Alt+Shift+B</source>
         <translation>Meta+Alt+Shift+B</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2304"/>
+        <location filename="../ViewManager/ViewManager.py" line="2302"/>
         <source>Meta+Alt+Shift+F</source>
         <translation>Meta+Alt+Shift+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2310"/>
+        <location filename="../ViewManager/ViewManager.py" line="2308"/>
         <source>Extend rectangular selection to first visible character in document line</source>
         <translation>Распространить прямоугольное выделение до первого видимого символа в строке документа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2329"/>
+        <location filename="../ViewManager/ViewManager.py" line="2327"/>
         <source>Extend rectangular selection to end of document line</source>
         <translation>Распространить прямоугольное выделение до конца строки документа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2339"/>
+        <location filename="../ViewManager/ViewManager.py" line="2337"/>
         <source>Meta+Alt+Shift+E</source>
         <translation>Meta+Alt+Shift+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2342"/>
+        <location filename="../ViewManager/ViewManager.py" line="2340"/>
         <source>Alt+Shift+End</source>
         <translation>Alt+Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2363"/>
+        <location filename="../ViewManager/ViewManager.py" line="2361"/>
         <source>Alt+Shift+PgDown</source>
         <translation>Alt+Shift+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2375"/>
+        <location filename="../ViewManager/ViewManager.py" line="2373"/>
         <source>Meta+Alt+Shift+V</source>
         <translation>Meta+Alt+Shift+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2395"/>
+        <location filename="../ViewManager/ViewManager.py" line="2393"/>
         <source>Scroll to start of document</source>
         <translation>Прокрутить на начало документа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2410"/>
+        <location filename="../ViewManager/ViewManager.py" line="2408"/>
         <source>Scroll to end of document</source>
         <translation>Прокрутить на конец документа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2425"/>
+        <location filename="../ViewManager/ViewManager.py" line="2423"/>
         <source>Scroll vertically to center current line</source>
         <translation>Прокрутить вертикально до центра текущей строки</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2433"/>
+        <location filename="../ViewManager/ViewManager.py" line="2431"/>
         <source>Meta+L</source>
         <translation>Meta+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2440"/>
+        <location filename="../ViewManager/ViewManager.py" line="2438"/>
         <source>Move to end of next word</source>
         <translation>Перейти в конец следующего слова</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2455"/>
+        <location filename="../ViewManager/ViewManager.py" line="2453"/>
         <source>Extend selection to end of next word</source>
         <translation>Распространить выделение до конца следующего слова</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2471"/>
+        <location filename="../ViewManager/ViewManager.py" line="2469"/>
         <source>Move to end of previous word</source>
         <translation>Перейти в конец предыдущего слова</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2483"/>
+        <location filename="../ViewManager/ViewManager.py" line="2481"/>
         <source>Extend selection to end of previous word</source>
         <translation>Распространить выделение до конца предыдущего слова</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2495"/>
+        <location filename="../ViewManager/ViewManager.py" line="2493"/>
         <source>Move to start of document line</source>
         <translation>Перейти на начало строки документа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2503"/>
+        <location filename="../ViewManager/ViewManager.py" line="2501"/>
         <source>Meta+A</source>
         <translation>Meta+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2510"/>
+        <location filename="../ViewManager/ViewManager.py" line="2508"/>
         <source>Extend selection to start of document line</source>
         <translation>Распространить выделение до начала строки документа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2521"/>
+        <location filename="../ViewManager/ViewManager.py" line="2519"/>
         <source>Meta+Shift+A</source>
         <translation>Meta+Shift+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2528"/>
+        <location filename="../ViewManager/ViewManager.py" line="2526"/>
         <source>Extend rectangular selection to start of document line</source>
         <translation>Распространить прямоугольное выделение до начала строки документа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2538"/>
+        <location filename="../ViewManager/ViewManager.py" line="2536"/>
         <source>Meta+Alt+Shift+A</source>
         <translation>Meta+Alt+Shift+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2546"/>
+        <location filename="../ViewManager/ViewManager.py" line="2544"/>
         <source>Extend selection to start of display line</source>
         <translation>Распространить выделение до начала строки экрана</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2565"/>
+        <location filename="../ViewManager/ViewManager.py" line="2563"/>
         <source>Move to start of display or document line</source>
         <translation>Перейти на начало строки экрана или документа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2579"/>
+        <location filename="../ViewManager/ViewManager.py" line="2577"/>
         <source>Extend selection to start of display or document line</source>
         <translation>Распространить выделение до начала строки экрана или документа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2594"/>
+        <location filename="../ViewManager/ViewManager.py" line="2592"/>
         <source>Move to first visible character in display or document line</source>
         <translation>Перейти к первому видимому символу строки экрана или документа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2611"/>
+        <location filename="../ViewManager/ViewManager.py" line="2609"/>
         <source>Extend selection to first visible character in display or document line</source>
         <translation>Распространить выделение до первого видимого символа строки экрана или документа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2628"/>
+        <location filename="../ViewManager/ViewManager.py" line="2626"/>
         <source>Move to end of display or document line</source>
         <translation>Перейти в конец строки экрана или документа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2642"/>
+        <location filename="../ViewManager/ViewManager.py" line="2640"/>
         <source>Extend selection to end of display or document line</source>
         <translation>Распространить выделение до конца строки экрана или документа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2657"/>
+        <location filename="../ViewManager/ViewManager.py" line="2655"/>
         <source>Stuttered move up one page</source>
         <translation>Перейти на одну страницу вверх</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2669"/>
+        <location filename="../ViewManager/ViewManager.py" line="2667"/>
         <source>Stuttered extend selection up one page</source>
         <translation>Распространить выделение на страницу вверх</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2682"/>
+        <location filename="../ViewManager/ViewManager.py" line="2680"/>
         <source>Stuttered move down one page</source>
         <translation>Перейти на одну страницу вниз</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2694"/>
+        <location filename="../ViewManager/ViewManager.py" line="2692"/>
         <source>Stuttered extend selection down one page</source>
         <translation>Распространить выделение на страницу вниз</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2707"/>
+        <location filename="../ViewManager/ViewManager.py" line="2705"/>
         <source>Delete right to end of next word</source>
         <translation>Удалить до конца следующего слова справа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2715"/>
+        <location filename="../ViewManager/ViewManager.py" line="2713"/>
         <source>Alt+Del</source>
         <translation>Alt+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2722"/>
+        <location filename="../ViewManager/ViewManager.py" line="2720"/>
         <source>Move selected lines up one line</source>
         <translation>Переместить выделенные строки на одну строку вверх</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2734"/>
+        <location filename="../ViewManager/ViewManager.py" line="2732"/>
         <source>Move selected lines down one line</source>
         <translation>Переместить выделенные строки на одну строку вниз</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2348"/>
+        <location filename="../ViewManager/ViewManager.py" line="2346"/>
         <source>Alt+Shift+PgUp</source>
         <translation>Alt+Shift+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1185"/>
+        <location filename="../ViewManager/ViewManager.py" line="1184"/>
         <source>Toggle Comment</source>
         <translation>Переключить комментарий</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1185"/>
+        <location filename="../ViewManager/ViewManager.py" line="1184"/>
         <source>Ctrl+Shift+M</source>
         <comment>Edit|Toggle Comment</comment>
         <translation>Ctrl+Shift+M</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1193"/>
+        <location filename="../ViewManager/ViewManager.py" line="1192"/>
         <source>Toggle the comment of the current line, selection or comment block</source>
         <translation>Переключить комментарий текущей строки, выборки или блока комментария</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1197"/>
+        <location filename="../ViewManager/ViewManager.py" line="1196"/>
         <source>&lt;b&gt;Toggle Comment&lt;/b&gt;&lt;p&gt;If the current line does not start with a block comment, the current line or selection is commented. If it is already commented, this comment block is uncommented. &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="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3525"/>
         <source>Zoom reset</source>
         <translation>Сбросить масштаб</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3525"/>
         <source>Zoom &amp;reset</source>
         <translation>&amp;Сбросить масштаб</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3525"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation>Ctrl+0</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3533"/>
+        <source>Reset the zoom of the text</source>
+        <translation>Сбросить масштаб текста</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3535"/>
-        <source>Reset the zoom of the text</source>
-        <translation>Сбросить масштаб текста</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3537"/>
         <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;Сбросить масштаб&lt;/b&gt;&lt;p&gt;Сброс масштаба текста. Эта настройка возвращает масштаб текста к 100%.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3487"/>
         <source>Zoom In</source>
         <comment>View|Zoom in</comment>
         <translation>Увеличить масштаб</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3508"/>
+        <location filename="../ViewManager/ViewManager.py" line="3506"/>
         <source>Zoom Out</source>
         <comment>View|Zoom out</comment>
         <translation>Уменьшить масштаб</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="764"/>
+        <location filename="../ViewManager/ViewManager.py" line="763"/>
         <source>Save a&amp;ll</source>
         <translation>Сохранить &amp;всё</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4246"/>
+        <source>Next Change</source>
+        <translation>Следующее изменение</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4240"/>
+        <source>&amp;Next Change</source>
+        <translation>&amp;Следующее изменение</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4248"/>
-        <source>Next Change</source>
-        <translation>Следующее изменение</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4242"/>
-        <source>&amp;Next Change</source>
-        <translation>&amp;Следующее изменение</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4250"/>
         <source>&lt;b&gt;Next Change&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a change marker.&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="4264"/>
+        <source>Previous Change</source>
+        <translation>Предыдущее изменение</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4257"/>
+        <source>&amp;Previous Change</source>
+        <translation>&amp;Предыдущее изменение</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4266"/>
-        <source>Previous Change</source>
-        <translation>Предыдущее изменение</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4259"/>
-        <source>&amp;Previous Change</source>
-        <translation>&amp;Предыдущее изменение</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4268"/>
         <source>&lt;b&gt;Previous Change&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a change marker.&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="4366"/>
+        <location filename="../ViewManager/ViewManager.py" line="4364"/>
         <source>Check spelling</source>
         <translation>Проверка орфографии</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4366"/>
+        <location filename="../ViewManager/ViewManager.py" line="4364"/>
         <source>Check &amp;spelling...</source>
         <translation>Проверка &amp;орфографии...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4377"/>
+        <location filename="../ViewManager/ViewManager.py" line="4375"/>
         <source>&lt;b&gt;Check spelling&lt;/b&gt;&lt;p&gt;Perform a spell check of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Проверка орфографии&lt;/b&gt;&lt;p&gt;Проверка орфографии в текущем редакторе.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4424"/>
+        <source>Edit Dictionary</source>
+        <translation>Редактировать словарь</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4426"/>
-        <source>Edit Dictionary</source>
-        <translation>Редактировать словарь</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4428"/>
         <source>Project Word List</source>
         <translation>Словарь проекта</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4431"/>
+        <location filename="../ViewManager/ViewManager.py" line="4429"/>
         <source>Project Exception List</source>
         <translation>Список исключений проекта</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4436"/>
+        <location filename="../ViewManager/ViewManager.py" line="4434"/>
         <source>User Word List</source>
         <translation>Словарь пользователя</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4439"/>
+        <location filename="../ViewManager/ViewManager.py" line="4437"/>
         <source>User Exception List</source>
         <translation>Список исключений пользователя</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6639"/>
+        <location filename="../ViewManager/ViewManager.py" line="6637"/>
         <source>Edit Spelling Dictionary</source>
         <translation>Редактировать орфографический словарь</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6614"/>
+        <location filename="../ViewManager/ViewManager.py" line="6612"/>
         <source>Editing {0}</source>
         <translation>Редактирование {0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6596"/>
+        <location filename="../ViewManager/ViewManager.py" line="6594"/>
         <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Невозможно прочитать файл словаря&lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Причина: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6626"/>
+        <location filename="../ViewManager/ViewManager.py" line="6624"/>
         <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Невозможно записать файл словаря&lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Причина: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6639"/>
+        <location filename="../ViewManager/ViewManager.py" line="6637"/>
         <source>The spelling dictionary was saved successfully.</source>
         <translation>Файл словаря успешно сохранён.</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2957"/>
+        <location filename="../ViewManager/ViewManager.py" line="2955"/>
         <source>Search current word forward</source>
         <translation>Поиск следующего слова</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2957"/>
+        <location filename="../ViewManager/ViewManager.py" line="2955"/>
         <source>Ctrl+.</source>
         <comment>Search|Search current word forward</comment>
         <translation>Ctrl+.</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2968"/>
+        <location filename="../ViewManager/ViewManager.py" line="2966"/>
         <source>Search next occurrence of the current word</source>
         <translation>Поиск следующего вхождения текущего слова впереди</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2971"/>
+        <location filename="../ViewManager/ViewManager.py" line="2969"/>
         <source>&lt;b&gt;Search current word forward&lt;/b&gt;&lt;p&gt;Search the next occurrence of the current word of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Поиск текущего слова вперёди&lt;/b&gt;&lt;p&gt;Поиск следующего вхождения текущего слова далее в текущем редакторе.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2980"/>
+        <location filename="../ViewManager/ViewManager.py" line="2978"/>
         <source>Search current word backward</source>
         <translation>Поиск предыдущего слова</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2980"/>
+        <location filename="../ViewManager/ViewManager.py" line="2978"/>
         <source>Ctrl+,</source>
         <comment>Search|Search current word backward</comment>
         <translation>Ctrl+,</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2991"/>
+        <location filename="../ViewManager/ViewManager.py" line="2989"/>
         <source>Search previous occurrence of the current word</source>
         <translation>Поиск предыдущего вхождения текущего слова сзади</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2994"/>
+        <location filename="../ViewManager/ViewManager.py" line="2992"/>
         <source>&lt;b&gt;Search current word backward&lt;/b&gt;&lt;p&gt;Search the previous occurrence of the current word of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Поиск текущего слова сзади&lt;/b&gt;&lt;p&gt;Поиск предыдущего вхождения текущего слова сзади в текущем редакторе.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3301"/>
+        <location filename="../ViewManager/ViewManager.py" line="3299"/>
         <source>Search in Open Files</source>
         <translation>Поиск в открытых файлах</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3301"/>
+        <location filename="../ViewManager/ViewManager.py" line="3299"/>
         <source>Search in Open Files...</source>
         <translation>Найти в открытых файлах...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3301"/>
+        <location filename="../ViewManager/ViewManager.py" line="3299"/>
         <source>Meta+Ctrl+Alt+F</source>
         <comment>Search|Search Open Files</comment>
         <translation>Meta+Ctrl+Alt+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3312"/>
+        <location filename="../ViewManager/ViewManager.py" line="3310"/>
         <source>Search for a text in open files</source>
         <translation>Поиск текста в открытых файлах</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3314"/>
+        <location filename="../ViewManager/ViewManager.py" line="3312"/>
         <source>&lt;b&gt;Search in Open Files&lt;/b&gt;&lt;p&gt;Search for some text in the currently opened files. A dialog is shown to enter the searchtext and options for the search and to display the result.&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="3324"/>
+        <location filename="../ViewManager/ViewManager.py" line="3322"/>
         <source>Replace in Open Files</source>
         <translation>Замена в открытых файлах</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3324"/>
+        <location filename="../ViewManager/ViewManager.py" line="3322"/>
         <source>Meta+Ctrl+Alt+R</source>
         <comment>Search|Replace in Open Files</comment>
         <translation>Meta+Ctrl+Alt+R</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3332"/>
+        <source>Search for a text in open files and replace it</source>
+        <translation>Поиск текста в открытых файлах и его замена</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3334"/>
-        <source>Search for a text in open files and replace it</source>
-        <translation>Поиск текста в открытых файлах и его замена</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3336"/>
         <source>&lt;b&gt;Replace in Open Files&lt;/b&gt;&lt;p&gt;Search for some text in the currently opened files and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and to display the result.&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="3324"/>
+        <location filename="../ViewManager/ViewManager.py" line="3322"/>
         <source>Replace in Open Files...</source>
         <translation>Заменить в открытых файлах...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1450"/>
+        <location filename="../ViewManager/ViewManager.py" line="1449"/>
         <source>Sort</source>
         <translation>Сортировка</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1450"/>
+        <location filename="../ViewManager/ViewManager.py" line="1449"/>
         <source>Ctrl+Alt+S</source>
         <comment>Edit|Sort</comment>
         <translation>Ctrl+Alt+S</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1457"/>
+        <location filename="../ViewManager/ViewManager.py" line="1456"/>
         <source>Sort the lines containing the rectangular selection</source>
         <translation>Сортировать строки в прямоугольной выборке</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1460"/>
+        <location filename="../ViewManager/ViewManager.py" line="1459"/>
         <source>&lt;b&gt;Sort&lt;/b&gt;&lt;p&gt;Sort the lines spanned by a rectangular selection based on the selection ignoring leading and trailing whitespace.&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="4955"/>
+        <location filename="../ViewManager/ViewManager.py" line="4953"/>
         <source>Language: {0}</source>
         <translation>Язык: {0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4962"/>
+        <location filename="../ViewManager/ViewManager.py" line="4960"/>
         <source>EOL Mode: {0}</source>
         <translation>Режим конца строк: {0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3643"/>
+        <location filename="../ViewManager/ViewManager.py" line="3641"/>
         <source>New Document View</source>
         <translation>Новое окно для документа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3643"/>
+        <location filename="../ViewManager/ViewManager.py" line="3641"/>
         <source>New &amp;Document View</source>
         <translation>Новое окно для &amp;документа</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3646"/>
+        <source>Open a new view of the current document</source>
+        <translation>Открыть новое окно для текущего документа</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3648"/>
-        <source>Open a new view of the current document</source>
-        <translation>Открыть новое окно для текущего документа</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3650"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.&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="3660"/>
+        <location filename="../ViewManager/ViewManager.py" line="3658"/>
         <source>New Document View (with new split)</source>
         <translation>Новое окно для документа (в новом разделе)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3667"/>
+        <location filename="../ViewManager/ViewManager.py" line="3665"/>
         <source>Open a new view of the current document in a new split</source>
         <translation>Открыть новое окно для текущего документа в новом разделе</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3670"/>
+        <location filename="../ViewManager/ViewManager.py" line="3668"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document in a new split. Both views show the same document. However, the cursors may be positioned independently.&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="4126"/>
+        <location filename="../ViewManager/ViewManager.py" line="4124"/>
         <source>&lt;b&gt;Next warning message&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Следующее предупреждение&lt;/b&gt;&lt;p&gt;Переход к следующей строке текущего редактора, имеющей предупреждение pyflakes.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4145"/>
+        <location filename="../ViewManager/ViewManager.py" line="4143"/>
         <source>&lt;b&gt;Previous warning message&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Предыдущее предупреждение&lt;/b&gt;&lt;p&gt;Переход к предыдущей строке текущего редактора, имеющей предупреждение pyflakes.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4163"/>
+        <location filename="../ViewManager/ViewManager.py" line="4161"/>
         <source>&lt;b&gt;Clear Warning Messages&lt;/b&gt;&lt;p&gt;Clear pyflakes warning messages of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Очистить предупреждения&lt;/b&gt;&lt;p&gt;Очистить предупреждения от pyflakes во всех окнах редактора.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2778"/>
+        <location filename="../ViewManager/ViewManager.py" line="2776"/>
         <source>Complete</source>
         <translation>Дополнить</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1327"/>
+        <location filename="../ViewManager/ViewManager.py" line="1326"/>
         <source>&amp;Complete</source>
         <translation>&amp;Дополнить</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1327"/>
+        <location filename="../ViewManager/ViewManager.py" line="1326"/>
         <source>Ctrl+Space</source>
         <comment>Edit|Complete</comment>
         <translation>Ctrl+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1334"/>
+        <location filename="../ViewManager/ViewManager.py" line="1333"/>
         <source>Complete current word</source>
         <translation>Дополнить текущее слово</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1336"/>
+        <location filename="../ViewManager/ViewManager.py" line="1335"/>
         <source>&lt;b&gt;Complete&lt;/b&gt;&lt;p&gt;Performs a completion of the word containing the cursor.&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="1345"/>
+        <location filename="../ViewManager/ViewManager.py" line="1344"/>
         <source>Complete from Document</source>
         <translation>Дополнить из документа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1345"/>
+        <location filename="../ViewManager/ViewManager.py" line="1344"/>
         <source>Ctrl+Shift+Space</source>
         <comment>Edit|Complete from Document</comment>
         <translation>Ctrl+Shift+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1355"/>
+        <location filename="../ViewManager/ViewManager.py" line="1354"/>
         <source>Complete current word from Document</source>
         <translation>Дополнить текущее слово из документа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1358"/>
+        <location filename="../ViewManager/ViewManager.py" line="1357"/>
         <source>&lt;b&gt;Complete from Document&lt;/b&gt;&lt;p&gt;Performs a completion from document of the word containing the cursor.&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="1368"/>
+        <location filename="../ViewManager/ViewManager.py" line="1367"/>
         <source>Complete from APIs</source>
         <translation>Дополнить из API</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1368"/>
+        <location filename="../ViewManager/ViewManager.py" line="1367"/>
         <source>Ctrl+Alt+Space</source>
         <comment>Edit|Complete from APIs</comment>
         <translation>Ctrl+Alt+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1378"/>
+        <location filename="../ViewManager/ViewManager.py" line="1377"/>
         <source>Complete current word from APIs</source>
         <translation>Дополнить текущее слово из API</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1381"/>
+        <location filename="../ViewManager/ViewManager.py" line="1380"/>
         <source>&lt;b&gt;Complete from APIs&lt;/b&gt;&lt;p&gt;Performs a completion from APIs of the word containing the cursor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Дополнить из API&lt;/b&gt;&lt;p&gt;Выполняется дополнение слова, содержащего курсор, из API.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1391"/>
+        <location filename="../ViewManager/ViewManager.py" line="1390"/>
         <source>Complete from Document and APIs</source>
         <translation>Дополнить из документа и API</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1391"/>
+        <location filename="../ViewManager/ViewManager.py" line="1390"/>
         <source>Alt+Shift+Space</source>
         <comment>Edit|Complete from Document and APIs</comment>
         <translation>Alt+Shift+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1401"/>
+        <location filename="../ViewManager/ViewManager.py" line="1400"/>
         <source>Complete current word from Document and APIs</source>
         <translation>Дополнить текущее слово из документа и API</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1404"/>
+        <location filename="../ViewManager/ViewManager.py" line="1403"/>
         <source>&lt;b&gt;Complete from Document and APIs&lt;/b&gt;&lt;p&gt;Performs a completion from document and APIs of the word containing the cursor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Дополнить из документа и API&lt;/b&gt;&lt;p&gt;Выполняется дополнение слова, содержащего курсор, из документа и API.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1414"/>
+        <location filename="../ViewManager/ViewManager.py" line="1413"/>
         <source>Meta+Alt+Space</source>
         <comment>Edit|Calltip</comment>
         <translation>Meta+Alt+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="748"/>
+        <location filename="../ViewManager/ViewManager.py" line="747"/>
         <source>Save Copy</source>
         <translation>Сохранить копию</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="748"/>
+        <location filename="../ViewManager/ViewManager.py" line="747"/>
         <source>Save &amp;Copy...</source>
         <translation>Сохранить &amp;копию...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="753"/>
+        <location filename="../ViewManager/ViewManager.py" line="752"/>
         <source>Save a copy of the current file</source>
         <translation>Сохранить копию текущего файла</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="755"/>
+        <location filename="../ViewManager/ViewManager.py" line="754"/>
         <source>&lt;b&gt;Save Copy&lt;/b&gt;&lt;p&gt;Save a copy of the contents of current editor window. The file can be entered in a file selection dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Сохранить копию&lt;/b&gt;&lt;p&gt;Сохранение контента текущего окна редактора. Имя файла может быть введено в диалоге выбора файла.&lt;/p&gt;</translation>
     </message>
@@ -81675,141 +81791,141 @@
         <translation>Ctrl+G</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3022"/>
+        <location filename="../ViewManager/ViewManager.py" line="3020"/>
         <source>Replace and Search</source>
         <translation>Заменить и найти</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3022"/>
+        <location filename="../ViewManager/ViewManager.py" line="3020"/>
         <source>Meta+R</source>
         <comment>Search|Replace and Search</comment>
         <translation>Meta+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3032"/>
+        <location filename="../ViewManager/ViewManager.py" line="3030"/>
         <source>Replace the found text and search the next occurrence</source>
         <translation>Заменить найденный текст и найти следующее вхождение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3035"/>
+        <location filename="../ViewManager/ViewManager.py" line="3033"/>
         <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;Заменить и найти&lt;/b&gt;&lt;p&gt;Заменить найденное вхождение текста текущего редактирования и выполнить поиск следующего. Ранее введенный текст и параметры поиска используются повторно.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3046"/>
+        <location filename="../ViewManager/ViewManager.py" line="3044"/>
         <source>Replace Occurrence</source>
         <translation>Заменить вхождение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3046"/>
+        <location filename="../ViewManager/ViewManager.py" line="3044"/>
         <source>Ctrl+Meta+R</source>
         <comment>Search|Replace Occurrence</comment>
         <translation>Ctrl+Meta+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3056"/>
+        <location filename="../ViewManager/ViewManager.py" line="3054"/>
         <source>Replace the found text</source>
         <translation>Заменить найденный текст</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3058"/>
+        <location filename="../ViewManager/ViewManager.py" line="3056"/>
         <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;Заменить вхождение&lt;/b&gt;&lt;p&gt;Заменить найденнойе вхождение искомого текста текущего редактирования.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3068"/>
+        <location filename="../ViewManager/ViewManager.py" line="3066"/>
         <source>Replace All</source>
         <translation>Заменить все</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3068"/>
+        <location filename="../ViewManager/ViewManager.py" line="3066"/>
         <source>Shift+Meta+R</source>
         <comment>Search|Replace All</comment>
         <translation>Shift+Meta+R</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3076"/>
+        <source>Replace search text occurrences</source>
+        <translation>Заменить вхождения искомого текста</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3078"/>
-        <source>Replace search text occurrences</source>
-        <translation>Заменить вхождения искомого текста</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3080"/>
         <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;Заменить все&lt;/b&gt;&lt;p&gt;Заменить все вхождения искомого текста текущего редактирования.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1432"/>
+        <location filename="../ViewManager/ViewManager.py" line="1431"/>
         <source>Code Info</source>
         <translation>Информация о коде</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1432"/>
+        <location filename="../ViewManager/ViewManager.py" line="1431"/>
         <source>Ctrl+Alt+I</source>
         <comment>Edit|Code Info</comment>
         <translation>Ctrl+Alt+I</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1440"/>
+        <location filename="../ViewManager/ViewManager.py" line="1439"/>
         <source>Show Code Info</source>
         <translation>Отображение информации для выбранного кода</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1442"/>
+        <location filename="../ViewManager/ViewManager.py" line="1441"/>
         <source>&lt;b&gt;Code Info&lt;/b&gt;&lt;p&gt;Show code information based on the cursor position.&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="3614"/>
+        <source>Clear all folds</source>
+        <translation>Очистить все свертки</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3610"/>
+        <source>Clear &amp;all folds</source>
+        <translation>Очистить &amp;все свертки</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3616"/>
-        <source>Clear all folds</source>
-        <translation>Очистить все свертки</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3612"/>
-        <source>Clear &amp;all folds</source>
-        <translation>Очистить &amp;все свертки</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3618"/>
         <source>&lt;b&gt;Clear all folds&lt;/b&gt;&lt;p&gt;Clear all folds of the current editor, i.e. ensure that all lines are displayed unfolded.&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="2150"/>
+        <location filename="../ViewManager/ViewManager.py" line="2148"/>
         <source>Reverse selected lines</source>
         <translation>Реверсировать выбранные строки</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2150"/>
+        <location filename="../ViewManager/ViewManager.py" line="2148"/>
         <source>Meta+Alt+R</source>
         <translation>Meta+Alt+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3776"/>
+        <location filename="../ViewManager/ViewManager.py" line="3774"/>
         <source>Python AST Viewer</source>
         <translation>Просмотрщик Python AST</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3779"/>
+        <source>Show the AST for the current Python file</source>
+        <translation>AST-представление текущего файла Python</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3781"/>
-        <source>Show the AST for the current Python file</source>
-        <translation>AST-представление текущего файла Python</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3783"/>
         <source>&lt;b&gt;Python AST Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the AST of the current Python source file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Просмотрщик Python AST&lt;/b&gt;&lt;p&gt;Получение синтаксического древовидного представления (AST) для текущего файла с кодом Python.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3793"/>
+        <location filename="../ViewManager/ViewManager.py" line="3791"/>
         <source>Python Disassembly Viewer</source>
         <translation>Просмотрщик Python Disassembly</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3798"/>
+        <source>Show the Disassembly for the current Python file</source>
+        <translation>Показ дизассемблирования текущего файла Python</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3800"/>
-        <source>Show the Disassembly for the current Python file</source>
-        <translation>Показ дизассемблирования текущего файла Python</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3802"/>
         <source>&lt;b&gt;Python Disassembly Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the Disassembly of the current Python source file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Просмотрщик Python Disassembly&lt;/b&gt;&lt;p&gt;Получение синтаксического древовидного представления дизассемблирования текущего файла с кодом Python.&lt;/p&gt;</translation>
     </message>
@@ -87381,57 +87497,112 @@
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="38"/>
         <source>Invalid API key.</source>
-        <translation>Недействительный API ключ.</translation>
+        <translation type="obsolete">Недействительный API ключ.</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="39"/>
         <source>API key has been blocked.</source>
-        <translation>API ключ заблокирован.</translation>
+        <translation type="obsolete">API ключ заблокирован.</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="40"/>
         <source>Daily limit for requests has been reached.</source>
-        <translation>Достигнут суточный лимит запросов.</translation>
+        <translation type="obsolete">Достигнут суточный лимит запросов.</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="41"/>
         <source>Daily limit for the volume of translated text reached.</source>
-        <translation>Достигнут суточный лимит объема переведенного текста.</translation>
+        <translation type="obsolete">Достигнут суточный лимит объема переведенного текста.</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="43"/>
         <source>Text size exceeds the maximum.</source>
-        <translation>Размер текстового блока превышает максимальный.</translation>
+        <translation type="obsolete">Размер текстового блока превышает максимальный.</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="44"/>
         <source>Text could not be translated.</source>
-        <translation>Текст не может быть переведен.</translation>
+        <translation type="obsolete">Текст не может быть переведен.</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="45"/>
         <source>The specified translation direction is not supported.</source>
-        <translation>Заданное направление перевода не поддерживается.</translation>
+        <translation type="obsolete">Заданное направление перевода не поддерживается.</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="86"/>
         <source>Only texts up to {0} characters are allowed.</source>
-        <translation>Разрешены фрагменты текста не длинее {0} символов.</translation>
+        <translation type="obsolete">Разрешены фрагменты текста не длинее {0} символов.</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="91"/>
         <source>A valid Yandex key is required.</source>
-        <translation>Требуется действительный ключ Yandex.</translation>
+        <translation type="obsolete">Требуется действительный ключ Yandex.</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="106"/>
         <source>Invalid response received</source>
-        <translation>Получен недопустимый ответ</translation>
+        <translation type="obsolete">Получен недопустимый ответ</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="112"/>
         <source>Unknown error code ({0}) received.</source>
-        <translation>Получен код ({0}) неизвестной ошибки.</translation>
+        <translation type="obsolete">Получен код ({0}) неизвестной ошибки.</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="38"/>
+        <source>Yandex: Invalid API key.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="39"/>
+        <source>Yandex: API key has been blocked.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="40"/>
+        <source>Yandex: Daily limit for requests has been reached.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="41"/>
+        <source>Yandex: Daily limit for the volume of translated text reached.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="43"/>
+        <source>Yandex: Text size exceeds the maximum.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="44"/>
+        <source>Yandex: Text could not be translated.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="45"/>
+        <source>Yandex: The specified translation direction is not supported.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="86"/>
+        <source>Yandex: Only texts up to {0} characters are allowed.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="109"/>
+        <source>Yandex: Invalid response received</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="115"/>
+        <source>Yandex: Unknown error code ({0}) received.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="94"/>
+        <source>Yandex: A valid key is required.</source>
+        <translation type="unfinished"></translation>
     </message>
 </context>
 <context>
@@ -87877,417 +88048,417 @@
 <context>
     <name>pycodestyle</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="24"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="22"/>
         <source>indentation contains mixed spaces and tabs</source>
         <translation>отступ содержит смесь пробелов и табуляции</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="27"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="25"/>
         <source>indentation is not a multiple of four</source>
         <translation>размер отступа не кратен четырем</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="30"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="28"/>
         <source>expected an indented block</source>
         <translation>ожидался блок с отступом</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="33"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="31"/>
         <source>unexpected indentation</source>
         <translation>неожиданный отступ</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="36"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="34"/>
         <source>indentation is not a multiple of four (comment)</source>
         <translation>размер отступа не кратен четырем (комментарий)</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="39"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="37"/>
         <source>expected an indented block (comment)</source>
         <translation>ожидался блок с отступом (комментарий)</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="42"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="40"/>
         <source>unexpected indentation (comment)</source>
         <translation>неожиданный отступ (комментарий)</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="48"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="46"/>
         <source>continuation line indentation is not a multiple of four</source>
         <translation>отступ строки продолжения не кратен четырём</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="51"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="49"/>
         <source>continuation line missing indentation or outdented</source>
         <translation>строка продолжения не имеет отступа или выступа</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="54"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="52"/>
         <source>closing bracket does not match indentation of opening bracket&apos;s line</source>
         <translation>закрывающая скобка не соответствует отступу скобки, открывающей строку</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="58"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="56"/>
         <source>closing bracket does not match visual indentation</source>
         <translation>закрывающая скобка визуально не соответствует отступу</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="61"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="59"/>
         <source>continuation line with same indent as next logical line</source>
         <translation>отступ строки продолжения такой же как у следующей логической строки</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="64"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="62"/>
         <source>continuation line over-indented for hanging indent</source>
         <translation>строка продолжения с отступом для висящего отступа</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="67"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="65"/>
         <source>continuation line over-indented for visual indent</source>
         <translation>строка продолжения с отступом для визуального отступа</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="70"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="68"/>
         <source>continuation line under-indented for visual indent</source>
         <translation>continuation line under-indented for visual indent</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="73"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="71"/>
         <source>visually indented line with same indent as next logical line</source>
         <translation>визуально отступ строки такой же как у следующей логической строки</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="76"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="74"/>
         <source>continuation line unaligned for hanging indent</source>
         <translation>у висячего отступа невыровненная строка продолжения</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="79"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="77"/>
         <source>closing bracket is missing indentation</source>
         <translation>закрывающая скобка не имеет отступа</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="82"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="80"/>
         <source>indentation contains tabs</source>
         <translation>отступ содержит табуляцию</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="85"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="83"/>
         <source>whitespace after &apos;{0}&apos;</source>
         <translation>символ пропуска после &apos;{0}&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="94"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="92"/>
         <source>whitespace before &apos;{0}&apos;</source>
         <translation>символ пропуска перед &apos;{0}&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="97"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="95"/>
         <source>multiple spaces before operator</source>
         <translation>множественные пробелы перед оператором</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="100"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="98"/>
         <source>multiple spaces after operator</source>
         <translation>множественные пробелы после оператора</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="103"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="101"/>
         <source>tab before operator</source>
         <translation>табуляция перед оператором</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="106"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="104"/>
         <source>tab after operator</source>
         <translation>табуляция после оператора</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="109"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="107"/>
         <source>missing whitespace around operator</source>
         <translation>отсутствуют символы пропуска вокруг оператора</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="112"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="110"/>
         <source>missing whitespace around arithmetic operator</source>
         <translation>отсутствуют символы пропуска вокруг арифметического оператора</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="115"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="113"/>
         <source>missing whitespace around bitwise or shift operator</source>
         <translation>отсутствуют символы пропуска вокруг побитового оператора или оператора сдвига</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="118"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="116"/>
         <source>missing whitespace around modulo operator</source>
         <translation>отсутствуют символы пропуска вокруг оператора по модулю</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="121"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="119"/>
         <source>missing whitespace after &apos;{0}&apos;</source>
         <translation>отсутствуют символы пропуска после &apos;{0}&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="124"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="122"/>
         <source>multiple spaces after &apos;{0}&apos;</source>
         <translation>множественные пробелы после &apos;{0}&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="127"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="125"/>
         <source>tab after &apos;{0}&apos;</source>
         <translation>табуляция после &apos;{0}&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="130"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="128"/>
         <source>unexpected spaces around keyword / parameter equals</source>
         <translation>неожиданные пробелы вокруг ключевого слова / параметра equals</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="136"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="134"/>
         <source>at least two spaces before inline comment</source>
         <translation>по крайней мере два пробела перед комментарием в строке кода</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="139"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="137"/>
         <source>inline comment should start with &apos;# &apos;</source>
         <translation>комментарий в строке кода должен начинаться с &apos;# &apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="142"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="140"/>
         <source>block comment should start with &apos;# &apos;</source>
         <translation>блок комментариев должен начинаться с &apos;# &apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="145"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="143"/>
         <source>too many leading &apos;#&apos; for block comment</source>
         <translation>слишком много лидирующих &apos;#&apos; для блока комментария</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="148"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="146"/>
         <source>multiple spaces after keyword</source>
         <translation>множественные пробелы после ключевого слова</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="151"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="149"/>
         <source>multiple spaces before keyword</source>
         <translation>множественные пробелы перед ключевым словом</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="154"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="152"/>
         <source>tab after keyword</source>
         <translation>табуляция после ключевого слова</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="157"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="155"/>
         <source>tab before keyword</source>
         <translation>табуляция перед ключевым словом</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="160"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="158"/>
         <source>missing whitespace after keyword</source>
         <translation>отсутствует символ пропуска после ключевого слова</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="163"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="161"/>
         <source>trailing whitespace</source>
         <translation>завершающие символы пропуска</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="166"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="164"/>
         <source>no newline at end of file</source>
         <translation>нет символа новой строки в конце файла</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="169"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="167"/>
         <source>blank line contains whitespace</source>
         <translation>пустая строка содержит символы пропуска</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="194"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="192"/>
         <source>too many blank lines ({0})</source>
         <translation>слишком много пустых строк ({0})</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="181"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="179"/>
         <source>blank lines found after function decorator</source>
         <translation>пустые строки после декоратора функции</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="197"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="195"/>
         <source>blank line at end of file</source>
         <translation>пустая строка в конце файла</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="200"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="198"/>
         <source>multiple imports on one line</source>
         <translation>множественный импорт в одной строке</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="203"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="201"/>
         <source>module level import not at top of file</source>
         <translation>импорт модуля не в начале файла</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="206"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="204"/>
         <source>line too long ({0} &gt; {1} characters)</source>
         <translation>слишком длинная строка ({0} &gt; {1} символов)</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="209"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="207"/>
         <source>the backslash is redundant between brackets</source>
         <translation>символ &apos;\&apos; излишний внутри скобок</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="212"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="210"/>
         <source>line break before binary operator</source>
         <translation>перевод строки перед бинарным оператором</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="221"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="219"/>
         <source>.has_key() is deprecated, use &apos;in&apos;</source>
         <translation>.has_key() устарел, используйте &apos;in&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="224"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="222"/>
         <source>deprecated form of raising exception</source>
         <translation>устаревший метод возбуждения исключений</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="227"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="225"/>
         <source>&apos;&lt;&gt;&apos; is deprecated, use &apos;!=&apos;</source>
         <translation>оператор &apos;&lt;&gt;&apos; устарел, используйте &apos;!=&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="230"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="228"/>
         <source>backticks are deprecated, use &apos;repr()&apos;</source>
         <translation>обратные апострофы устарели, используйте функцию &apos;repr()&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="239"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="237"/>
         <source>multiple statements on one line (colon)</source>
         <translation>несколько инструкций в одной строке (двоеточие)</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="242"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="240"/>
         <source>multiple statements on one line (semicolon)</source>
         <translation>несколько инструкций в одной строке (точка с запятой)</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="245"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="243"/>
         <source>statement ends with a semicolon</source>
         <translation>инструкция завершается точкой с запятой</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="248"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="246"/>
         <source>multiple statements on one line (def)</source>
         <translation>несколько инструкций в одной строке (def)</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="254"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="252"/>
         <source>comparison to {0} should be {1}</source>
         <translation>сравнение с {0} должно быть {1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="257"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="255"/>
         <source>test for membership should be &apos;not in&apos;</source>
         <translation>проверка на членство должна быть &apos;not in&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="260"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="258"/>
         <source>test for object identity should be &apos;is not&apos;</source>
         <translation>проверка на идентичность объекта должна быть &apos;is not&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="263"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="261"/>
         <source>do not compare types, use &apos;isinstance()&apos;</source>
         <translation>используйте &apos;isinstance()&apos; вместо сравнения типов</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="269"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="267"/>
         <source>do not assign a lambda expression, use a def</source>
         <translation>не назначайте лямбда-выражение, используйте def</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="272"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="270"/>
         <source>ambiguous variable name &apos;{0}&apos;</source>
         <translation>неоднозначное имя переменной &apos;{0}&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="275"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="273"/>
         <source>ambiguous class definition &apos;{0}&apos;</source>
         <translation>неоднозначное определение класса &apos;{0}&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="278"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="276"/>
         <source>ambiguous function definition &apos;{0}&apos;</source>
         <translation>неоднозначное определение функции &apos;{0}&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="281"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="279"/>
         <source>{0}: {1}</source>
         <translation>{0}: {1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="284"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="282"/>
         <source>{0}</source>
         <translation>{0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="266"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="264"/>
         <source>do not use bare except</source>
         <translation>не используйте bare except</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="184"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="182"/>
         <source>expected {0} blank lines after class or function definition, found {1}</source>
         <translation>ожидалось {0} пустых строк после определения класса или функции, найдено {1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="236"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="234"/>
         <source>&apos;async&apos; and &apos;await&apos; are reserved keywords starting with Python 3.7</source>
         <translation>&apos;async&apos; и &apos;await&apos; - зарезервированные ключевые слова начиная с Python 3.7</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="133"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="131"/>
         <source>missing whitespace around parameter equals</source>
         <translation>отсутствие символов пропуска вокруг параметра equals</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="175"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="173"/>
         <source>expected {0} blank lines, found {1}</source>
         <translation>ожидалось {0} пустых строк, найдено {1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="188"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="186"/>
         <source>expected {0} blank lines before a nested definition, found {1}</source>
         <translation>ожидалось {0} пустых строк перед вложенным определением, найдено {1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="215"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="213"/>
         <source>line break after binary operator</source>
         <translation>перевод строки после бинарного оператора</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="233"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="231"/>
         <source>invalid escape sequence &apos;\{0}&apos;</source>
         <translation>недействительная escape-последовательность &apos;\{0}&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="191"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="189"/>
         <source>too many blank lines ({0}) before a nested definition, expected {1}</source>
         <translation>слишком много пустых строк ({0}) перед вложенным определением, ожидалось {1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="178"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="176"/>
         <source>too many blank lines ({0}), expected {1}</source>
         <translation>слишком много пустых строк ({0}), ожидалось {1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="45"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="43"/>
         <source>over-indented</source>
         <translation>over-indented</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="218"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="216"/>
         <source>doc line too long ({0} &gt; {1} characters)</source>
         <translation>слишком длинная строка документа ({0} &gt; {1} символов)</translation>
     </message>
--- a/eric6/i18n/eric6_tr.ts	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/i18n/eric6_tr.ts	Sun Oct 04 16:28:51 2020 +0200
@@ -1118,72 +1118,72 @@
 <context>
     <name>AnnotationsChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="808"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="806"/>
         <source>missing type annotation for function argument &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="811"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="809"/>
         <source>missing type annotation for &apos;*{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="814"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="812"/>
         <source>missing type annotation for &apos;**{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="823"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="821"/>
         <source>missing return type annotation for public function</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="826"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="824"/>
         <source>missing return type annotation for protected function</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="829"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="827"/>
         <source>missing return type annotation for private function</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="832"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="830"/>
         <source>missing return type annotation for special method</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="835"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="833"/>
         <source>missing return type annotation for staticmethod</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="838"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="836"/>
         <source>missing return type annotation for classmethod</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="850"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="848"/>
         <source>{0}: {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="817"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="815"/>
         <source>missing type annotation for &apos;self&apos; in method</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="820"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="818"/>
         <source>missing type annotation for &apos;cls&apos; in classmethod</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="842"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="840"/>
         <source>type annotation coverage of {0}% is too low</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="846"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="844"/>
         <source>type annotation is too complex ({0} &gt; {1})</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3418,7 +3418,7 @@
 <context>
     <name>CodeStyleChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="1130"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="1128"/>
         <source>No message defined for code &apos;{0}&apos;.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -4130,142 +4130,142 @@
 <context>
     <name>CodeStyleFixer</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="858"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="856"/>
         <source>Triple single quotes converted to triple double quotes.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="861"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="859"/>
         <source>Introductory quotes corrected to be {0}&quot;&quot;&quot;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="864"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="862"/>
         <source>Single line docstring put on one line.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="867"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="865"/>
         <source>Period added to summary line.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="894"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="892"/>
         <source>Blank line before function/method docstring removed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="873"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="871"/>
         <source>Blank line inserted before class docstring.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="876"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="874"/>
         <source>Blank line inserted after class docstring.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="879"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="877"/>
         <source>Blank line inserted after docstring summary.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="882"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="880"/>
         <source>Blank line inserted after last paragraph of docstring.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="885"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="883"/>
         <source>Leading quotes put on separate line.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="888"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="886"/>
         <source>Trailing quotes put on separate line.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="891"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="889"/>
         <source>Blank line before class docstring removed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="897"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="895"/>
         <source>Blank line after class docstring removed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="900"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="898"/>
         <source>Blank line after function/method docstring removed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="903"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="901"/>
         <source>Blank line after last paragraph removed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="906"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="904"/>
         <source>Tab converted to 4 spaces.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="909"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="907"/>
         <source>Indentation adjusted to be a multiple of four.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="912"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="910"/>
         <source>Indentation of continuation line corrected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="915"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="913"/>
         <source>Indentation of closing bracket corrected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="918"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="916"/>
         <source>Missing indentation of continuation line corrected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="921"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="919"/>
         <source>Closing bracket aligned to opening bracket.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="924"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="922"/>
         <source>Indentation level changed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="927"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="925"/>
         <source>Indentation level of hanging indentation changed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="930"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="928"/>
         <source>Visual indentation corrected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="945"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="943"/>
         <source>Extraneous whitespace removed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="942"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="940"/>
         <source>Missing whitespace added.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="948"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="946"/>
         <source>Whitespace around comment sign corrected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="952"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="950"/>
         <source>%n blank line(s) inserted.</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -4273,7 +4273,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="955"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="953"/>
         <source>%n superfluous lines removed</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -4281,72 +4281,72 @@
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="959"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="957"/>
         <source>Superfluous blank lines removed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="962"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="960"/>
         <source>Superfluous blank lines after function decorator removed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="965"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="963"/>
         <source>Imports were put on separate lines.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="968"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="966"/>
         <source>Long lines have been shortened.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="971"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="969"/>
         <source>Redundant backslash in brackets removed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="977"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="975"/>
         <source>Compound statement corrected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="980"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="978"/>
         <source>Comparison to None/True/False corrected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="983"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="981"/>
         <source>&apos;{0}&apos; argument added.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="986"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="984"/>
         <source>&apos;{0}&apos; argument removed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="989"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="987"/>
         <source>Whitespace stripped from end of line.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="992"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="990"/>
         <source>newline added to end of file.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="995"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="993"/>
         <source>Superfluous trailing blank lines removed from end of file.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="998"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="996"/>
         <source>&apos;&lt;&gt;&apos; replaced by &apos;!=&apos;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="1002"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="1000"/>
         <source>Could not save the file! Skipping it. Reason: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -4847,22 +4847,22 @@
 <context>
     <name>ComplexityChecker</name>
     <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="477"/>
+        <source>&apos;{0}&apos; is too complex ({1})</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="479"/>
-        <source>&apos;{0}&apos; is too complex ({1})</source>
+        <source>source code line is too complex ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="481"/>
-        <source>source code line is too complex ({0})</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="483"/>
         <source>overall source code line complexity is too high ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="486"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="484"/>
         <source>{0}: {1}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -8365,30 +8365,30 @@
 <context>
     <name>DeepLEngine</name>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="73"/>
-        <source>Text to be translated exceeds the translation limit of {0} characters.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="95"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="98"/>
         <source>Invalid response received from DeepL</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="98"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="101"/>
         <source>DeepL call returned an unknown result</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="102"/>
-        <source>&lt;p&gt;No translation found&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="79"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="82"/>
         <source>A valid DeepL Pro key is required.</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="73"/>
+        <source>DeepL: Text to be translated exceeds the translation limit of {0} characters.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="105"/>
+        <source>&lt;p&gt;DeepL: No translation found&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>DeleteFilesConfirmationDialog</name>
@@ -8653,237 +8653,237 @@
 <context>
     <name>DocStyleChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="291"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="289"/>
         <source>module is missing a docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="293"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="291"/>
         <source>public function/method is missing a docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="296"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="294"/>
         <source>private function/method may be missing a docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="297"/>
+        <source>public class is missing a docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="299"/>
-        <source>public class is missing a docstring</source>
+        <source>private class may be missing a docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="301"/>
-        <source>private class may be missing a docstring</source>
+        <source>docstring not surrounded by &quot;&quot;&quot;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="303"/>
-        <source>docstring not surrounded by &quot;&quot;&quot;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="305"/>
         <source>docstring containing \ not surrounded by r&quot;&quot;&quot;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="306"/>
+        <source>one-liner docstring on multiple lines</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="308"/>
-        <source>one-liner docstring on multiple lines</source>
+        <source>docstring has wrong indentation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="357"/>
+        <source>docstring summary does not end with a period</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="314"/>
+        <source>docstring summary is not in imperative mood (Does instead of Do)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="318"/>
+        <source>docstring summary looks like a function&apos;s/method&apos;s signature</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="321"/>
+        <source>docstring does not mention the return value type</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="324"/>
+        <source>function/method docstring is separated by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="327"/>
+        <source>class docstring is not preceded by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="330"/>
+        <source>class docstring is not followed by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="391"/>
+        <source>docstring summary is not followed by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="336"/>
+        <source>last paragraph of docstring is not followed by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="344"/>
+        <source>private function/method is missing a docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="347"/>
+        <source>private class is missing a docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="351"/>
+        <source>leading quotes of docstring not on separate line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="354"/>
+        <source>trailing quotes of docstring not on separate line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="361"/>
+        <source>docstring does not contain a @return line but function/method returns something</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="365"/>
+        <source>docstring contains a @return line but function/method doesn&apos;t return anything</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="369"/>
+        <source>docstring does not contain enough @param/@keyparam lines</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="372"/>
+        <source>docstring contains too many @param/@keyparam lines</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="375"/>
+        <source>keyword only arguments must be documented with @keyparam lines</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="378"/>
+        <source>order of @param/@keyparam lines does not match the function/method signature</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="381"/>
+        <source>class docstring is preceded by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="383"/>
+        <source>class docstring is followed by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="385"/>
+        <source>function/method docstring is preceded by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="388"/>
+        <source>function/method docstring is followed by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="394"/>
+        <source>last paragraph of docstring is followed by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="397"/>
+        <source>docstring does not contain a @exception line but function/method raises an exception</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="401"/>
+        <source>docstring contains a @exception line but function/method doesn&apos;t raise an exception</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="424"/>
+        <source>{0}: {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="310"/>
-        <source>docstring has wrong indentation</source>
+        <source>docstring does not contain a summary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="359"/>
-        <source>docstring summary does not end with a period</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="316"/>
-        <source>docstring summary is not in imperative mood (Does instead of Do)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="320"/>
-        <source>docstring summary looks like a function&apos;s/method&apos;s signature</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="323"/>
-        <source>docstring does not mention the return value type</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="326"/>
-        <source>function/method docstring is separated by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="329"/>
-        <source>class docstring is not preceded by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="332"/>
-        <source>class docstring is not followed by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="393"/>
-        <source>docstring summary is not followed by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="338"/>
-        <source>last paragraph of docstring is not followed by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="346"/>
-        <source>private function/method is missing a docstring</source>
+        <source>docstring summary does not start with &apos;{0}&apos;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="405"/>
+        <source>raised exception &apos;{0}&apos; is not documented in docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="408"/>
+        <source>documented exception &apos;{0}&apos; is not raised</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="411"/>
+        <source>docstring does not contain a @signal line but class defines signals</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="414"/>
+        <source>docstring contains a @signal line but class doesn&apos;t define signals</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="417"/>
+        <source>defined signal &apos;{0}&apos; is not documented in docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="420"/>
+        <source>documented signal &apos;{0}&apos; is not defined</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="349"/>
-        <source>private class is missing a docstring</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="353"/>
-        <source>leading quotes of docstring not on separate line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="356"/>
-        <source>trailing quotes of docstring not on separate line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="363"/>
-        <source>docstring does not contain a @return line but function/method returns something</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="367"/>
-        <source>docstring contains a @return line but function/method doesn&apos;t return anything</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="371"/>
-        <source>docstring does not contain enough @param/@keyparam lines</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="374"/>
-        <source>docstring contains too many @param/@keyparam lines</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="377"/>
-        <source>keyword only arguments must be documented with @keyparam lines</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="380"/>
-        <source>order of @param/@keyparam lines does not match the function/method signature</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="383"/>
-        <source>class docstring is preceded by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="385"/>
-        <source>class docstring is followed by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="387"/>
-        <source>function/method docstring is preceded by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="390"/>
-        <source>function/method docstring is followed by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="396"/>
-        <source>last paragraph of docstring is followed by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="399"/>
-        <source>docstring does not contain a @exception line but function/method raises an exception</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="403"/>
-        <source>docstring contains a @exception line but function/method doesn&apos;t raise an exception</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="426"/>
-        <source>{0}: {1}</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="312"/>
-        <source>docstring does not contain a summary</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="361"/>
-        <source>docstring summary does not start with &apos;{0}&apos;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="407"/>
-        <source>raised exception &apos;{0}&apos; is not documented in docstring</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="410"/>
-        <source>documented exception &apos;{0}&apos; is not raised</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="413"/>
-        <source>docstring does not contain a @signal line but class defines signals</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="416"/>
-        <source>docstring contains a @signal line but class doesn&apos;t define signals</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="419"/>
-        <source>defined signal &apos;{0}&apos; is not documented in docstring</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="422"/>
-        <source>documented signal &apos;{0}&apos; is not defined</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="351"/>
         <source>class docstring is still a default string</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="344"/>
-        <source>function docstring is still a default string</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="342"/>
+        <source>function docstring is still a default string</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="340"/>
         <source>module docstring is still a default string</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11338,7 +11338,7 @@
         <translation>Tüm seçimi iptal et</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7835"/>
+        <location filename="../QScintilla/Editor.py" line="7834"/>
         <source>Check spelling...</source>
         <translation>Yazım Kontrolü...</translation>
     </message>
@@ -11563,7 +11563,7 @@
         <translation>Bekleme noktasını düzenle...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5605"/>
+        <location filename="../QScintilla/Editor.py" line="5604"/>
         <source>Enable breakpoint</source>
         <translation>Beklemenoktasını etkinleştir</translation>
     </message>
@@ -11723,247 +11723,247 @@
         <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="4767"/>
+        <location filename="../QScintilla/Editor.py" line="4766"/>
         <source>Autocompletion</source>
         <translation>Otomatik tamamlama</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4767"/>
+        <location filename="../QScintilla/Editor.py" line="4766"/>
         <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="5608"/>
+        <location filename="../QScintilla/Editor.py" line="5607"/>
         <source>Disable breakpoint</source>
         <translation>Durmanoktasını iptal et</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5983"/>
+        <location filename="../QScintilla/Editor.py" line="5982"/>
         <source>Code Coverage</source>
         <translation>Kod Koruyucu</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5983"/>
+        <location filename="../QScintilla/Editor.py" line="5982"/>
         <source>Please select a coverage file</source>
         <translation>Lütfen bir koruyucu dosya seçiniz</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6046"/>
+        <location filename="../QScintilla/Editor.py" line="6045"/>
         <source>Show Code Coverage Annotations</source>
         <translation>Kodların Dipnotunu Göster</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6039"/>
+        <location filename="../QScintilla/Editor.py" line="6038"/>
         <source>All lines have been covered.</source>
         <translation>Tüm satırlar korumaya alındı.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6046"/>
+        <location filename="../QScintilla/Editor.py" line="6045"/>
         <source>There is no coverage file available.</source>
         <translation>Hazırda koruma dosyası yok.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6163"/>
+        <location filename="../QScintilla/Editor.py" line="6162"/>
         <source>Profile Data</source>
         <translation>Veri Kesiti</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6163"/>
+        <location filename="../QScintilla/Editor.py" line="6162"/>
         <source>Please select a profile file</source>
         <translation>Lütfen kesit dosyasını seçiniz</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6325"/>
+        <location filename="../QScintilla/Editor.py" line="6324"/>
         <source>Syntax Error</source>
         <translation>Sözdizimi Hatası</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6325"/>
+        <location filename="../QScintilla/Editor.py" line="6324"/>
         <source>No syntax error message available.</source>
         <translation>Uygun söz dizimi hata mesajı yok.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6714"/>
+        <location filename="../QScintilla/Editor.py" line="6713"/>
         <source>Macro Name</source>
         <translation>Makro Adı</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6714"/>
+        <location filename="../QScintilla/Editor.py" line="6713"/>
         <source>Select a macro name:</source>
         <translation>Bir makro ismi seç:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6742"/>
+        <location filename="../QScintilla/Editor.py" line="6741"/>
         <source>Load macro file</source>
         <translation>Makro dosyasını yükle</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6785"/>
+        <location filename="../QScintilla/Editor.py" line="6784"/>
         <source>Macro files (*.macro)</source>
         <translation>Makro dosyaları (*.macro)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6765"/>
+        <location filename="../QScintilla/Editor.py" line="6764"/>
         <source>Error loading macro</source>
         <translation>Makronun yüklenmesinde hata</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6756"/>
+        <location filename="../QScintilla/Editor.py" line="6755"/>
         <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="6765"/>
+        <location filename="../QScintilla/Editor.py" line="6764"/>
         <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="6785"/>
+        <location filename="../QScintilla/Editor.py" line="6784"/>
         <source>Save macro file</source>
         <translation>Makro Dosyasını Kaydet</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6802"/>
+        <location filename="../QScintilla/Editor.py" line="6801"/>
         <source>Save macro</source>
         <translation>Makro Kaydet</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6818"/>
+        <location filename="../QScintilla/Editor.py" line="6817"/>
         <source>Error saving macro</source>
         <translation>Makronun kaydedilmesinde hata</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6818"/>
+        <location filename="../QScintilla/Editor.py" line="6817"/>
         <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="6831"/>
+        <location filename="../QScintilla/Editor.py" line="6830"/>
         <source>Start Macro Recording</source>
         <translation>Makro Kaydı Başladı</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6831"/>
+        <location filename="../QScintilla/Editor.py" line="6830"/>
         <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="6857"/>
+        <location filename="../QScintilla/Editor.py" line="6856"/>
         <source>Macro Recording</source>
         <translation>Makro Kaydediliyor</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6857"/>
+        <location filename="../QScintilla/Editor.py" line="6856"/>
         <source>Enter name of the macro:</source>
         <translation>Makronun ismini gir:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6997"/>
+        <location filename="../QScintilla/Editor.py" line="6996"/>
         <source>File changed</source>
         <translation>Dosya değiştirilmiş</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7167"/>
+        <location filename="../QScintilla/Editor.py" line="7166"/>
         <source>{0} (ro)</source>
         <translation>{0} (ro)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7308"/>
+        <location filename="../QScintilla/Editor.py" line="7307"/>
         <source>Drop Error</source>
         <translation>Düşme hatası</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7308"/>
+        <location filename="../QScintilla/Editor.py" line="7307"/>
         <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="7329"/>
+        <location filename="../QScintilla/Editor.py" line="7328"/>
         <source>Resources</source>
         <translation>Kaynaklar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7331"/>
+        <location filename="../QScintilla/Editor.py" line="7330"/>
         <source>Add file...</source>
         <translation>Dosya ekle...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7333"/>
+        <location filename="../QScintilla/Editor.py" line="7332"/>
         <source>Add files...</source>
         <translation>Dosyaları ekle...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7335"/>
+        <location filename="../QScintilla/Editor.py" line="7334"/>
         <source>Add aliased file...</source>
         <translation>Kısaltmalar dosyasına ekle...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7338"/>
+        <location filename="../QScintilla/Editor.py" line="7337"/>
         <source>Add localized resource...</source>
         <translation>Yaral kaynak ekle...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7342"/>
+        <location filename="../QScintilla/Editor.py" line="7341"/>
         <source>Add resource frame</source>
         <translation>Çerçeve kaynağı ekle</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7361"/>
+        <location filename="../QScintilla/Editor.py" line="7360"/>
         <source>Add file resource</source>
         <translation>Dosya kaynağını ekle</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7377"/>
+        <location filename="../QScintilla/Editor.py" line="7376"/>
         <source>Add file resources</source>
         <translation>Dosya kaynaklarını ekle</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7404"/>
+        <location filename="../QScintilla/Editor.py" line="7403"/>
         <source>Add aliased file resource</source>
         <translation>Kısaltmalar dosyası kaynağını ekle</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7404"/>
+        <location filename="../QScintilla/Editor.py" line="7403"/>
         <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="7470"/>
+        <location filename="../QScintilla/Editor.py" line="7469"/>
         <source>Package Diagram</source>
         <translation>Paket Şeması</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7470"/>
+        <location filename="../QScintilla/Editor.py" line="7469"/>
         <source>Include class attributes?</source>
         <translation>Sınıf nitelikleri dahil edilsin mi?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7492"/>
+        <location filename="../QScintilla/Editor.py" line="7491"/>
         <source>Imports Diagram</source>
         <translation>Şemayı İçe Aktar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7492"/>
+        <location filename="../QScintilla/Editor.py" line="7491"/>
         <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="7506"/>
+        <location filename="../QScintilla/Editor.py" line="7505"/>
         <source>Application Diagram</source>
         <translation>Uygulama Şeması</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7506"/>
+        <location filename="../QScintilla/Editor.py" line="7505"/>
         <source>Include module names?</source>
         <translation>Modül isimleri dahil edilsin mi?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7838"/>
+        <location filename="../QScintilla/Editor.py" line="7837"/>
         <source>Add to dictionary</source>
         <translation>Sözlüğe ekle</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7840"/>
+        <location filename="../QScintilla/Editor.py" line="7839"/>
         <source>Ignore All</source>
         <translation>Hepsini Yoksay</translation>
     </message>
@@ -11973,22 +11973,22 @@
         <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="6602"/>
+        <location filename="../QScintilla/Editor.py" line="6601"/>
         <source>Warning: {0}</source>
         <translation>Dikkat: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6609"/>
+        <location filename="../QScintilla/Editor.py" line="6608"/>
         <source>Error: {0}</source>
         <translation>Hata: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6802"/>
+        <location filename="../QScintilla/Editor.py" line="6801"/>
         <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="6993"/>
+        <location filename="../QScintilla/Editor.py" line="6992"/>
         <source>&lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reopening it.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -12013,27 +12013,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8256"/>
+        <location filename="../QScintilla/Editor.py" line="8255"/>
         <source>Sort Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8256"/>
+        <location filename="../QScintilla/Editor.py" line="8255"/>
         <source>The selection contains illegal data for a numerical sort.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6537"/>
+        <location filename="../QScintilla/Editor.py" line="6536"/>
         <source>Warning</source>
         <translation type="unfinished">Dikkat</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6537"/>
+        <location filename="../QScintilla/Editor.py" line="6536"/>
         <source>No warning messages available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6599"/>
+        <location filename="../QScintilla/Editor.py" line="6598"/>
         <source>Style: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -12058,7 +12058,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6987"/>
+        <location filename="../QScintilla/Editor.py" line="6986"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric6. Reread it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Eric5 ile açıldıktan sonra &lt;b&gt;{0}&lt;/b&gt; dosyasında değişiklik olmuş. Yeniden açılsın mı?&lt;/p&gt; {0}?} {6.?}</translation>
     </message>
@@ -12073,32 +12073,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4897"/>
+        <location filename="../QScintilla/Editor.py" line="4896"/>
         <source>Auto-Completion Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4897"/>
+        <location filename="../QScintilla/Editor.py" line="4896"/>
         <source>The completion list provider &apos;{0}&apos; was already registered. Ignoring duplicate request.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5176"/>
+        <location filename="../QScintilla/Editor.py" line="5175"/>
         <source>Call-Tips Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5176"/>
+        <location filename="../QScintilla/Editor.py" line="5175"/>
         <source>The call-tips provider &apos;{0}&apos; was already registered. Ignoring duplicate request.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8345"/>
+        <location filename="../QScintilla/Editor.py" line="8344"/>
         <source>Register Mouse Click Handler</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8345"/>
+        <location filename="../QScintilla/Editor.py" line="8344"/>
         <source>A mouse click handler for &quot;{0}&quot; was already registered by &quot;{1}&quot;. Aborting request by &quot;{2}&quot;...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -12128,12 +12128,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8466"/>
+        <location filename="../QScintilla/Editor.py" line="8465"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8466"/>
+        <location filename="../QScintilla/Editor.py" line="8465"/>
         <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"></translation>
     </message>
@@ -13952,27 +13952,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="681"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="685"/>
         <source>Delete Sub-Style</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="681"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="685"/>
         <source>&lt;p&gt;Shall the sub-style &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="721"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="725"/>
         <source>{0} - Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="749"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="753"/>
         <source>Reset Sub-Styles to Default</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="749"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="753"/>
         <source>&lt;p&gt;Do you really want to reset all defined sub-styles of &lt;b&gt;{0}&lt;/b&gt; to the default values?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -17679,7 +17679,7 @@
 <context>
     <name>EricdocPlugin</name>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="102"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="81"/>
         <source>Qt Help Tools</source>
         <translation type="unfinished"></translation>
     </message>
@@ -17689,22 +17689,22 @@
         <translation type="unfinished">Eric5 Döküman Üreteci {6 ?}</translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="145"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="124"/>
         <source>Generate documentation (eric6_doc)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="145"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="124"/>
         <source>Generate &amp;documentation (eric6_doc)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="149"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="128"/>
         <source>Generate API documentation using eric6_doc</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="151"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="130"/>
         <source>&lt;b&gt;Generate documentation&lt;/b&gt;&lt;p&gt;Generate API documentation using eric6_doc.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -26575,27 +26575,27 @@
 <context>
     <name>Globals</name>
     <message>
-        <location filename="../Globals/__init__.py" line="452"/>
+        <location filename="../Globals/__init__.py" line="421"/>
         <source>{0:4.2f} Bytes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Globals/__init__.py" line="456"/>
+        <location filename="../Globals/__init__.py" line="425"/>
         <source>{0:4.2f} KiB</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Globals/__init__.py" line="460"/>
+        <location filename="../Globals/__init__.py" line="429"/>
         <source>{0:4.2f} MiB</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Globals/__init__.py" line="464"/>
+        <location filename="../Globals/__init__.py" line="433"/>
         <source>{0:4.2f} GiB</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Globals/__init__.py" line="468"/>
+        <location filename="../Globals/__init__.py" line="437"/>
         <source>{0:4.2f} TiB</source>
         <translation type="unfinished"></translation>
     </message>
@@ -26604,12 +26604,12 @@
     <name>GlosbeEngine</name>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GlosbeEngine.py" line="85"/>
-        <source>Invalid response received</source>
+        <source>Glosbe: Invalid response received</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GlosbeEngine.py" line="99"/>
-        <source>No translation found.</source>
+        <source>Glosbe: No translation found.</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -26617,17 +26617,17 @@
     <name>GoogleV1Engine</name>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV1Engine.py" line="98"/>
-        <source>Invalid response received</source>
+        <source>Google V1: Invalid response received</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV1Engine.py" line="135"/>
-        <source>No translation found.</source>
+        <source>Google V1: No translation found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV1Engine.py" line="165"/>
-        <source>Only texts up to {0} characters are allowed.</source>
+        <source>Google V1: Only texts up to {0} characters are allowed.</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -26635,17 +26635,17 @@
     <name>GoogleV2Engine</name>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="72"/>
-        <source>A valid Google Translate key is required.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="83"/>
-        <source>Invalid response received</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="89"/>
-        <source>No translation available.</source>
+        <source>Google V2: A valid Google Translate key is required.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="84"/>
+        <source>Google V2: Invalid response received</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="90"/>
+        <source>Google V2: No translation available.</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -39279,34 +39279,34 @@
 <context>
     <name>IbmWatsonEngine</name>
     <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
+        <source>Error Getting Available Translations</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
+        <source>IBM Watson: No translation available.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="183"/>
-        <source>A valid IBM Watson Language Translator key is required.</source>
+        <source>IBM Watson: A valid Language Translator key is required.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="192"/>
-        <source>A valid IBM Watson Language Translator URL is required.</source>
+        <source>IBM Watson: A valid Language Translator URL is required.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="244"/>
-        <source>Invalid response received</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
-        <source>No translation available.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
-        <source>Error Getting Available Translations</source>
+        <source>IBM Watson: Invalid response received</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="232"/>
-        <source>The server sent an error indication.
-Error: {0}</source>
+        <source>IBM Watson: The server sent an error indication.
+ Error: {0}</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -45152,147 +45152,147 @@
 <context>
     <name>Lexers</name>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="86"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="84"/>
         <source>Bash</source>
         <translation>Bash</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="86"/>
+        <source>Batch</source>
+        <translation>Batch</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="88"/>
-        <source>Batch</source>
-        <translation>Batch</translation>
+        <source>C/C++</source>
+        <translation>C/C++</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="90"/>
-        <source>C/C++</source>
-        <translation>C/C++</translation>
+        <source>C#</source>
+        <translation>C#</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="92"/>
-        <source>C#</source>
-        <translation>C#</translation>
+        <source>CMake</source>
+        <translation>CMake</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="94"/>
-        <source>CMake</source>
-        <translation>CMake</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="96"/>
         <source>CSS</source>
         <translation>CSS</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="98"/>
+        <source>D</source>
+        <translation>D</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="100"/>
-        <source>D</source>
-        <translation>D</translation>
+        <source>Diff</source>
+        <translation>Diff</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="102"/>
-        <source>Diff</source>
-        <translation>Diff</translation>
+        <source>Fortran</source>
+        <translation>Fortran</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="104"/>
-        <source>Fortran</source>
-        <translation>Fortran</translation>
+        <source>Fortran77</source>
+        <translation>Fortran77</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="106"/>
-        <source>Fortran77</source>
-        <translation>Fortran77</translation>
+        <source>HTML/PHP/XML</source>
+        <translation>HTML/PHP/XML</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="108"/>
-        <source>HTML/PHP/XML</source>
-        <translation>HTML/PHP/XML</translation>
+        <source>IDL</source>
+        <translation>IDL</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="110"/>
-        <source>IDL</source>
-        <translation>IDL</translation>
+        <source>Java</source>
+        <translation>Java</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="112"/>
-        <source>Java</source>
-        <translation>Java</translation>
+        <source>JavaScript</source>
+        <translation>JavaScript</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="114"/>
-        <source>JavaScript</source>
-        <translation>JavaScript</translation>
+        <source>Lua</source>
+        <translation>Lua</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="116"/>
-        <source>Lua</source>
-        <translation>Lua</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="118"/>
         <source>Makefile</source>
         <translation>Makefile</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="122"/>
+        <source>Pascal</source>
+        <translation>Pascal</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="124"/>
-        <source>Pascal</source>
-        <translation>Pascal</translation>
+        <source>Perl</source>
+        <translation>Perl</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="126"/>
-        <source>Perl</source>
-        <translation>Perl</translation>
+        <source>PostScript</source>
+        <translation>PostScript</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="128"/>
-        <source>PostScript</source>
-        <translation>PostScript</translation>
+        <source>Povray</source>
+        <translation>Povray</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="130"/>
-        <source>Povray</source>
-        <translation>Povray</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="132"/>
         <source>Properties</source>
         <translation>Özellikler</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="141"/>
+        <source>Ruby</source>
+        <translation>Ruby</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="143"/>
-        <source>Ruby</source>
-        <translation>Ruby</translation>
+        <source>SQL</source>
+        <translation>SQL</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="145"/>
-        <source>SQL</source>
-        <translation>SQL</translation>
+        <source>TCL</source>
+        <translation>TCL</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="147"/>
-        <source>TCL</source>
-        <translation>TCL</translation>
+        <source>TeX</source>
+        <translation>TeX</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="149"/>
-        <source>TeX</source>
-        <translation>TeX</translation>
+        <source>VHDL</source>
+        <translation>VHDL</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="151"/>
-        <source>VHDL</source>
-        <translation>VHDL</translation>
+        <source>XML</source>
+        <translation>XML</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="153"/>
-        <source>XML</source>
-        <translation>XML</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="155"/>
         <source>YAML</source>
         <translation>YAML</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="183"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="173"/>
         <source>Pygments</source>
         <translation>Pygments</translation>
     </message>
@@ -45307,332 +45307,332 @@
         <translation type="obsolete">Python GUI Dosyaları (*.pyw *.pyw2 *.pyw3)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="575"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="562"/>
         <source>Quixote Template Files (*.ptl)</source>
         <translation>Quixote Template Dosyaları (*.ptl)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="578"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="565"/>
         <source>Ruby Files (*.rb)</source>
         <translation>Ruby Dosyaları (*.rb)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="581"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="568"/>
         <source>IDL Files (*.idl)</source>
         <translation>IDL Dosyaları (*.idl)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="408"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="398"/>
         <source>C Files (*.h *.c)</source>
         <translation>C Dosyalır (*.h *.c)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="411"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="401"/>
         <source>C++ Files (*.h *.hpp *.hh *.cxx *.cpp *.cc)</source>
         <translation>C++ Dosyaları (*.h *.hpp *.hh *.cxx *.cpp *.cc)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="596"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="583"/>
         <source>C# Files (*.cs)</source>
         <translation>C# Dosyaları (*.cs)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="417"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="407"/>
         <source>HTML Files (*.html *.htm *.asp *.shtml)</source>
         <translation>HTML Dosyaları (*.html *.htm *.asp *.shtml)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="608"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="595"/>
         <source>CSS Files (*.css)</source>
         <translation>CSS Dosyaları (*.css)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="611"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="598"/>
         <source>QSS Files (*.qss)</source>
         <translation>QSS Dosyaları (*.qss)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="426"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="416"/>
         <source>PHP Files (*.php *.php3 *.php4 *.php5 *.phtml)</source>
         <translation>PHP Dosyaları (*.php *.php3 *.php4 *.php5 *.phtml)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="429"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="419"/>
         <source>XML Files (*.xml *.xsl *.xslt *.dtd *.svg *.xul *.xsd)</source>
         <translation>XML Dosyaları (*.xml *.xsl *.xslt *.dtd *.svg *.xul *.xsd)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="623"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="610"/>
         <source>Qt Resource Files (*.qrc)</source>
         <translation>Qt Kaynak Dosyaları (*.qrc)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="435"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="425"/>
         <source>D Files (*.d *.di)</source>
         <translation>D Dosyaları (*.d *.di)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="632"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="619"/>
         <source>Java Files (*.java)</source>
         <translation>Java Dosyaları (*.java)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="635"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="622"/>
         <source>JavaScript Files (*.js)</source>
         <translation>JavaScript Dosyaları (*.js)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="638"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="625"/>
         <source>SQL Files (*.sql)</source>
         <translation>SQL Dosyaları (*.sql)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="641"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="628"/>
         <source>Docbook Files (*.docbook)</source>
         <translation>Docbook Dosyaları (*.docbook)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="450"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="440"/>
         <source>Perl Files (*.pl *.pm *.ph)</source>
         <translation>Perl Dosyaları (*.pl *.pm *.ph)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="650"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="637"/>
         <source>Lua Files (*.lua)</source>
         <translation>Lua Dosyaları (*.lua)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="456"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="446"/>
         <source>Tex Files (*.tex *.sty *.aux *.toc *.idx)</source>
         <translation>Tex Dosyaları (*.tex *.sty *.aux *.toc *.idx)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="653"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="640"/>
         <source>Shell Files (*.sh)</source>
         <translation>Kabuk Dosyaları (*.sh)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="462"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="452"/>
         <source>Batch Files (*.bat *.cmd)</source>
         <translation>Batch Dosyaları (*.bat *.cmd)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="465"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="455"/>
         <source>Diff Files (*.diff *.patch)</source>
         <translation>Diff Dosyaları (*.diff *.patch)</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="458"/>
+        <source>Makefiles (*makefile Makefile *.mak)</source>
+        <translation type="unfinished">Make Dosyaları (*.mak)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="461"/>
+        <source>Properties Files (*.properties *.ini *.inf *.reg *.cfg *.cnf *.rc)</source>
+        <translation>Ayarlar Dosyaları (*.properties *.ini *.inf *.reg *.cfg *.cnf *.rc)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="664"/>
+        <source>Povray Files (*.pov)</source>
+        <translation>Povray Dosyaları (*.pov)</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="468"/>
-        <source>Makefiles (*makefile Makefile *.mak)</source>
-        <translation type="unfinished">Make Dosyaları (*.mak)</translation>
+        <source>CMake Files (CMakeLists.txt *.cmake *.ctest)</source>
+        <translation>CMake Dosyaları (CMakeLists.txt *.cmake *.ctest)</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="471"/>
-        <source>Properties Files (*.properties *.ini *.inf *.reg *.cfg *.cnf *.rc)</source>
-        <translation>Ayarlar Dosyaları (*.properties *.ini *.inf *.reg *.cfg *.cnf *.rc)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="677"/>
-        <source>Povray Files (*.pov)</source>
-        <translation>Povray Dosyaları (*.pov)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="478"/>
-        <source>CMake Files (CMakeLists.txt *.cmake *.ctest)</source>
-        <translation>CMake Dosyaları (CMakeLists.txt *.cmake *.ctest)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="481"/>
         <source>VHDL Files (*.vhd *.vhdl)</source>
         <translation>VHDL Dosyaları (*.vhd *.vhdl)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="484"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="474"/>
         <source>TCL/Tk Files (*.tcl *.tk)</source>
         <translation>TCL/Tk Dosyaları (*.tcl *.tk)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="487"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="477"/>
         <source>Fortran Files (*.f90 *.f95 *.f2k)</source>
         <translation>Fortran Dosyaları (*.f90 *.f95 *.f2k)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="490"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="480"/>
         <source>Fortran77 Files (*.f *.for)</source>
         <translation>Fortran77 Dosyaları (*.f *.for)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="493"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="483"/>
         <source>Pascal Files (*.dpr *.dpk *.pas *.dfm *.inc *.pp)</source>
         <translation>Pascal Dosyaları (*.dpr *.dpk *.pas *.dfm *.inc *.pp)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="704"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="691"/>
         <source>PostScript Files (*.ps)</source>
         <translation>PostScript Dosyaları (*.ps)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="499"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="489"/>
         <source>YAML Files (*.yaml *.yml)</source>
         <translation>YAML Dosyaları (*.yaml *.yml)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="746"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="730"/>
         <source>All Files (*)</source>
         <translation>Tüm Dosyalar (*)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="560"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="547"/>
         <source>Python3 Files (*.py)</source>
         <translation>Python Dosyaları (*.py3)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="563"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="550"/>
         <source>Python3 GUI Files (*.pyw)</source>
         <translation>Python GUI Dosyaları (*.pyw3)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="587"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="574"/>
         <source>C Files (*.c)</source>
         <translation>C Dosyaları (*.c)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="590"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="577"/>
         <source>C++ Files (*.cpp)</source>
         <translation>C++ Dosyaları (*.cpp)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="593"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="580"/>
         <source>C++/C Header Files (*.h)</source>
         <translation>C++/C Yardımcı Dosyaları (*.h)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="599"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="586"/>
         <source>HTML Files (*.html)</source>
         <translation>HTML Dosyaları (*.html)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="602"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="589"/>
         <source>PHP Files (*.php)</source>
         <translation>PHP Dosyaları (*.php)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="605"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="592"/>
         <source>ASP Files (*.asp)</source>
         <translation>ASP Dosyaları (*.asp)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="614"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="601"/>
         <source>XML Files (*.xml)</source>
         <translation>XML Dosyaları (*.xml)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="617"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="604"/>
         <source>XSL Files (*.xsl)</source>
         <translation>XSL Dosyaları (*.xsl)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="620"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="607"/>
         <source>DTD Files (*.dtd)</source>
         <translation>DTD Dosyaları (*.dtd)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="626"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="613"/>
         <source>D Files (*.d)</source>
         <translation>D Dosyaları (*.d)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="629"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="616"/>
         <source>D Interface Files (*.di)</source>
         <translation>D Interface Dosyaları (*.di)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="644"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="631"/>
         <source>Perl Files (*.pl)</source>
         <translation>Perl Dosyaları (*.pl)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="647"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="634"/>
         <source>Perl Module Files (*.pm)</source>
         <translation>Perl Module Dosyaları (*.pm)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="656"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="643"/>
         <source>Batch Files (*.bat)</source>
         <translation>Batch Dosyaları (*.bat)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="659"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="646"/>
         <source>TeX Files (*.tex)</source>
         <translation>TeX Dosyaları (*.tex)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="662"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="649"/>
         <source>TeX Template Files (*.sty)</source>
         <translation>TeXŞablon Dosyası (*.sty)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="665"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="652"/>
         <source>Diff Files (*.diff)</source>
         <translation>Diff  Dosyaları (*.diff)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="668"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="655"/>
         <source>Make Files (*.mak)</source>
         <translation>Make Dosyaları (*.mak)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="671"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="658"/>
         <source>Properties Files (*.ini)</source>
         <translation>Özellikler Dosyaları (*.ini)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="674"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="661"/>
         <source>Configuration Files (*.cfg)</source>
         <translation>Ayar Dosyaları (*.cfg)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="680"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="667"/>
         <source>CMake Files (CMakeLists.txt)</source>
         <translation>CMake Dosyaları (CMakeLists.txt)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="683"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="670"/>
         <source>CMake Macro Files (*.cmake)</source>
         <translation>CMake Makro Dosyaları (*.cmake)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="686"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="673"/>
         <source>VHDL Files (*.vhd)</source>
         <translation>VHDL Dosyaları (*.vhd)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="689"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="676"/>
         <source>TCL Files (*.tcl)</source>
         <translation>TCL Dosyaları (*.tcl)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="692"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="679"/>
         <source>Tk Files (*.tk)</source>
         <translation>Tk Dosyaları (*.tk)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="695"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="682"/>
         <source>Fortran Files (*.f95)</source>
         <translation>Fortran Dosyaları (*.f95)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="698"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="685"/>
         <source>Fortran77 Files (*.f)</source>
         <translation>Fortran77 Dosyaları (*.f)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="701"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="688"/>
         <source>Pascal Files (*.pas)</source>
         <translation>Pascal Dosyaları (*.pas)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="707"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="694"/>
         <source>YAML Files (*.yml)</source>
         <translation>YAML Dosyaları (*.yml)</translation>
     </message>
@@ -45642,7 +45642,7 @@
         <translation type="obsolete">Python2</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="137"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="135"/>
         <source>Python3</source>
         <translation>Python3</translation>
     </message>
@@ -45657,130 +45657,135 @@
         <translation type="obsolete">Python2 GUI Dosyaları (*.pyw2)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="120"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="118"/>
         <source>Matlab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="122"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="120"/>
         <source>Octave</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="502"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="495"/>
         <source>Matlab Files (*.m *.m.matlab)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="710"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="700"/>
         <source>Matlab Files (*.m)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="713"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="703"/>
         <source>Octave Files (*.m.octave)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="505"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="498"/>
         <source>Octave Files (*.m *.m.octave)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="141"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="139"/>
         <source>QSS</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="155"/>
+        <source>Gettext</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="706"/>
+        <source>Gettext Files (*.po)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="157"/>
-        <source>Gettext</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="716"/>
-        <source>Gettext Files (*.po)</source>
+        <source>CoffeeScript</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="709"/>
+        <source>CoffeeScript Files (*.coffee)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="159"/>
-        <source>CoffeeScript</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="719"/>
-        <source>CoffeeScript Files (*.coffee)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="165"/>
         <source>JSON</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="725"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="712"/>
         <source>JSON Files (*.json)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="170"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="161"/>
         <source>Markdown</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="730"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="715"/>
         <source>Markdown Files (*.md)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="134"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="132"/>
         <source>Protocol (protobuf)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="584"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="571"/>
         <source>Protocol Files (*.proto)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="98"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="96"/>
         <source>Cython</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="393"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="383"/>
         <source>Cython Files (*.pyx *.pxd *.pxi)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="566"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="553"/>
         <source>Cython Files (*.pyx)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="569"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="556"/>
         <source>Cython Declaration Files (*.pxd)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="572"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="559"/>
         <source>Cython Include Files (*.pxi)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="139"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="137"/>
         <source>MicroPython</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="387"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="377"/>
         <source>Python Files (*.py *.py3)</source>
         <translation type="unfinished">Python Dosyaları (*.py *.py3)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="390"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="380"/>
         <source>Python GUI Files (*.pyw *.pyw3)</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="697"/>
+        <source>TOML Files (*.toml)</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>LfConvertDataDialog</name>
@@ -47799,23 +47804,23 @@
 <context>
     <name>MicrosoftEngine</name>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="187"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="190"/>
         <source>You have not registered for the Microsoft Translation service.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="193"/>
-        <source>No valid access token available.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="170"/>
-        <source>No translation available.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="205"/>
-        <source>No Text-to-Speech for the selected language available.</source>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="196"/>
+        <source>MS Translator: No valid access token available.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="173"/>
+        <source>MS Translator: No translation available.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="211"/>
+        <source>MS Translator: No Text-to-Speech for the selected language available.</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -48216,238 +48221,238 @@
         <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="2176"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2175"/>
         <source>About</source>
         <translation>Hakkında</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2176"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2175"/>
         <source>&amp;About</source>
         <translation>H&amp;akkında</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2180"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2179"/>
         <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="2182"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2181"/>
         <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="2188"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2187"/>
         <source>About Qt</source>
         <translation>Qt Hakkında</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2188"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2187"/>
         <source>About &amp;Qt</source>
         <translation>&amp;Qt Hakkında</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2192"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2191"/>
         <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="2194"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2193"/>
         <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="2201"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2200"/>
         <source>What&apos;s This?</source>
         <translation>Bu nedir?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2201"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2200"/>
         <source>&amp;What&apos;s This?</source>
         <translation>Bu &amp;Nedir?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2201"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2200"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation>Shift+F1</translation>
     </message>
     <message>
+        <location filename="../QScintilla/MiniEditor.py" line="2206"/>
+        <source>Context sensitive help</source>
+        <translation>Duyarlı yardım</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/MiniEditor.py" line="2207"/>
-        <source>Context sensitive help</source>
-        <translation>Duyarlı yardım</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2208"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Duyarlı yardım içeriğini görüntüle&lt;/b&gt;&lt;p&gt;Bu Nedir? modunda, Fare imleci soru işeretiyle beraber bir ok şeklindedir ve bir arayüz elemanı üzerinde tıklarsanız bu elemanın nasıl kullanılacağı ve hakkında kısa bilgi verir. bu özellik diyaloglarda başlık çubuğu üzerindeyken çıkarılan açılır menülerde de bulunmaktadır.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2224"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2223"/>
         <source>&amp;File</source>
         <translation>&amp;Dosya</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2236"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2235"/>
         <source>&amp;Edit</source>
         <translation>Düz&amp;en</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2256"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2255"/>
         <source>&amp;Help</source>
         <translation>&amp;Yardım</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2268"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2267"/>
         <source>File</source>
         <translation>Dosya</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2281"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2280"/>
         <source>Edit</source>
         <translation>Düzen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2291"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2290"/>
         <source>Find</source>
         <translation>Bul</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2298"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2297"/>
         <source>Help</source>
         <translation>Yardım</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2311"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2310"/>
         <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="2318"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2317"/>
         <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="2325"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2324"/>
         <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="2330"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2329"/>
         <source>Ready</source>
         <translation>Hazır</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2386"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2385"/>
         <source>Open File</source>
         <translation>Dosya Aç</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2386"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2385"/>
         <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="2415"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2414"/>
         <source>File loaded</source>
         <translation>Dosya Yüklendi</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2496"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2495"/>
         <source>Save File</source>
         <translation>Dosyayı Kaydet</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2496"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2495"/>
         <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="2504"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2503"/>
         <source>File saved</source>
         <translation>Dosya Kaydedildi</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2851"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2849"/>
         <source>Untitled</source>
         <translation>Başlıksız</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2533"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2532"/>
         <source>{0}[*] - {1}</source>
         <translation>{0}[*] - {1}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2533"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2532"/>
         <source>Mini Editor</source>
         <translation>Mini Düzenleyici</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2814"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2812"/>
         <source>Printing...</source>
         <translation>Yazılıyor...</translation>
     </message>
     <message>
+        <location filename="../QScintilla/MiniEditor.py" line="2830"/>
+        <source>Printing completed</source>
+        <translation>Yazdırma tamalandı</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/MiniEditor.py" line="2832"/>
-        <source>Printing completed</source>
-        <translation>Yazdırma tamalandı</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2834"/>
         <source>Error while printing</source>
         <translation>Yazdırılırken hata</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2837"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2835"/>
         <source>Printing aborted</source>
         <translation>Yazdırma iptal edildi</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2892"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2890"/>
         <source>Select all</source>
         <translation>Hepsini seç</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2893"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2891"/>
         <source>Deselect all</source>
         <translation>Tüm seçimi iptal et</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2907"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2905"/>
         <source>Languages</source>
         <translation>Diller</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2910"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2908"/>
         <source>No Language</source>
         <translation>Dil Yok</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2934"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2932"/>
         <source>Guessed</source>
         <translation>Tahmin edilen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2956"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2954"/>
         <source>Alternatives</source>
         <translation>Alternatifler</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2952"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2950"/>
         <source>Alternatives ({0})</source>
         <translation>Alternatifler ({0})</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2972"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2970"/>
         <source>Pygments Lexer</source>
         <translation>Pygments Lexer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2972"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2970"/>
         <source>Select the Pygments lexer to apply.</source>
         <translation>Kullanmak için Pygment lexer seç.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2357"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2356"/>
         <source>The document has unsaved changes.</source>
         <translation>Belgede kaydedilmemiş değişiklikler var.</translation>
     </message>
@@ -48462,7 +48467,7 @@
         <translation type="unfinished">Eric5 Mini Düzenleyici QScintlla bileşenleri ile hazırlanmıştır.Güçlü bir düzenleyicinin tüm özelliklerine ihtiyaç duyulmayan, basit düzenleme işlerinde kullanılabilir. {6 ?}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2357"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2356"/>
         <source>eric6 Mini Editor</source>
         <translation type="unfinished">eric5 Mini Düzenleyici {6 ?}</translation>
     </message>
@@ -48487,17 +48492,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3490"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3488"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3490"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3488"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2516"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2515"/>
         <source>[*] - {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -48505,463 +48510,463 @@
 <context>
     <name>MiscellaneousChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="492"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="490"/>
         <source>coding magic comment not found</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="495"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="493"/>
         <source>unknown encoding ({0}) found in coding magic comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="498"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="496"/>
         <source>copyright notice not present</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="501"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="499"/>
         <source>copyright notice contains invalid author</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="702"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="700"/>
         <source>found {0} formatter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="705"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="703"/>
         <source>format string does contain unindexed parameters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="708"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="706"/>
         <source>docstring does contain unindexed parameters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="711"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="709"/>
         <source>other string does contain unindexed parameters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="714"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="712"/>
         <source>format call uses too large index ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="717"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="715"/>
         <source>format call uses missing keyword ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="720"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="718"/>
         <source>format call uses keyword arguments but no named entries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="723"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="721"/>
         <source>format call uses variable arguments but no numbered entries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="726"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="724"/>
         <source>format call uses implicit and explicit indexes together</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="729"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="727"/>
         <source>format call provides unused index ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="732"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="730"/>
         <source>format call provides unused keyword ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="751"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="749"/>
         <source>expected these __future__ imports: {0}; but only got: {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="754"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="752"/>
         <source>expected these __future__ imports: {0}; but got none</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="761"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="759"/>
         <source>print statement found</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="764"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="762"/>
         <source>one element tuple found</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="800"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="798"/>
         <source>{0}: {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="504"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="502"/>
         <source>&quot;{0}&quot; is a Python builtin and is being shadowed; consider renaming the variable</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="508"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="506"/>
         <source>&quot;{0}&quot; is used as an argument and thus shadows a Python builtin; consider renaming the argument</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="512"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="510"/>
         <source>unnecessary generator - rewrite as a list comprehension</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="515"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="513"/>
         <source>unnecessary generator - rewrite as a set comprehension</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="518"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="516"/>
         <source>unnecessary generator - rewrite as a dict comprehension</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="521"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="519"/>
         <source>unnecessary list comprehension - rewrite as a set comprehension</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="524"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="522"/>
         <source>unnecessary list comprehension - rewrite as a dict comprehension</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="530"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="528"/>
         <source>unnecessary list comprehension - &quot;{0}&quot; can take a generator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="770"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="768"/>
         <source>mutable default argument of type {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="555"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="553"/>
         <source>sort keys - &apos;{0}&apos; should be before &apos;{1}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="738"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="736"/>
         <source>logging statement uses &apos;%&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="744"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="742"/>
         <source>logging statement uses f-string</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="747"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="745"/>
         <source>logging statement uses &apos;warn&apos; instead of &apos;warning&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="735"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="733"/>
         <source>logging statement uses string.format()</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="741"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="739"/>
         <source>logging statement uses &apos;+&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="757"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="755"/>
         <source>gettext import with alias _ found: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="648"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="646"/>
         <source>Python does not support the unary prefix increment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="657"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="655"/>
         <source>&apos;sys.maxint&apos; is not defined in Python 3 - use &apos;sys.maxsize&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="660"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="658"/>
         <source>&apos;BaseException.message&apos; has been deprecated as of Python 2.6 and is removed in Python 3 - use &apos;str(e)&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="664"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="662"/>
         <source>assigning to &apos;os.environ&apos; does not clear the environment - use &apos;os.environ.clear()&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="688"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="686"/>
         <source>Python 3 does not include &apos;.iter*&apos; methods on dictionaries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="691"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="689"/>
         <source>Python 3 does not include &apos;.view*&apos; methods on dictionaries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="694"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="692"/>
         <source>&apos;.next()&apos; does not exist in Python 3</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="697"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="695"/>
         <source>&apos;__metaclass__&apos; does nothing on Python 3 - use &apos;class MyClass(BaseClass, metaclass=...)&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="773"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="771"/>
         <source>mutable default argument of function call &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="651"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="649"/>
         <source>using .strip() with multi-character strings is misleading</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="678"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="676"/>
         <source>using &apos;hasattr(x, &quot;__call__&quot;)&apos; to test if &apos;x&apos; is callable is unreliable</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="668"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="666"/>
         <source>loop control variable {0} not used within the loop body - start the name with an underscore</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="776"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="774"/>
         <source>None should not be added at any return if function has no return value except None</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="780"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="778"/>
         <source>an explicit value at every return should be added if function has a return value except None</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="784"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="782"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="788"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="786"/>
         <source>a value should not be assigned to a variable if it will be used as a return value only</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="654"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="652"/>
         <source>do not call assert False since python -O removes these calls</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="672"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="670"/>
         <source>unncessary f-string</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="675"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="673"/>
         <source>cannot use &apos;self.__class__&apos; as first argument of &apos;super()&apos; call</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="682"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="680"/>
         <source>do not call getattr with a constant attribute value</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="685"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="683"/>
         <source>do not call setattr with a constant attribute value</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="796"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="794"/>
         <source>commented code lines should be removed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="792"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="790"/>
         <source>prefer implied line continuation inside parentheses, brackets and braces as opposed to a backslash</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="559"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="557"/>
         <source>use of &apos;datetime.datetime()&apos; without &apos;tzinfo&apos; argument should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="563"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="561"/>
         <source>use of &apos;datetime.datetime.today()&apos; should be avoided.
 Use &apos;datetime.datetime.now(tz=)&apos; instead.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="567"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="565"/>
         <source>use of &apos;datetime.datetime.utcnow()&apos; should be avoided.
 Use &apos;datetime.datetime.now(tz=)&apos; instead.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="571"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="569"/>
         <source>use of &apos;datetime.datetime.utcfromtimestamp()&apos; should be avoided.
 Use &apos;datetime.datetime.fromtimestamp(, tz=)&apos; instead.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="575"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="573"/>
         <source>use of &apos;datetime.datetime.now()&apos; without &apos;tz&apos; argument should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="579"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="577"/>
         <source>use of &apos;datetime.datetime.fromtimestamp()&apos; without &apos;tz&apos; argument should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="583"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="581"/>
         <source>use of &apos;datetime.datetime.strptime()&apos; should be followed by &apos;.replace(tzinfo=)&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="590"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="588"/>
         <source>use of &apos;datetime.date()&apos; should be avoided.
 Use &apos;datetime.datetime(, tzinfo=).date()&apos; instead.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="594"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="592"/>
         <source>use of &apos;datetime.date.today()&apos; should be avoided.
 Use &apos;datetime.datetime.now(tz=).date()&apos; instead.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="598"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="596"/>
         <source>use of &apos;datetime.date.fromtimestamp()&apos; should be avoided.
 Use &apos;datetime.datetime.fromtimestamp(tz=).date()&apos; instead.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="608"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="606"/>
         <source>use of &apos;datetime.time()&apos; without &apos;tzinfo&apos; argument should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="587"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="585"/>
         <source>use of &apos;datetime.datetime.fromordinal()&apos; should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="602"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="600"/>
         <source>use of &apos;datetime.date.fromordinal()&apos; should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="605"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="603"/>
         <source>use of &apos;datetime.date.fromisoformat()&apos; should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="527"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="525"/>
         <source>unnecessary {0} call - rewrite as a literal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="533"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="531"/>
         <source>unnecessary {0} literal - rewrite as a {1} literal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="536"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="534"/>
         <source>unnecessary {0} passed to tuple() - rewrite as a {1} literal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="539"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="537"/>
         <source>unnecessary {0} passed to list() - rewrite as a {1} literal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="542"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="540"/>
         <source>unnecessary list call - remove the outer call to list()</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="545"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="543"/>
         <source>unnecessary list comprehension - &quot;in&quot; can take a generator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="548"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="546"/>
         <source>unnecessary {0} passed to tuple() - remove the outer call to {1}()</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="551"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="549"/>
         <source>unnecessary {0} passed to list() - remove the outer call to {1}()</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="613"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="611"/>
         <source>&apos;sys.version[:3]&apos; referenced (Python 3.10), use &apos;sys.version_info&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="616"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="614"/>
         <source>&apos;sys.version[2]&apos; referenced (Python 3.10), use &apos;sys.version_info&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="619"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="617"/>
         <source>&apos;sys.version&apos; compared to string (Python 3.10), use &apos;sys.version_info&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="623"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="621"/>
         <source>&apos;sys.version_info[0] == 3&apos; referenced (Python 4), use &apos;&gt;=&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="626"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="624"/>
         <source>&apos;six.PY3&apos; referenced (Python 4), use &apos;not six.PY2&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="629"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="627"/>
         <source>&apos;sys.version_info[1]&apos; compared to integer (Python 4), compare &apos;sys.version_info&apos; to tuple</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="633"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="631"/>
         <source>&apos;sys.version_info.minor&apos; compared to integer (Python 4), compare &apos;sys.version_info&apos; to tuple</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="637"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="635"/>
         <source>&apos;sys.version[0]&apos; referenced (Python 10), use &apos;sys.version_info&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="640"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="638"/>
         <source>&apos;sys.version&apos; compared to string (Python 10), use &apos;sys.version_info&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="644"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="642"/>
         <source>&apos;sys.version[:1]&apos; referenced (Python 10), use &apos;sys.version_info&apos;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -49405,84 +49410,84 @@
     <name>MyMemoryEngine</name>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MyMemoryEngine.py" line="72"/>
-        <source>Only texts up to {0} characters are allowed.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MyMemoryEngine.py" line="95"/>
-        <source>Invalid response received</source>
+        <source>MyMemory: Only texts up to {0} characters are allowed.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MyMemoryEngine.py" line="99"/>
+        <source>MyMemory: Invalid response received</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
 <context>
     <name>NamingStyleChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="432"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="430"/>
         <source>class names should use CapWords convention</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="435"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="433"/>
         <source>function name should be lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="438"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="436"/>
         <source>argument name should be lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="441"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="439"/>
         <source>first argument of a class method should be named &apos;cls&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="444"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="442"/>
         <source>first argument of a method should be named &apos;self&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="447"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="445"/>
         <source>first argument of a static method should not be named &apos;self&apos; or &apos;cls</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="451"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="449"/>
         <source>module names should be lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="454"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="452"/>
         <source>package names should be lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="457"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="455"/>
         <source>constant imported as non constant</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="460"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="458"/>
         <source>lowercase imported as non lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="463"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="461"/>
         <source>camelcase imported as lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="466"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="464"/>
         <source>camelcase imported as constant</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="469"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="467"/>
         <source>variable in function should be lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="472"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="470"/>
         <source>names &apos;l&apos;, &apos;O&apos; and &apos;I&apos; should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
@@ -56685,12 +56690,12 @@
     <name>PromtEngine</name>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/PromtEngine.py" line="97"/>
-        <source>Invalid response received</source>
+        <source>Promt: Invalid response received</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/PromtEngine.py" line="106"/>
-        <source>This direction of translation is not available.</source>
+        <source>Promt: This direction of translation is not available.</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -58914,7 +58919,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="694"/>
+        <location filename="../UI/PythonDisViewer.py" line="696"/>
         <source>Code Object &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -58924,22 +58929,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="450"/>
+        <location filename="../UI/PythonDisViewer.py" line="452"/>
         <source>No editor has been opened.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="462"/>
+        <location filename="../UI/PythonDisViewer.py" line="464"/>
         <source>The current editor does not contain any source code.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="468"/>
+        <location filename="../UI/PythonDisViewer.py" line="470"/>
         <source>The current editor does not contain Python source code.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="517"/>
+        <location filename="../UI/PythonDisViewer.py" line="519"/>
         <source>Disassembly of last traceback</source>
         <translation type="unfinished"></translation>
     </message>
@@ -58969,72 +58974,72 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="809"/>
+        <location filename="../UI/PythonDisViewer.py" line="811"/>
         <source>Name</source>
         <translation type="unfinished">Adı</translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="811"/>
-        <source>Filename</source>
-        <translation type="unfinished">Dosyaadı</translation>
-    </message>
-    <message>
         <location filename="../UI/PythonDisViewer.py" line="813"/>
-        <source>First Line</source>
-        <translation type="unfinished"></translation>
+        <source>Filename</source>
+        <translation type="unfinished">Dosyaadı</translation>
     </message>
     <message>
         <location filename="../UI/PythonDisViewer.py" line="815"/>
-        <source>Argument Count</source>
+        <source>First Line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/PythonDisViewer.py" line="817"/>
+        <source>Argument Count</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="819"/>
         <source>Positional-only Arguments</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="823"/>
-        <source>Number of Locals</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/PythonDisViewer.py" line="825"/>
-        <source>Stack Size</source>
+        <source>Number of Locals</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/PythonDisViewer.py" line="827"/>
+        <source>Stack Size</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="829"/>
         <source>Flags</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="830"/>
+        <location filename="../UI/PythonDisViewer.py" line="832"/>
         <source>Constants</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="833"/>
+        <location filename="../UI/PythonDisViewer.py" line="835"/>
         <source>Names</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="836"/>
+        <location filename="../UI/PythonDisViewer.py" line="838"/>
         <source>Variable Names</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="839"/>
+        <location filename="../UI/PythonDisViewer.py" line="841"/>
         <source>Free Variables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="842"/>
+        <location filename="../UI/PythonDisViewer.py" line="844"/>
         <source>Cell Variables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="820"/>
+        <location filename="../UI/PythonDisViewer.py" line="822"/>
         <source>Keyword-only Arguments</source>
         <translation type="unfinished"></translation>
     </message>
@@ -81872,3162 +81877,3162 @@
 <context>
     <name>ViewManager</name>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="635"/>
+        <location filename="../ViewManager/ViewManager.py" line="634"/>
         <source>New</source>
         <translation>Yeni</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="635"/>
+        <location filename="../ViewManager/ViewManager.py" line="634"/>
         <source>&amp;New</source>
         <translation>Ye&amp;ni</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="635"/>
+        <location filename="../ViewManager/ViewManager.py" line="634"/>
         <source>Ctrl+N</source>
         <comment>File|New</comment>
         <translation>Ctrl+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="643"/>
+        <location filename="../ViewManager/ViewManager.py" line="642"/>
         <source>Open an empty editor window</source>
         <translation>Boş bir düzenleyici penceresi aç</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="646"/>
+        <location filename="../ViewManager/ViewManager.py" line="645"/>
         <source>&lt;b&gt;New&lt;/b&gt;&lt;p&gt;An empty editor window will be created.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Yeni&lt;/b&gt;&lt;p&gt;Boş bir düzenleme penceresi oluşturulacak.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="654"/>
+        <location filename="../ViewManager/ViewManager.py" line="653"/>
         <source>Open</source>
         <translation>Aç</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="654"/>
+        <location filename="../ViewManager/ViewManager.py" line="653"/>
         <source>&amp;Open...</source>
         <translation>&amp;Aç...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="654"/>
+        <location filename="../ViewManager/ViewManager.py" line="653"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation>Ctrl+O</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="662"/>
+        <location filename="../ViewManager/ViewManager.py" line="661"/>
         <source>Open a file</source>
         <translation>Bir dosya aç</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="664"/>
+        <location filename="../ViewManager/ViewManager.py" line="663"/>
         <source>&lt;b&gt;Open a file&lt;/b&gt;&lt;p&gt;You will be asked for the name of a file to be opened in an editor window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Bir dosya aç&lt;/b&gt;&lt;p&gt;Düzenleyici penceresinde açmak istediğiniz dosyanın adı sorulmaktadır.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="675"/>
+        <location filename="../ViewManager/ViewManager.py" line="674"/>
         <source>Close</source>
         <translation>Kapat</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="675"/>
+        <location filename="../ViewManager/ViewManager.py" line="674"/>
         <source>&amp;Close</source>
         <translation>&amp;Kapat</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="675"/>
+        <location filename="../ViewManager/ViewManager.py" line="674"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation>Ctrl+W</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="683"/>
+        <location filename="../ViewManager/ViewManager.py" line="682"/>
         <source>Close the current window</source>
         <translation>Geçerli pencereyi kapat</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="686"/>
+        <location filename="../ViewManager/ViewManager.py" line="685"/>
         <source>&lt;b&gt;Close Window&lt;/b&gt;&lt;p&gt;Close the current window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Pencereyi kapat&lt;/b&gt;&lt;p&gt;Geçerli pencereyi kapat.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="694"/>
+        <location filename="../ViewManager/ViewManager.py" line="693"/>
         <source>Close All</source>
         <translation>Hepsini Kapat</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="694"/>
+        <location filename="../ViewManager/ViewManager.py" line="693"/>
         <source>Clos&amp;e All</source>
         <translation>H&amp;epsini Kapat</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="698"/>
+        <location filename="../ViewManager/ViewManager.py" line="697"/>
         <source>Close all editor windows</source>
         <translation>Tüm düzenleme pencerelerini kapat</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="701"/>
+        <location filename="../ViewManager/ViewManager.py" line="700"/>
         <source>&lt;b&gt;Close All Windows&lt;/b&gt;&lt;p&gt;Close all editor windows.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Tüm Pencereleri Kapat&lt;/b&gt;&lt;p&gt;Tüm düzenleme pencerelerini kapat.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="712"/>
         <source>Save</source>
         <translation>Kaydet</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="712"/>
         <source>&amp;Save</source>
         <translation>&amp;Kaydet</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="712"/>
         <source>Ctrl+S</source>
         <comment>File|Save</comment>
         <translation>Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="720"/>
+        <location filename="../ViewManager/ViewManager.py" line="719"/>
         <source>Save the current file</source>
         <translation>Geçerli dosyayı kaydet</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="722"/>
+        <location filename="../ViewManager/ViewManager.py" line="721"/>
         <source>&lt;b&gt;Save File&lt;/b&gt;&lt;p&gt;Save the contents of current editor window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Dosya Kaydet&lt;/b&gt;&lt;p&gt;Geçerli düzenleyici penceresinin içeriğini kaydet.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="729"/>
         <source>Save as</source>
         <translation>Farklı kaydet</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="729"/>
         <source>Save &amp;as...</source>
         <translation>Farklı k&amp;aydet...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="729"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation>Shift+Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="737"/>
+        <location filename="../ViewManager/ViewManager.py" line="736"/>
         <source>Save the current file to a new one</source>
         <translation>Geçerli dosyayı yeni bir tane olarak kaydet</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="739"/>
+        <location filename="../ViewManager/ViewManager.py" line="738"/>
         <source>&lt;b&gt;Save File as&lt;/b&gt;&lt;p&gt;Save the contents of current editor window to a new file. The file can be entered in a file selection dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Dosyayı Farklı Kaydet&lt;/b&gt;&lt;p&gt;Geçerli düzenleyici penceresindeki içeriği yeni bir dosyaya kaydeder. Dosya seçme diyaloğu ile bu dosyaya girilebilir.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="764"/>
+        <location filename="../ViewManager/ViewManager.py" line="763"/>
         <source>Save all</source>
         <translation>Hepsini kaydet</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="769"/>
+        <location filename="../ViewManager/ViewManager.py" line="768"/>
         <source>Save all files</source>
         <translation>Tüm dosyaları kaydet</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="771"/>
+        <location filename="../ViewManager/ViewManager.py" line="770"/>
         <source>&lt;b&gt;Save All Files&lt;/b&gt;&lt;p&gt;Save the contents of all editor windows.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Tüm Dosyaları Kaydet&lt;/b&gt;&lt;p&gt;Tüm düzenleyici pencerelerindeki içerikleri kaydet.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="781"/>
+        <location filename="../ViewManager/ViewManager.py" line="780"/>
         <source>Print</source>
         <translation>Yazdır</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="781"/>
+        <location filename="../ViewManager/ViewManager.py" line="780"/>
         <source>&amp;Print</source>
         <translation>&amp;Yazdır</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="781"/>
+        <location filename="../ViewManager/ViewManager.py" line="780"/>
         <source>Ctrl+P</source>
         <comment>File|Print</comment>
         <translation>Ctrl+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="788"/>
+        <location filename="../ViewManager/ViewManager.py" line="787"/>
         <source>Print the current file</source>
         <translation>Geçerli dosyayı yazdır</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="790"/>
+        <location filename="../ViewManager/ViewManager.py" line="789"/>
         <source>&lt;b&gt;Print File&lt;/b&gt;&lt;p&gt;Print the contents of current editor window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Dosya Yazdır&lt;/b&gt;&lt;p&gt;Geçerli düzenleyici penceresindeki içeriği yazdır.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="799"/>
+        <location filename="../ViewManager/ViewManager.py" line="798"/>
         <source>Print Preview</source>
         <translation>Baskı Öngörünümü</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="804"/>
+        <location filename="../ViewManager/ViewManager.py" line="803"/>
         <source>Print preview of the current file</source>
         <translation>Geçerli dosyanın baskı öngörünümü</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="806"/>
+        <location filename="../ViewManager/ViewManager.py" line="805"/>
         <source>&lt;b&gt;Print Preview&lt;/b&gt;&lt;p&gt;Print preview of the current editor window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Yazıcı Öngörünümü&lt;/b&gt;&lt;p&gt;Geçerli düzenleyici penceresinin yazıcı öngörünümü.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="816"/>
+        <location filename="../ViewManager/ViewManager.py" line="815"/>
         <source>Search File</source>
         <translation>Dosya Ara</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="816"/>
+        <location filename="../ViewManager/ViewManager.py" line="815"/>
         <source>Search &amp;File...</source>
         <translation>Dosya A&amp;ra...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="816"/>
+        <location filename="../ViewManager/ViewManager.py" line="815"/>
         <source>Alt+Ctrl+F</source>
         <comment>File|Search File</comment>
         <translation>Alt+Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="822"/>
+        <location filename="../ViewManager/ViewManager.py" line="821"/>
         <source>Search for a file</source>
         <translation>Bir dosya için ara</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="824"/>
+        <location filename="../ViewManager/ViewManager.py" line="823"/>
         <source>&lt;b&gt;Search File&lt;/b&gt;&lt;p&gt;Search for a file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Dosya Arama&lt;/b&gt;&lt;p&gt;Bir dosya için arama.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="838"/>
+        <location filename="../ViewManager/ViewManager.py" line="837"/>
         <source>&amp;File</source>
         <translation>&amp;Dosya</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="840"/>
+        <location filename="../ViewManager/ViewManager.py" line="839"/>
         <source>Open &amp;Recent Files</source>
         <translation>Geçmiş Dosyala&amp;rı Aç</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="843"/>
+        <location filename="../ViewManager/ViewManager.py" line="842"/>
         <source>Open &amp;Bookmarked Files</source>
         <translation>Yerimi D&amp;osyalarını Aç</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="891"/>
+        <location filename="../ViewManager/ViewManager.py" line="890"/>
         <source>File</source>
         <translation>Dosya</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="914"/>
+        <location filename="../ViewManager/ViewManager.py" line="913"/>
         <source>Export as</source>
         <translation>Farklı Dışaktar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="938"/>
+        <location filename="../ViewManager/ViewManager.py" line="937"/>
         <source>Undo</source>
         <translation>Geri Al</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="938"/>
+        <location filename="../ViewManager/ViewManager.py" line="937"/>
         <source>&amp;Undo</source>
         <translation>&amp;Geri al</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="938"/>
+        <location filename="../ViewManager/ViewManager.py" line="937"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation>Ctrl+Z</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="938"/>
+        <location filename="../ViewManager/ViewManager.py" line="937"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation>Alt+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="947"/>
+        <location filename="../ViewManager/ViewManager.py" line="946"/>
         <source>Undo the last change</source>
         <translation>Enson değişikliği geri al</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="949"/>
+        <location filename="../ViewManager/ViewManager.py" line="948"/>
         <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last change done in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Geri Al&lt;/b&gt;&lt;p&gt;Geçerli düzenleyicide yapılan son değişikliği geri al.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="957"/>
+        <location filename="../ViewManager/ViewManager.py" line="956"/>
         <source>Redo</source>
         <translation>İleri al</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="957"/>
+        <location filename="../ViewManager/ViewManager.py" line="956"/>
         <source>&amp;Redo</source>
         <translation>&amp;İleri al</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="957"/>
+        <location filename="../ViewManager/ViewManager.py" line="956"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation>Ctrl+Shift+Z</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="965"/>
+        <location filename="../ViewManager/ViewManager.py" line="964"/>
         <source>Redo the last change</source>
         <translation>Son değişikliği ileri al</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="967"/>
+        <location filename="../ViewManager/ViewManager.py" line="966"/>
         <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last change done in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;İleri Al&lt;/b&gt;&lt;p&gt;Geçerli düzenleyicide yapılan son değişikliği ileri alır.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="984"/>
+        <location filename="../ViewManager/ViewManager.py" line="983"/>
         <source>Revert to last saved state</source>
         <translation>En son kaydedileni eski haline getir</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="975"/>
+        <location filename="../ViewManager/ViewManager.py" line="974"/>
         <source>Re&amp;vert to last saved state</source>
         <translation>En son kaydedileni e&amp;ski haline getir</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="975"/>
+        <location filename="../ViewManager/ViewManager.py" line="974"/>
         <source>Ctrl+Y</source>
         <comment>Edit|Revert</comment>
         <translation>Ctrl+Y</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="985"/>
         <source>&lt;b&gt;Revert to last saved state&lt;/b&gt;&lt;p&gt;Undo all changes up to the last saved state of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <source>Cut</source>
         <translation>Kes</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <source>Cu&amp;t</source>
         <translation>Ke&amp;s</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation>Ctrl+X</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation>Shift+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1006"/>
+        <location filename="../ViewManager/ViewManager.py" line="1005"/>
         <source>Cut the selection</source>
         <translation>Seçimi kes</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1008"/>
+        <location filename="../ViewManager/ViewManager.py" line="1007"/>
         <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected text of the current editor to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Kes&lt;/b&gt;&lt;p&gt;Geçerli düzenleyicide seçilen metni panoya keser.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1017"/>
+        <location filename="../ViewManager/ViewManager.py" line="1016"/>
         <source>Copy</source>
         <translation>Kopyala</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1017"/>
+        <location filename="../ViewManager/ViewManager.py" line="1016"/>
         <source>&amp;Copy</source>
         <translation>&amp;Kopyala</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1017"/>
+        <location filename="../ViewManager/ViewManager.py" line="1016"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1017"/>
+        <location filename="../ViewManager/ViewManager.py" line="1016"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+Ins</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1026"/>
+        <location filename="../ViewManager/ViewManager.py" line="1025"/>
         <source>Copy the selection</source>
         <translation>Seçimi kopyala</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1028"/>
+        <location filename="../ViewManager/ViewManager.py" line="1027"/>
         <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected text of the current editor to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Kopya&lt;/b&gt;&lt;p&gt;Geçerli düzenleyicideki seçilen metni clipboarda kopyala.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1037"/>
+        <location filename="../ViewManager/ViewManager.py" line="1036"/>
         <source>Paste</source>
         <translation>Yapıştır</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1037"/>
+        <location filename="../ViewManager/ViewManager.py" line="1036"/>
         <source>&amp;Paste</source>
         <translation>Ya&amp;pıştır</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1037"/>
+        <location filename="../ViewManager/ViewManager.py" line="1036"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation>Ctrl+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1037"/>
+        <location filename="../ViewManager/ViewManager.py" line="1036"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation>Shift+Ins</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1046"/>
+        <location filename="../ViewManager/ViewManager.py" line="1045"/>
         <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="1048"/>
+        <location filename="../ViewManager/ViewManager.py" line="1047"/>
         <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the last cut/copied text from the clipboard to the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Yapıştır&lt;/b&gt;&lt;p&gt;En son kesilen/kopyalanan metni panodan geçerli düzenleyiciye yapıştırır.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1057"/>
+        <location filename="../ViewManager/ViewManager.py" line="1056"/>
         <source>Clear</source>
         <translation>Temizle</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1057"/>
+        <location filename="../ViewManager/ViewManager.py" line="1056"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation>Alt+Shift+C</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1065"/>
+        <location filename="../ViewManager/ViewManager.py" line="1064"/>
         <source>Clear all text</source>
         <translation>Tüm metni temizle</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1067"/>
+        <location filename="../ViewManager/ViewManager.py" line="1066"/>
         <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Delete all text of the current editor.&lt;/p&gt;</source>
         <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="../ViewManager/ViewManager.py" line="1092"/>
+        <location filename="../ViewManager/ViewManager.py" line="1091"/>
         <source>Indent</source>
         <translation>Girinti</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1092"/>
+        <location filename="../ViewManager/ViewManager.py" line="1091"/>
         <source>&amp;Indent</source>
         <translation>G&amp;irintili</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1092"/>
+        <location filename="../ViewManager/ViewManager.py" line="1091"/>
         <source>Ctrl+I</source>
         <comment>Edit|Indent</comment>
         <translation>Ctrl+I</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1100"/>
+        <location filename="../ViewManager/ViewManager.py" line="1099"/>
         <source>Indent line</source>
         <translation>Girinti satırı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1102"/>
+        <location filename="../ViewManager/ViewManager.py" line="1101"/>
         <source>&lt;b&gt;Indent&lt;/b&gt;&lt;p&gt;Indents the current line or the lines of the selection by one level.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Girinti&lt;/b&gt;&lt;p&gt;Geçerli satır yada satırların girintissini seçilen bir önceki seviyeye ayarlar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1111"/>
+        <location filename="../ViewManager/ViewManager.py" line="1110"/>
         <source>Unindent</source>
         <translation>Girintisiz</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1111"/>
+        <location filename="../ViewManager/ViewManager.py" line="1110"/>
         <source>U&amp;nindent</source>
         <translation>Giri&amp;ntisiz</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1111"/>
+        <location filename="../ViewManager/ViewManager.py" line="1110"/>
         <source>Ctrl+Shift+I</source>
         <comment>Edit|Unindent</comment>
         <translation>Ctrl+Shift+I</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1119"/>
+        <location filename="../ViewManager/ViewManager.py" line="1118"/>
         <source>Unindent line</source>
         <translation>Girintisiz satır (hat)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1121"/>
+        <location filename="../ViewManager/ViewManager.py" line="1120"/>
         <source>&lt;b&gt;Unindent&lt;/b&gt;&lt;p&gt;Unindents the current line or the lines of the selection by one level.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1130"/>
+        <location filename="../ViewManager/ViewManager.py" line="1129"/>
         <source>Smart indent</source>
         <translation>Akıllı Girinti</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1136"/>
+        <location filename="../ViewManager/ViewManager.py" line="1135"/>
         <source>Smart indent Line or Selection</source>
         <translation>Akıllı Satır Girintisi yada Seçim</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1138"/>
+        <location filename="../ViewManager/ViewManager.py" line="1137"/>
         <source>&lt;b&gt;Smart indent&lt;/b&gt;&lt;p&gt;Indents the current line or the lines of the current selection smartly.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1147"/>
+        <location filename="../ViewManager/ViewManager.py" line="1146"/>
         <source>Comment</source>
         <translation>Yorumlayıcı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1147"/>
+        <location filename="../ViewManager/ViewManager.py" line="1146"/>
         <source>C&amp;omment</source>
         <translation>Y&amp;orumlayıcı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1147"/>
+        <location filename="../ViewManager/ViewManager.py" line="1146"/>
         <source>Ctrl+M</source>
         <comment>Edit|Comment</comment>
         <translation>Ctrl+M</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1155"/>
+        <location filename="../ViewManager/ViewManager.py" line="1154"/>
         <source>Comment Line or Selection</source>
         <translation>Satır Yorumlayıcı yada Seçim</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1157"/>
+        <location filename="../ViewManager/ViewManager.py" line="1156"/>
         <source>&lt;b&gt;Comment&lt;/b&gt;&lt;p&gt;Comments the current line or the lines of the current selection.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Yorumlayıcı&lt;/b&gt;&lt;p&gt;Geçerli satırın yada geçerli seçimdeki satırların yorumlanması.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1166"/>
+        <location filename="../ViewManager/ViewManager.py" line="1165"/>
         <source>Uncomment</source>
         <translation>Yorumlanamaz</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1166"/>
+        <location filename="../ViewManager/ViewManager.py" line="1165"/>
         <source>Unco&amp;mment</source>
         <translation>Yoru&amp;mlanamaz</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1166"/>
+        <location filename="../ViewManager/ViewManager.py" line="1165"/>
         <source>Alt+Ctrl+M</source>
         <comment>Edit|Uncomment</comment>
         <translation>Alt+Ctrl+M</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1174"/>
+        <location filename="../ViewManager/ViewManager.py" line="1173"/>
         <source>Uncomment Line or Selection</source>
         <translation>Yorumlanamaz Satır yada Seçim</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1176"/>
+        <location filename="../ViewManager/ViewManager.py" line="1175"/>
         <source>&lt;b&gt;Uncomment&lt;/b&gt;&lt;p&gt;Uncomments the current line or the lines of the current selection.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1207"/>
+        <location filename="../ViewManager/ViewManager.py" line="1206"/>
         <source>Stream Comment</source>
         <translation>Yorumlayıcı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1212"/>
+        <location filename="../ViewManager/ViewManager.py" line="1211"/>
         <source>Stream Comment Line or Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1215"/>
+        <location filename="../ViewManager/ViewManager.py" line="1214"/>
         <source>&lt;b&gt;Stream Comment&lt;/b&gt;&lt;p&gt;Stream comments the current line or the current selection.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1224"/>
+        <location filename="../ViewManager/ViewManager.py" line="1223"/>
         <source>Box Comment</source>
         <translation>Kutu Yorumlayıcı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1229"/>
+        <location filename="../ViewManager/ViewManager.py" line="1228"/>
         <source>Box Comment Line or Selection</source>
         <translation>Kutu yorumlayıcı Satırı yada Seçimi</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1231"/>
+        <location filename="../ViewManager/ViewManager.py" line="1230"/>
         <source>&lt;b&gt;Box Comment&lt;/b&gt;&lt;p&gt;Box comments the current line or the lines of the current selection.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1240"/>
+        <location filename="../ViewManager/ViewManager.py" line="1239"/>
         <source>Select to brace</source>
         <translation>Köşeli ayracı seç</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1240"/>
+        <location filename="../ViewManager/ViewManager.py" line="1239"/>
         <source>Select to &amp;brace</source>
         <translation>Köşeli ayracı &amp;seç</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1240"/>
+        <location filename="../ViewManager/ViewManager.py" line="1239"/>
         <source>Ctrl+E</source>
         <comment>Edit|Select to brace</comment>
         <translation>Ctrl+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1247"/>
+        <location filename="../ViewManager/ViewManager.py" line="1246"/>
         <source>Select text to the matching brace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1249"/>
+        <location filename="../ViewManager/ViewManager.py" line="1248"/>
         <source>&lt;b&gt;Select to brace&lt;/b&gt;&lt;p&gt;Select text of the current editor to the matching brace.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1258"/>
+        <location filename="../ViewManager/ViewManager.py" line="1257"/>
         <source>Select all</source>
         <translation>Hepsini seç</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1258"/>
+        <location filename="../ViewManager/ViewManager.py" line="1257"/>
         <source>&amp;Select all</source>
         <translation>Hep&amp;sini seç</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1258"/>
+        <location filename="../ViewManager/ViewManager.py" line="1257"/>
         <source>Ctrl+A</source>
         <comment>Edit|Select all</comment>
         <translation>Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1266"/>
+        <location filename="../ViewManager/ViewManager.py" line="1265"/>
         <source>Select all text</source>
         <translation>Tüm metni seç</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1268"/>
+        <location filename="../ViewManager/ViewManager.py" line="1267"/>
         <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Select all text of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1275"/>
         <source>Deselect all</source>
         <translation>Tüm seçimi iptal et</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1275"/>
         <source>&amp;Deselect all</source>
         <translation>&amp;Tüm seçimi iptal et</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1275"/>
         <source>Alt+Ctrl+A</source>
         <comment>Edit|Deselect all</comment>
         <translation>Alt+Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1283"/>
+        <location filename="../ViewManager/ViewManager.py" line="1282"/>
         <source>Deselect all text</source>
         <translation>Seçilen tüm metni iptal et</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1285"/>
+        <location filename="../ViewManager/ViewManager.py" line="1284"/>
         <source>&lt;b&gt;Deselect All&lt;/b&gt;&lt;p&gt;Deselect all text of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1300"/>
+        <location filename="../ViewManager/ViewManager.py" line="1299"/>
         <source>Convert Line End Characters</source>
         <translation>Satırsonu Karakterlerini Dönüştür</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1293"/>
+        <location filename="../ViewManager/ViewManager.py" line="1292"/>
         <source>Convert &amp;Line End Characters</source>
         <translation>Satırsonu Karakter&amp;lerini Dönüştür</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1302"/>
+        <location filename="../ViewManager/ViewManager.py" line="1301"/>
         <source>&lt;b&gt;Convert Line End Characters&lt;/b&gt;&lt;p&gt;Convert the line end characters to the currently set type.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1316"/>
+        <location filename="../ViewManager/ViewManager.py" line="1315"/>
         <source>Shorten empty lines</source>
         <translation>Boş satırları kısalt</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1318"/>
+        <location filename="../ViewManager/ViewManager.py" line="1317"/>
         <source>&lt;b&gt;Shorten empty lines&lt;/b&gt;&lt;p&gt;Shorten lines consisting solely of whitespace characters.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1327"/>
+        <location filename="../ViewManager/ViewManager.py" line="1326"/>
         <source>&amp;Complete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2778"/>
+        <location filename="../ViewManager/ViewManager.py" line="2776"/>
         <source>Complete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1334"/>
+        <location filename="../ViewManager/ViewManager.py" line="1333"/>
         <source>Complete current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1345"/>
+        <location filename="../ViewManager/ViewManager.py" line="1344"/>
         <source>Complete from Document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1355"/>
+        <location filename="../ViewManager/ViewManager.py" line="1354"/>
         <source>Complete current word from Document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1368"/>
+        <location filename="../ViewManager/ViewManager.py" line="1367"/>
         <source>Complete from APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1378"/>
+        <location filename="../ViewManager/ViewManager.py" line="1377"/>
         <source>Complete current word from APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1391"/>
+        <location filename="../ViewManager/ViewManager.py" line="1390"/>
         <source>Complete from Document and APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1401"/>
+        <location filename="../ViewManager/ViewManager.py" line="1400"/>
         <source>Complete current word from Document and APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1414"/>
+        <location filename="../ViewManager/ViewManager.py" line="1413"/>
         <source>Calltip</source>
         <translation>İpucu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1414"/>
+        <location filename="../ViewManager/ViewManager.py" line="1413"/>
         <source>&amp;Calltip</source>
         <translation>İpu&amp;cu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1414"/>
+        <location filename="../ViewManager/ViewManager.py" line="1413"/>
         <source>Meta+Alt+Space</source>
         <comment>Edit|Calltip</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1421"/>
+        <location filename="../ViewManager/ViewManager.py" line="1420"/>
         <source>Show Calltips</source>
         <translation>İpuçlarını Göster</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1423"/>
+        <location filename="../ViewManager/ViewManager.py" line="1422"/>
         <source>&lt;b&gt;Calltip&lt;/b&gt;&lt;p&gt;Show calltips based on the characters immediately to the left of the cursor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1481"/>
+        <location filename="../ViewManager/ViewManager.py" line="1480"/>
         <source>Move left one character</source>
         <translation>Bir karakter sola taşı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1481"/>
+        <location filename="../ViewManager/ViewManager.py" line="1480"/>
         <source>Left</source>
         <translation>Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1495"/>
+        <location filename="../ViewManager/ViewManager.py" line="1494"/>
         <source>Move right one character</source>
         <translation>Bir karakter sağa taşı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1495"/>
+        <location filename="../ViewManager/ViewManager.py" line="1494"/>
         <source>Right</source>
         <translation>Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1509"/>
+        <location filename="../ViewManager/ViewManager.py" line="1508"/>
         <source>Move up one line</source>
         <translation>Bir satır üste taşı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1509"/>
+        <location filename="../ViewManager/ViewManager.py" line="1508"/>
         <source>Up</source>
         <translation>Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1521"/>
+        <location filename="../ViewManager/ViewManager.py" line="1520"/>
         <source>Move down one line</source>
         <translation>Bir satır aşağı taşı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1521"/>
+        <location filename="../ViewManager/ViewManager.py" line="1520"/>
         <source>Down</source>
         <translation>Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1533"/>
+        <location filename="../ViewManager/ViewManager.py" line="1532"/>
         <source>Move left one word part</source>
         <translation>Bir kelime parçası sola taşı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1567"/>
+        <location filename="../ViewManager/ViewManager.py" line="1566"/>
         <source>Alt+Left</source>
         <translation>Alt+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1547"/>
+        <location filename="../ViewManager/ViewManager.py" line="1546"/>
         <source>Move right one word part</source>
         <translation>bir kelime parçası sağa taşı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2448"/>
+        <location filename="../ViewManager/ViewManager.py" line="2446"/>
         <source>Alt+Right</source>
         <translation>Alt+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1561"/>
+        <location filename="../ViewManager/ViewManager.py" line="1560"/>
         <source>Move left one word</source>
         <translation>Bir kelime sola taşı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1612"/>
+        <location filename="../ViewManager/ViewManager.py" line="1611"/>
         <source>Ctrl+Left</source>
         <translation>Ctrl+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1576"/>
+        <location filename="../ViewManager/ViewManager.py" line="1575"/>
         <source>Move right one word</source>
         <translation>Bir kelime sağa taşı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2202"/>
+        <location filename="../ViewManager/ViewManager.py" line="2200"/>
         <source>Ctrl+Right</source>
         <translation>Ctrl+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2403"/>
+        <location filename="../ViewManager/ViewManager.py" line="2401"/>
         <source>Home</source>
         <translation>Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1615"/>
+        <location filename="../ViewManager/ViewManager.py" line="1614"/>
         <source>Alt+Home</source>
         <translation>Alt+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2418"/>
+        <location filename="../ViewManager/ViewManager.py" line="2416"/>
         <source>End</source>
         <translation>End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1638"/>
+        <location filename="../ViewManager/ViewManager.py" line="1637"/>
         <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="1728"/>
+        <location filename="../ViewManager/ViewManager.py" line="1727"/>
         <source>Ctrl+Down</source>
         <translation>Ctrl+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1650"/>
+        <location filename="../ViewManager/ViewManager.py" line="1649"/>
         <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="1711"/>
+        <location filename="../ViewManager/ViewManager.py" line="1710"/>
         <source>Ctrl+Up</source>
         <translation>Ctrl+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1661"/>
+        <location filename="../ViewManager/ViewManager.py" line="1660"/>
         <source>Move up one paragraph</source>
         <translation>Bir paragraf yukarı taşı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1661"/>
+        <location filename="../ViewManager/ViewManager.py" line="1660"/>
         <source>Alt+Up</source>
         <translation>Alt+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1670"/>
+        <location filename="../ViewManager/ViewManager.py" line="1669"/>
         <source>Move down one paragraph</source>
         <translation>Bir paragraf aşağı taşı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1670"/>
+        <location filename="../ViewManager/ViewManager.py" line="1669"/>
         <source>Alt+Down</source>
         <translation>Alt+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1682"/>
+        <location filename="../ViewManager/ViewManager.py" line="1681"/>
         <source>Move up one page</source>
         <translation>Bir sayfa yukarı taşı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1682"/>
+        <location filename="../ViewManager/ViewManager.py" line="1681"/>
         <source>PgUp</source>
         <translation>PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1691"/>
+        <location filename="../ViewManager/ViewManager.py" line="1690"/>
         <source>Move down one page</source>
         <translation>Bir sayfa aşağı taşı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1691"/>
+        <location filename="../ViewManager/ViewManager.py" line="1690"/>
         <source>PgDown</source>
         <translation>PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1714"/>
+        <location filename="../ViewManager/ViewManager.py" line="1713"/>
         <source>Ctrl+Home</source>
         <translation>Ctrl+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1731"/>
+        <location filename="../ViewManager/ViewManager.py" line="1730"/>
         <source>Ctrl+End</source>
         <translation>Ctrl+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1737"/>
+        <location filename="../ViewManager/ViewManager.py" line="1736"/>
         <source>Indent one level</source>
         <translation>Bir seviye içeri girinti</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1737"/>
+        <location filename="../ViewManager/ViewManager.py" line="1736"/>
         <source>Tab</source>
         <translation>Tab</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1746"/>
+        <location filename="../ViewManager/ViewManager.py" line="1745"/>
         <source>Unindent one level</source>
         <translation>Girintisiz birinci seviye</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1746"/>
+        <location filename="../ViewManager/ViewManager.py" line="1745"/>
         <source>Shift+Tab</source>
         <translation>Shift+Tab</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1756"/>
+        <location filename="../ViewManager/ViewManager.py" line="1755"/>
         <source>Extend selection left one character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1756"/>
+        <location filename="../ViewManager/ViewManager.py" line="1755"/>
         <source>Shift+Left</source>
         <translation>Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1771"/>
+        <location filename="../ViewManager/ViewManager.py" line="1770"/>
         <source>Extend selection right one character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1771"/>
+        <location filename="../ViewManager/ViewManager.py" line="1770"/>
         <source>Shift+Right</source>
         <translation>Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1786"/>
+        <location filename="../ViewManager/ViewManager.py" line="1785"/>
         <source>Extend selection up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1786"/>
+        <location filename="../ViewManager/ViewManager.py" line="1785"/>
         <source>Shift+Up</source>
         <translation>Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1801"/>
+        <location filename="../ViewManager/ViewManager.py" line="1800"/>
         <source>Extend selection down one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1801"/>
+        <location filename="../ViewManager/ViewManager.py" line="1800"/>
         <source>Shift+Down</source>
         <translation>Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1816"/>
+        <location filename="../ViewManager/ViewManager.py" line="1815"/>
         <source>Extend selection left one word part</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1852"/>
+        <location filename="../ViewManager/ViewManager.py" line="1851"/>
         <source>Alt+Shift+Left</source>
         <translation>Alt+Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1830"/>
+        <location filename="../ViewManager/ViewManager.py" line="1829"/>
         <source>Extend selection right one word part</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2463"/>
+        <location filename="../ViewManager/ViewManager.py" line="2461"/>
         <source>Alt+Shift+Right</source>
         <translation>Alt+Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1844"/>
+        <location filename="../ViewManager/ViewManager.py" line="1843"/>
         <source>Extend selection left one word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2557"/>
+        <location filename="../ViewManager/ViewManager.py" line="2555"/>
         <source>Ctrl+Shift+Left</source>
         <translation>Ctrl+Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1861"/>
+        <location filename="../ViewManager/ViewManager.py" line="1860"/>
         <source>Extend selection right one word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2219"/>
+        <location filename="../ViewManager/ViewManager.py" line="2217"/>
         <source>Ctrl+Shift+Right</source>
         <translation>Ctrl+Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1890"/>
+        <location filename="../ViewManager/ViewManager.py" line="1889"/>
         <source>Shift+Home</source>
         <translation>Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2323"/>
+        <location filename="../ViewManager/ViewManager.py" line="2321"/>
         <source>Alt+Shift+Home</source>
         <translation>Alt+Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1907"/>
+        <location filename="../ViewManager/ViewManager.py" line="1906"/>
         <source>Shift+End</source>
         <translation>Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1913"/>
+        <location filename="../ViewManager/ViewManager.py" line="1912"/>
         <source>Extend selection up one paragraph</source>
         <translation>Seçimi bir paragraf yukarı genişlet</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1913"/>
+        <location filename="../ViewManager/ViewManager.py" line="1912"/>
         <source>Alt+Shift+Up</source>
         <translation>Alt+Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1926"/>
+        <location filename="../ViewManager/ViewManager.py" line="1925"/>
         <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="1926"/>
+        <location filename="../ViewManager/ViewManager.py" line="1925"/>
         <source>Alt+Shift+Down</source>
         <translation>Alt+Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1939"/>
+        <location filename="../ViewManager/ViewManager.py" line="1938"/>
         <source>Extend selection up one page</source>
         <translation>Seçimi bir sayfa yukarı genişlet</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1939"/>
+        <location filename="../ViewManager/ViewManager.py" line="1938"/>
         <source>Shift+PgUp</source>
         <translation>Shift+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1951"/>
+        <location filename="../ViewManager/ViewManager.py" line="1950"/>
         <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="1951"/>
+        <location filename="../ViewManager/ViewManager.py" line="1950"/>
         <source>Shift+PgDown</source>
         <translation>Shift+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1978"/>
+        <location filename="../ViewManager/ViewManager.py" line="1977"/>
         <source>Ctrl+Shift+Home</source>
         <translation>Ctrl+Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1995"/>
+        <location filename="../ViewManager/ViewManager.py" line="1994"/>
         <source>Ctrl+Shift+End</source>
         <translation>Ctrl+Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2001"/>
+        <location filename="../ViewManager/ViewManager.py" line="2000"/>
         <source>Delete previous character</source>
         <translation>Önceki karakteri sil</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2001"/>
+        <location filename="../ViewManager/ViewManager.py" line="2000"/>
         <source>Backspace</source>
         <translation>Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2013"/>
+        <location filename="../ViewManager/ViewManager.py" line="2012"/>
         <source>Shift+Backspace</source>
         <translation>Shift+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2032"/>
+        <location filename="../ViewManager/ViewManager.py" line="2031"/>
         <source>Delete current character</source>
         <translation>Gçerli karakteri siler</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2032"/>
+        <location filename="../ViewManager/ViewManager.py" line="2031"/>
         <source>Del</source>
         <translation>Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2046"/>
+        <location filename="../ViewManager/ViewManager.py" line="2045"/>
         <source>Delete word to left</source>
         <translation>Kelimeyi sola doğru sil</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2046"/>
+        <location filename="../ViewManager/ViewManager.py" line="2045"/>
         <source>Ctrl+Backspace</source>
         <translation>Ctrl+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2057"/>
+        <location filename="../ViewManager/ViewManager.py" line="2056"/>
         <source>Delete word to right</source>
         <translation>Kelimeyi sağa doğru sil</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2057"/>
+        <location filename="../ViewManager/ViewManager.py" line="2056"/>
         <source>Ctrl+Del</source>
         <translation>Ctrl+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2067"/>
+        <location filename="../ViewManager/ViewManager.py" line="2066"/>
         <source>Delete line to left</source>
         <translation>Satırı solbaşa kadar sil</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2067"/>
+        <location filename="../ViewManager/ViewManager.py" line="2066"/>
         <source>Ctrl+Shift+Backspace</source>
         <translation>Ctrl+Shift+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2078"/>
+        <location filename="../ViewManager/ViewManager.py" line="2077"/>
         <source>Delete line to right</source>
         <translation>Satırı sağbaşa kadar sil</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2087"/>
+        <location filename="../ViewManager/ViewManager.py" line="2086"/>
         <source>Ctrl+Shift+Del</source>
         <translation>Ctrl+Shift+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2093"/>
+        <location filename="../ViewManager/ViewManager.py" line="2092"/>
         <source>Insert new line</source>
         <translation>Araya yeni satır sok</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2093"/>
+        <location filename="../ViewManager/ViewManager.py" line="2092"/>
         <source>Return</source>
         <translation>Return</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2093"/>
+        <location filename="../ViewManager/ViewManager.py" line="2092"/>
         <source>Enter</source>
         <translation>Enter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2103"/>
+        <location filename="../ViewManager/ViewManager.py" line="2102"/>
         <source>Insert new line below current line</source>
         <translation>Geçerli satırın altına yeni satır ekle</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2103"/>
+        <location filename="../ViewManager/ViewManager.py" line="2102"/>
         <source>Shift+Return</source>
         <translation>Shift+Return</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2103"/>
+        <location filename="../ViewManager/ViewManager.py" line="2102"/>
         <source>Shift+Enter</source>
         <translation>Shift+Enter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2116"/>
+        <location filename="../ViewManager/ViewManager.py" line="2115"/>
         <source>Delete current line</source>
         <translation>Geçerli satırı sil</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2116"/>
+        <location filename="../ViewManager/ViewManager.py" line="2115"/>
         <source>Ctrl+Shift+L</source>
         <translation>Ctrl+Shift+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2127"/>
+        <location filename="../ViewManager/ViewManager.py" line="2126"/>
         <source>Duplicate current line</source>
         <translation>Geçerli satırı çiftle</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2127"/>
+        <location filename="../ViewManager/ViewManager.py" line="2126"/>
         <source>Ctrl+D</source>
         <translation>Ctrl+D</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2138"/>
+        <location filename="../ViewManager/ViewManager.py" line="2137"/>
         <source>Swap current and previous lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2138"/>
+        <location filename="../ViewManager/ViewManager.py" line="2137"/>
         <source>Ctrl+T</source>
         <translation>Ctrl+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2162"/>
+        <location filename="../ViewManager/ViewManager.py" line="2160"/>
         <source>Cut current line</source>
         <translation>Geçerli satırı kes</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2162"/>
+        <location filename="../ViewManager/ViewManager.py" line="2160"/>
         <source>Alt+Shift+L</source>
         <translation>Alt+Shift+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2172"/>
+        <location filename="../ViewManager/ViewManager.py" line="2170"/>
         <source>Copy current line</source>
         <translation>Geçerli satırı kopyala</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2172"/>
+        <location filename="../ViewManager/ViewManager.py" line="2170"/>
         <source>Ctrl+Shift+T</source>
         <translation>Ctrl+Shift+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2183"/>
+        <location filename="../ViewManager/ViewManager.py" line="2181"/>
         <source>Toggle insert/overtype</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2183"/>
+        <location filename="../ViewManager/ViewManager.py" line="2181"/>
         <source>Ins</source>
         <translation>Ins</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2747"/>
+        <location filename="../ViewManager/ViewManager.py" line="2745"/>
         <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="2747"/>
+        <location filename="../ViewManager/ViewManager.py" line="2745"/>
         <source>Alt+Shift+U</source>
         <translation>Alt+Shift+U</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2759"/>
+        <location filename="../ViewManager/ViewManager.py" line="2757"/>
         <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="2759"/>
+        <location filename="../ViewManager/ViewManager.py" line="2757"/>
         <source>Ctrl+Shift+U</source>
         <translation>Ctrl+Shift+U</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2205"/>
+        <location filename="../ViewManager/ViewManager.py" line="2203"/>
         <source>Alt+End</source>
         <translation>Alt+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2225"/>
+        <location filename="../ViewManager/ViewManager.py" line="2223"/>
         <source>Formfeed</source>
         <translation>Süreklibaskı kağıdı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2234"/>
+        <location filename="../ViewManager/ViewManager.py" line="2232"/>
         <source>Escape</source>
         <translation>Kaçış</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2234"/>
+        <location filename="../ViewManager/ViewManager.py" line="2232"/>
         <source>Esc</source>
         <translation>Esc</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2243"/>
+        <location filename="../ViewManager/ViewManager.py" line="2241"/>
         <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="2243"/>
+        <location filename="../ViewManager/ViewManager.py" line="2241"/>
         <source>Alt+Ctrl+Down</source>
         <translation>Alt+Ctrl+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2259"/>
+        <location filename="../ViewManager/ViewManager.py" line="2257"/>
         <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="2259"/>
+        <location filename="../ViewManager/ViewManager.py" line="2257"/>
         <source>Alt+Ctrl+Up</source>
         <translation>Alt+Ctrl+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2274"/>
+        <location filename="../ViewManager/ViewManager.py" line="2272"/>
         <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="2274"/>
+        <location filename="../ViewManager/ViewManager.py" line="2272"/>
         <source>Alt+Ctrl+Left</source>
         <translation>Alt+Ctrl+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2292"/>
+        <location filename="../ViewManager/ViewManager.py" line="2290"/>
         <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="2292"/>
+        <location filename="../ViewManager/ViewManager.py" line="2290"/>
         <source>Alt+Ctrl+Right</source>
         <translation>Alt+Ctrl+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2348"/>
+        <location filename="../ViewManager/ViewManager.py" line="2346"/>
         <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="2363"/>
+        <location filename="../ViewManager/ViewManager.py" line="2361"/>
         <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="2381"/>
+        <location filename="../ViewManager/ViewManager.py" line="2379"/>
         <source>Duplicate current selection</source>
         <translation>Geçerli seçimi çoğalt</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2381"/>
+        <location filename="../ViewManager/ViewManager.py" line="2379"/>
         <source>Ctrl+Shift+D</source>
         <translation>Ctrl+Shift+D</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3354"/>
+        <location filename="../ViewManager/ViewManager.py" line="3352"/>
         <source>&amp;Search</source>
         <translation>A&amp;ra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2788"/>
+        <location filename="../ViewManager/ViewManager.py" line="2786"/>
         <source>&amp;Edit</source>
         <translation>Düz&amp;en</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2845"/>
+        <location filename="../ViewManager/ViewManager.py" line="2843"/>
         <source>Edit</source>
         <translation>Düzen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3449"/>
+        <location filename="../ViewManager/ViewManager.py" line="3447"/>
         <source>Search</source>
         <translation>Ara</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2877"/>
+        <location filename="../ViewManager/ViewManager.py" line="2875"/>
         <source>&amp;Search...</source>
         <translation>A&amp;ra...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2877"/>
+        <location filename="../ViewManager/ViewManager.py" line="2875"/>
         <source>Ctrl+F</source>
         <comment>Search|Search</comment>
         <translation>Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2885"/>
+        <location filename="../ViewManager/ViewManager.py" line="2883"/>
         <source>Search for a text</source>
         <translation>Metin olarak ara</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2887"/>
+        <location filename="../ViewManager/ViewManager.py" line="2885"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2897"/>
+        <location filename="../ViewManager/ViewManager.py" line="2895"/>
         <source>Search next</source>
         <translation>Sonrakini ara</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2897"/>
+        <location filename="../ViewManager/ViewManager.py" line="2895"/>
         <source>Search &amp;next</source>
         <translation>So&amp;nrakini ara</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2897"/>
+        <location filename="../ViewManager/ViewManager.py" line="2895"/>
         <source>F3</source>
         <comment>Search|Search next</comment>
         <translation>F3</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2906"/>
+        <location filename="../ViewManager/ViewManager.py" line="2904"/>
         <source>Search next occurrence of text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2908"/>
+        <location filename="../ViewManager/ViewManager.py" line="2906"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2918"/>
+        <location filename="../ViewManager/ViewManager.py" line="2916"/>
         <source>Search previous</source>
         <translation>Öncekini ara</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2918"/>
+        <location filename="../ViewManager/ViewManager.py" line="2916"/>
         <source>Search &amp;previous</source>
         <translation>Öncekini a&amp;ra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2918"/>
+        <location filename="../ViewManager/ViewManager.py" line="2916"/>
         <source>Shift+F3</source>
         <comment>Search|Search previous</comment>
         <translation>Shift+F3</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="2924"/>
+        <source>Search previous occurrence of text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="2926"/>
-        <source>Search previous occurrence of text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2928"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2938"/>
+        <location filename="../ViewManager/ViewManager.py" line="2936"/>
         <source>Clear search markers</source>
         <translation>Arama işaretlerini temizle</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2938"/>
+        <location filename="../ViewManager/ViewManager.py" line="2936"/>
         <source>Ctrl+3</source>
         <comment>Search|Clear search markers</comment>
         <translation>Ctrl+3</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="2944"/>
+        <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="2946"/>
-        <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="2948"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3003"/>
+        <location filename="../ViewManager/ViewManager.py" line="3001"/>
         <source>Replace</source>
         <translation>Yerdeğiştir</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3003"/>
+        <location filename="../ViewManager/ViewManager.py" line="3001"/>
         <source>&amp;Replace...</source>
         <translation>&amp;Yerdeğiştir...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3003"/>
+        <location filename="../ViewManager/ViewManager.py" line="3001"/>
         <source>Ctrl+R</source>
         <comment>Search|Replace</comment>
         <translation>Ctrl+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3010"/>
+        <location filename="../ViewManager/ViewManager.py" line="3008"/>
         <source>Replace some text</source>
         <translation>Bazı metinleri değiştir</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3012"/>
+        <location filename="../ViewManager/ViewManager.py" line="3010"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3389"/>
+        <location filename="../ViewManager/ViewManager.py" line="3387"/>
         <source>Quicksearch</source>
         <translation>Hızlı arama</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3090"/>
+        <location filename="../ViewManager/ViewManager.py" line="3088"/>
         <source>&amp;Quicksearch</source>
         <translation>&amp;Hızlı arama</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3090"/>
+        <location filename="../ViewManager/ViewManager.py" line="3088"/>
         <source>Ctrl+Shift+K</source>
         <comment>Search|Quicksearch</comment>
         <translation>Ctrl+Shift+K</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3096"/>
+        <source>Perform a quicksearch</source>
+        <translation>Hızlı arama gerçekleştir</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3098"/>
-        <source>Perform a quicksearch</source>
-        <translation>Hızlı arama gerçekleştir</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3100"/>
         <source>&lt;b&gt;Quicksearch&lt;/b&gt;&lt;p&gt;This activates the quicksearch function of the IDE by giving focus to the quicksearch entry field. If this field is already active and contains text, it searches for the next occurrence of this text.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3111"/>
+        <location filename="../ViewManager/ViewManager.py" line="3109"/>
         <source>Quicksearch backwards</source>
         <translation>Geriye doğru hızlı arama</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3111"/>
+        <location filename="../ViewManager/ViewManager.py" line="3109"/>
         <source>Quicksearch &amp;backwards</source>
         <translation>Geriye &amp;doğru hızlı arama</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3111"/>
+        <location filename="../ViewManager/ViewManager.py" line="3109"/>
         <source>Ctrl+Shift+J</source>
         <comment>Search|Quicksearch backwards</comment>
         <translation>Ctrl+Shift+J</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3121"/>
+        <location filename="../ViewManager/ViewManager.py" line="3119"/>
         <source>Perform a quicksearch backwards</source>
         <translation>Geriye doğru hızlı arama gerçekleştir</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3124"/>
+        <location filename="../ViewManager/ViewManager.py" line="3122"/>
         <source>&lt;b&gt;Quicksearch backwards&lt;/b&gt;&lt;p&gt;This searches the previous occurrence of the quicksearch text.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3133"/>
+        <location filename="../ViewManager/ViewManager.py" line="3131"/>
         <source>Quicksearch extend</source>
         <translation>Gelişmiş hızlıarama</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3133"/>
+        <location filename="../ViewManager/ViewManager.py" line="3131"/>
         <source>Quicksearch e&amp;xtend</source>
         <translation>Gelişmi&amp;ş hızlıarama</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3133"/>
+        <location filename="../ViewManager/ViewManager.py" line="3131"/>
         <source>Ctrl+Shift+H</source>
         <comment>Search|Quicksearch extend</comment>
         <translation>Ctrl+Shift+H</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3141"/>
+        <location filename="../ViewManager/ViewManager.py" line="3139"/>
         <source>Extend the quicksearch to the end of the current word</source>
         <translation>Hızlıaramayı geçerli kelimenin sonuna genişlet</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3144"/>
+        <location filename="../ViewManager/ViewManager.py" line="3142"/>
         <source>&lt;b&gt;Quicksearch extend&lt;/b&gt;&lt;p&gt;This extends the quicksearch text to the end of the word currently found.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3160"/>
+        <source>Goto Line</source>
+        <translation>Satıra Git</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3152"/>
+        <source>&amp;Goto Line...</source>
+        <translation>Satıra &amp;Git...</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3152"/>
+        <source>Ctrl+G</source>
+        <comment>Search|Goto Line</comment>
+        <translation>Ctrl+G</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3162"/>
-        <source>Goto Line</source>
-        <translation>Satıra Git</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3154"/>
-        <source>&amp;Goto Line...</source>
-        <translation>Satıra &amp;Git...</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3154"/>
-        <source>Ctrl+G</source>
-        <comment>Search|Goto Line</comment>
-        <translation>Ctrl+G</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3164"/>
         <source>&lt;b&gt;Goto Line&lt;/b&gt;&lt;p&gt;Go to a specific line of text in the current editor. A dialog is shown to enter the linenumber.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Satıra Git&lt;/b&gt;&lt;p&gt;Geçerli düzenleyicide metnin seçilen bir satırına gitr. Bir diyalog seçilebilecek satır numaralarını gösterir.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3181"/>
+        <location filename="../ViewManager/ViewManager.py" line="3179"/>
         <source>Goto Brace</source>
         <translation>Köşeli Ayraça Git</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3173"/>
+        <location filename="../ViewManager/ViewManager.py" line="3171"/>
         <source>Goto &amp;Brace</source>
         <translation>Köşeli &amp;Ayraça Git</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3173"/>
+        <location filename="../ViewManager/ViewManager.py" line="3171"/>
         <source>Ctrl+L</source>
         <comment>Search|Goto Brace</comment>
         <translation>Ctrl+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3183"/>
+        <location filename="../ViewManager/ViewManager.py" line="3181"/>
         <source>&lt;b&gt;Goto Brace&lt;/b&gt;&lt;p&gt;Go to the matching brace in the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3261"/>
+        <location filename="../ViewManager/ViewManager.py" line="3259"/>
         <source>Search in Files</source>
         <translation>Dosyalarda Ara</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3261"/>
+        <location filename="../ViewManager/ViewManager.py" line="3259"/>
         <source>Search in &amp;Files...</source>
         <translation>Dosyalar&amp;da Ara...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3261"/>
+        <location filename="../ViewManager/ViewManager.py" line="3259"/>
         <source>Shift+Ctrl+F</source>
         <comment>Search|Search Files</comment>
         <translation>Shift+Ctrl+F</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3267"/>
+        <source>Search for a text in files</source>
+        <translation>Metni dosyada ara</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3269"/>
-        <source>Search for a text in files</source>
-        <translation>Metni dosyada ara</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3271"/>
         <source>&lt;b&gt;Search in Files&lt;/b&gt;&lt;p&gt;Search for some text in the files of a directory tree or the project. A dialog is shown to enter the searchtext and options for the search and to display the result.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3281"/>
+        <location filename="../ViewManager/ViewManager.py" line="3279"/>
         <source>Replace in Files</source>
         <translation>Dosyalarda yer değiştir</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3281"/>
+        <location filename="../ViewManager/ViewManager.py" line="3279"/>
         <source>Replace in F&amp;iles...</source>
         <translation>Dosya İ&amp;çinde Değiştir...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3281"/>
+        <location filename="../ViewManager/ViewManager.py" line="3279"/>
         <source>Shift+Ctrl+R</source>
         <comment>Search|Replace in Files</comment>
         <translation>Shift+Ctrl+R</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3286"/>
+        <source>Search for a text in files and replace it</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3288"/>
-        <source>Search for a text in files and replace it</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3290"/>
         <source>&lt;b&gt;Replace in Files&lt;/b&gt;&lt;p&gt;Search for some text in the files of a directory tree or the project and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and to display the result.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3408"/>
+        <location filename="../ViewManager/ViewManager.py" line="3406"/>
         <source>&lt;p&gt;Enter the searchtext directly into this field. The search will be performed case insensitive. The quicksearch function is activated upon activation of the quicksearch next action (default key Ctrl+Shift+K), if this entry field does not have the input focus. Otherwise it searches for the next occurrence of the text entered. The quicksearch backwards action (default key Ctrl+Shift+J) searches backward. Activating the &apos;quicksearch extend&apos; action (default key Ctrl+Shift+H) extends the current searchtext to the end of the currently found word. The quicksearch can be ended by pressing the Return key while the quicksearch entry has the the input focus.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3435"/>
+        <location filename="../ViewManager/ViewManager.py" line="3433"/>
         <source>Quicksearch Textedit</source>
         <translation>Metindüzenleyicide Hızlı Arama</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3487"/>
         <source>Zoom in</source>
         <translation>Büyüt</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3487"/>
         <source>Zoom &amp;in</source>
         <translation>Bü&amp;yült</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3487"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation>Ctrl++</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3498"/>
+        <location filename="../ViewManager/ViewManager.py" line="3496"/>
         <source>Zoom in on the text</source>
         <translation>MEtni Büyüt</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3500"/>
+        <location filename="../ViewManager/ViewManager.py" line="3498"/>
         <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="3508"/>
+        <location filename="../ViewManager/ViewManager.py" line="3506"/>
         <source>Zoom out</source>
         <translation>Küçült</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3508"/>
+        <location filename="../ViewManager/ViewManager.py" line="3506"/>
         <source>Zoom &amp;out</source>
         <translation>Küçü&amp;lt</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3508"/>
+        <location filename="../ViewManager/ViewManager.py" line="3506"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation>Ctrl+-</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3515"/>
+        <source>Zoom out on the text</source>
+        <translation>Metin üzerinde küçült</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3517"/>
-        <source>Zoom out on the text</source>
-        <translation>Metin üzerinde küçült</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3519"/>
         <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="3546"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>Zoom</source>
         <translation>Büyüt</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3546"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>&amp;Zoom</source>
         <translation>Büyü&amp;t</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3546"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>Ctrl+#</source>
         <comment>View|Zoom</comment>
         <translation>Ctrl+#</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3554"/>
+        <location filename="../ViewManager/ViewManager.py" line="3552"/>
         <source>Zoom the text</source>
         <translation>Metni büyüt</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3556"/>
+        <location filename="../ViewManager/ViewManager.py" line="3554"/>
         <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"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3567"/>
+        <source>Toggle all folds</source>
+        <translation>Tüm Açkapaları Kapat</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3563"/>
+        <source>&amp;Toggle all folds</source>
+        <translation type="unfinished">Tüm açk&amp;apaları kapat</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3569"/>
-        <source>Toggle all folds</source>
-        <translation>Tüm Açkapaları Kapat</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3565"/>
-        <source>&amp;Toggle all folds</source>
-        <translation type="unfinished">Tüm açk&amp;apaları kapat</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3571"/>
         <source>&lt;b&gt;Toggle all folds&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Tüm Açkapalar&lt;/b&gt;&lt;p&gt;Geçerli düzenleyicideki tüm açkapaları diğer duruma alırr.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3583"/>
+        <source>Toggle all folds (including children)</source>
+        <translation>Tüm açkapalar (iç içe olanlar dahil)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3577"/>
+        <source>Toggle all &amp;folds (including children)</source>
+        <translation>Tüm a&amp;çkapalar (iç içe olanlar dahil)</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3585"/>
-        <source>Toggle all folds (including children)</source>
-        <translation>Tüm açkapalar (iç içe olanlar dahil)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3579"/>
-        <source>Toggle all &amp;folds (including children)</source>
-        <translation>Tüm a&amp;çkapalar (iç içe olanlar dahil)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3587"/>
         <source>&lt;b&gt;Toggle all folds (including children)&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor including all children.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Tüm açkapalar (içiçe olanlar dahil)&lt;/b&gt;&lt;p&gt;Tüm açkapaları iç içe olanlar da dahil diğer duruma al.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3599"/>
+        <source>Toggle current fold</source>
+        <translation>Geçerli açkapayı kapat</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3595"/>
+        <source>Toggle &amp;current fold</source>
+        <translation>Geçerli a&amp;çkapayı kapat</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3601"/>
-        <source>Toggle current fold</source>
-        <translation>Geçerli açkapayı kapat</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3597"/>
-        <source>Toggle &amp;current fold</source>
-        <translation>Geçerli a&amp;çkapayı kapat</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3603"/>
         <source>&lt;b&gt;Toggle current fold&lt;/b&gt;&lt;p&gt;Toggle the folds of the current line of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3631"/>
+        <source>Remove all highlights</source>
+        <translation>Bütün parlatılmış alanları kaldır</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3633"/>
-        <source>Remove all highlights</source>
-        <translation>Bütün parlatılmış alanları kaldır</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3635"/>
         <source>&lt;b&gt;Remove all highlights&lt;/b&gt;&lt;p&gt;Remove the highlights of all editors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3681"/>
+        <location filename="../ViewManager/ViewManager.py" line="3679"/>
         <source>Split view</source>
         <translation>Bölünmüş görünüm</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3681"/>
+        <location filename="../ViewManager/ViewManager.py" line="3679"/>
         <source>&amp;Split view</source>
         <translation>Bölünmü&amp;ş görünüm</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3684"/>
+        <source>Add a split to the view</source>
+        <translation>Görünüme yeni bir ayrım ekle</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3686"/>
-        <source>Add a split to the view</source>
-        <translation>Görünüme yeni bir ayrım ekle</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3688"/>
         <source>&lt;b&gt;Split view&lt;/b&gt;&lt;p&gt;Add a split to the view.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3696"/>
+        <location filename="../ViewManager/ViewManager.py" line="3694"/>
         <source>Arrange horizontally</source>
         <translation>Yatay düzenleme</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3696"/>
+        <location filename="../ViewManager/ViewManager.py" line="3694"/>
         <source>Arrange &amp;horizontally</source>
         <translation>Yatay &amp;düzenleme</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3698"/>
+        <source>Arrange the splitted views horizontally</source>
+        <translation>Bölünmüş görünümleri yatay olarak düzenle</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3700"/>
-        <source>Arrange the splitted views horizontally</source>
-        <translation>Bölünmüş görünümleri yatay olarak düzenle</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3702"/>
         <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Yatay ayarlama&lt;/b&gt;&lt;p&gt;Bölünmüş görünümler yatay olarak düzenlenir.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3711"/>
+        <location filename="../ViewManager/ViewManager.py" line="3709"/>
         <source>Remove split</source>
         <translation>Bölümlemeyi kaldır</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3711"/>
+        <location filename="../ViewManager/ViewManager.py" line="3709"/>
         <source>&amp;Remove split</source>
         <translation>Bölümlemeyi kaldı&amp;r</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3714"/>
+        <source>Remove the current split</source>
+        <translation>Geçerli ayrımı kaldır</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3716"/>
-        <source>Remove the current split</source>
-        <translation>Geçerli ayrımı kaldır</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3718"/>
         <source>&lt;b&gt;Remove split&lt;/b&gt;&lt;p&gt;Remove the current split.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3726"/>
+        <location filename="../ViewManager/ViewManager.py" line="3724"/>
         <source>Next split</source>
         <translation>Sonraki ayrım</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3726"/>
+        <location filename="../ViewManager/ViewManager.py" line="3724"/>
         <source>&amp;Next split</source>
         <translation>So&amp;nraki ayrım</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3726"/>
+        <location filename="../ViewManager/ViewManager.py" line="3724"/>
         <source>Ctrl+Alt+N</source>
         <comment>View|Next split</comment>
         <translation>Ctrl+Alt+N</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3731"/>
+        <source>Move to the next split</source>
+        <translation>Sonraki ayrıma taşı</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3733"/>
-        <source>Move to the next split</source>
-        <translation>Sonraki ayrıma taşı</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3735"/>
         <source>&lt;b&gt;Next split&lt;/b&gt;&lt;p&gt;Move to the next split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Sonraki ayrım&lt;/b&gt;&lt;p&gt;Sonraki ayrıma götürür.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3743"/>
+        <location filename="../ViewManager/ViewManager.py" line="3741"/>
         <source>Previous split</source>
         <translation>Önceki ayrım</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3743"/>
+        <location filename="../ViewManager/ViewManager.py" line="3741"/>
         <source>&amp;Previous split</source>
         <translation>Önceki a&amp;yrım</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3743"/>
+        <location filename="../ViewManager/ViewManager.py" line="3741"/>
         <source>Ctrl+Alt+P</source>
         <comment>View|Previous split</comment>
         <translation>Ctrl+Alt+P</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3747"/>
+        <source>Move to the previous split</source>
+        <translation>Önceki ayrıma taşı</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3749"/>
-        <source>Move to the previous split</source>
-        <translation>Önceki ayrıma taşı</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3751"/>
         <source>&lt;b&gt;Previous split&lt;/b&gt;&lt;p&gt;Move to the previous split.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3835"/>
+        <location filename="../ViewManager/ViewManager.py" line="3833"/>
         <source>&amp;View</source>
         <translation>&amp;Görünüm</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3872"/>
+        <location filename="../ViewManager/ViewManager.py" line="3870"/>
         <source>View</source>
         <translation>Görünüm</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3906"/>
+        <source>Start Macro Recording</source>
+        <translation>Makro Kaydı Başladı</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3900"/>
+        <source>S&amp;tart Macro Recording</source>
+        <translation>Makro Kaydını Başla&amp;t</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3908"/>
-        <source>Start Macro Recording</source>
-        <translation>Makro Kaydı Başladı</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3902"/>
-        <source>S&amp;tart Macro Recording</source>
-        <translation>Makro Kaydını Başla&amp;t</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3910"/>
         <source>&lt;b&gt;Start Macro Recording&lt;/b&gt;&lt;p&gt;Start recording editor commands into a new macro.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3920"/>
+        <source>Stop Macro Recording</source>
+        <translation>Makro Kaydetmeyi Durdur</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3916"/>
+        <source>Sto&amp;p Macro Recording</source>
+        <translation>Makro Kaydetmeyi D&amp;urdur</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3922"/>
-        <source>Stop Macro Recording</source>
-        <translation>Makro Kaydetmeyi Durdur</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3918"/>
-        <source>Sto&amp;p Macro Recording</source>
-        <translation>Makro Kaydetmeyi D&amp;urdur</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3924"/>
         <source>&lt;b&gt;Stop Macro Recording&lt;/b&gt;&lt;p&gt;Stop recording editor commands into a new macro.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3934"/>
+        <source>Run Macro</source>
+        <translation>Makroyu çalıştır</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3930"/>
+        <source>&amp;Run Macro</source>
+        <translation>Mak&amp;royu çalıştır</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3936"/>
-        <source>Run Macro</source>
-        <translation>Makroyu çalıştır</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3932"/>
-        <source>&amp;Run Macro</source>
-        <translation>Mak&amp;royu çalıştır</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3938"/>
         <source>&lt;b&gt;Run Macro&lt;/b&gt;&lt;p&gt;Run a previously recorded editor macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Makroyu Çalıştır&lt;/b&gt;&lt;p&gt;Daha önceden kaydedilmiş düzenleyici makrosu.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3948"/>
+        <source>Delete Macro</source>
+        <translation>Makroyu Sil</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3944"/>
+        <source>&amp;Delete Macro</source>
+        <translation>Makroy&amp;u Sil</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3950"/>
-        <source>Delete Macro</source>
-        <translation>Makroyu Sil</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3946"/>
-        <source>&amp;Delete Macro</source>
-        <translation>Makroy&amp;u Sil</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3952"/>
         <source>&lt;b&gt;Delete Macro&lt;/b&gt;&lt;p&gt;Delete a previously recorded editor macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Makroyu Sil&lt;/b&gt;&lt;p&gt;Birönce kaydedilen düzenleyici makrosunu sil.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3962"/>
+        <source>Load Macro</source>
+        <translation>Makroyu Yükle</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3958"/>
+        <source>&amp;Load Macro</source>
+        <translation>Makroyu Yük&amp;le</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3964"/>
-        <source>Load Macro</source>
-        <translation>Makroyu Yükle</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3960"/>
-        <source>&amp;Load Macro</source>
-        <translation>Makroyu Yük&amp;le</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3966"/>
         <source>&lt;b&gt;Load Macro&lt;/b&gt;&lt;p&gt;Load an editor macro from a file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3976"/>
+        <source>Save Macro</source>
+        <translation>Makroyu Kaydet</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3972"/>
+        <source>&amp;Save Macro</source>
+        <translation>Ma&amp;kroyu Kaydet</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3978"/>
-        <source>Save Macro</source>
-        <translation>Makroyu Kaydet</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3974"/>
-        <source>&amp;Save Macro</source>
-        <translation>Ma&amp;kroyu Kaydet</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3980"/>
         <source>&lt;b&gt;Save Macro&lt;/b&gt;&lt;p&gt;Save a previously recorded editor macro to a file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Makro Kaydet&lt;/b&gt;&lt;p&gt;Önceden kayıt edilen makroyu bir dosyada sakla.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3996"/>
+        <location filename="../ViewManager/ViewManager.py" line="3994"/>
         <source>&amp;Macros</source>
         <translation>&amp;Makrolar</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4020"/>
+        <source>Toggle Bookmark</source>
+        <translation>Yerimi Açkapa</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <source>&amp;Toggle Bookmark</source>
+        <translation>Yerimi A&amp;çkapa</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <source>Alt+Ctrl+T</source>
+        <comment>Bookmark|Toggle</comment>
+        <translation>Alt+Ctrl+T</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4022"/>
-        <source>Toggle Bookmark</source>
-        <translation>Yerimi Açkapa</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4014"/>
-        <source>&amp;Toggle Bookmark</source>
-        <translation>Yerimi A&amp;çkapa</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4014"/>
-        <source>Alt+Ctrl+T</source>
-        <comment>Bookmark|Toggle</comment>
-        <translation>Alt+Ctrl+T</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4024"/>
         <source>&lt;b&gt;Toggle Bookmark&lt;/b&gt;&lt;p&gt;Toggle a bookmark at the current line of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4039"/>
+        <source>Next Bookmark</source>
+        <translation>Sonraki Yerimi</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4031"/>
+        <source>&amp;Next Bookmark</source>
+        <translation>So&amp;nraki Yerimi</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4031"/>
+        <source>Ctrl+PgDown</source>
+        <comment>Bookmark|Next</comment>
+        <translation>Ctrl+PgDown</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4041"/>
-        <source>Next Bookmark</source>
-        <translation>Sonraki Yerimi</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4033"/>
-        <source>&amp;Next Bookmark</source>
-        <translation>So&amp;nraki Yerimi</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4033"/>
-        <source>Ctrl+PgDown</source>
-        <comment>Bookmark|Next</comment>
-        <translation>Ctrl+PgDown</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4043"/>
         <source>&lt;b&gt;Next Bookmark&lt;/b&gt;&lt;p&gt;Go to next bookmark of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4057"/>
+        <source>Previous Bookmark</source>
+        <translation>Önceki Yerimi</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4049"/>
+        <source>&amp;Previous Bookmark</source>
+        <translation>Önceki Yeri&amp;mi</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4049"/>
+        <source>Ctrl+PgUp</source>
+        <comment>Bookmark|Previous</comment>
+        <translation>Ctrl+PgUp</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4059"/>
-        <source>Previous Bookmark</source>
-        <translation>Önceki Yerimi</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4051"/>
-        <source>&amp;Previous Bookmark</source>
-        <translation>Önceki Yeri&amp;mi</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4051"/>
-        <source>Ctrl+PgUp</source>
-        <comment>Bookmark|Previous</comment>
-        <translation>Ctrl+PgUp</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4061"/>
         <source>&lt;b&gt;Previous Bookmark&lt;/b&gt;&lt;p&gt;Go to previous bookmark of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4074"/>
+        <source>Clear Bookmarks</source>
+        <translation>Yerimlerini Temizle</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <source>&amp;Clear Bookmarks</source>
+        <translation>Yerimlerini &amp;Temizle</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <source>Alt+Ctrl+C</source>
+        <comment>Bookmark|Clear</comment>
+        <translation>Alt+Ctrl+C</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4076"/>
-        <source>Clear Bookmarks</source>
-        <translation>Yerimlerini Temizle</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4069"/>
-        <source>&amp;Clear Bookmarks</source>
-        <translation>Yerimlerini &amp;Temizle</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4069"/>
-        <source>Alt+Ctrl+C</source>
-        <comment>Bookmark|Clear</comment>
-        <translation>Alt+Ctrl+C</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4078"/>
         <source>&lt;b&gt;Clear Bookmarks&lt;/b&gt;&lt;p&gt;Clear bookmarks of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Yerimlerini Temizle&lt;/b&gt;&lt;p&gt;Tüm düzenleyicilerin yerimlerini temizle&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4090"/>
+        <source>Goto Syntax Error</source>
+        <translation>Sözdizimi Hatasına Git</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4084"/>
+        <source>&amp;Goto Syntax Error</source>
+        <translation>Sözdizimi Hatasına &amp;Git</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4092"/>
-        <source>Goto Syntax Error</source>
-        <translation>Sözdizimi Hatasına Git</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4086"/>
-        <source>&amp;Goto Syntax Error</source>
-        <translation>Sözdizimi Hatasına &amp;Git</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4094"/>
         <source>&lt;b&gt;Goto Syntax Error&lt;/b&gt;&lt;p&gt;Go to next syntax error of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4105"/>
+        <source>Clear Syntax Errors</source>
+        <translation>Sözdizimi Hatalarını Temizle</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4100"/>
+        <source>Clear &amp;Syntax Errors</source>
+        <translation>&amp;Sözdizimi Hatalarını Temizli</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4107"/>
-        <source>Clear Syntax Errors</source>
-        <translation>Sözdizimi Hatalarını Temizle</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4102"/>
-        <source>Clear &amp;Syntax Errors</source>
-        <translation>&amp;Sözdizimi Hatalarını Temizli</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4109"/>
         <source>&lt;b&gt;Clear Syntax Errors&lt;/b&gt;&lt;p&gt;Clear syntax errors of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Sözdizimi Hatalarını Temizle&lt;/b&gt;&lt;p&gt;Tüm düsenleyicilerdeki sözdizimi hatalarını temizle.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4124"/>
+        <location filename="../ViewManager/ViewManager.py" line="4122"/>
         <source>Next warning message</source>
         <translation>Sonraki uyarı mesajı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4118"/>
+        <location filename="../ViewManager/ViewManager.py" line="4116"/>
         <source>&amp;Next warning message</source>
         <translation>So&amp;nraki uyarı mesajı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4143"/>
+        <location filename="../ViewManager/ViewManager.py" line="4141"/>
         <source>Previous warning message</source>
         <translation>Önceki uyarı mesajı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4135"/>
+        <location filename="../ViewManager/ViewManager.py" line="4133"/>
         <source>&amp;Previous warning message</source>
         <translation>&amp;Önceki uyarı mesajı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4161"/>
+        <location filename="../ViewManager/ViewManager.py" line="4159"/>
         <source>Clear Warning Messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4154"/>
+        <location filename="../ViewManager/ViewManager.py" line="4152"/>
         <source>Clear &amp;Warning Messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4175"/>
+        <source>Next uncovered line</source>
+        <translation>Sonraki kapanmamış satır</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4169"/>
+        <source>&amp;Next uncovered line</source>
+        <translation>So&amp;nraki kapanmamış satır</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4177"/>
-        <source>Next uncovered line</source>
-        <translation>Sonraki kapanmamış satır</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4171"/>
-        <source>&amp;Next uncovered line</source>
-        <translation>So&amp;nraki kapanmamış satır</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4179"/>
         <source>&lt;b&gt;Next uncovered line&lt;/b&gt;&lt;p&gt;Go to next line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4194"/>
+        <source>Previous uncovered line</source>
+        <translation>Önceki kaplanmamış satır</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4186"/>
+        <source>&amp;Previous uncovered line</source>
+        <translation>&amp;Önceki kaplanmamış satır</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4196"/>
-        <source>Previous uncovered line</source>
-        <translation>Önceki kaplanmamış satır</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4188"/>
-        <source>&amp;Previous uncovered line</source>
-        <translation>&amp;Önceki kaplanmamış satır</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4198"/>
         <source>&lt;b&gt;Previous uncovered line&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4212"/>
+        <source>Next Task</source>
+        <translation>Sonraki Görev</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4206"/>
+        <source>&amp;Next Task</source>
+        <translation>So&amp;nraki Görev</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4214"/>
-        <source>Next Task</source>
-        <translation>Sonraki Görev</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4208"/>
-        <source>&amp;Next Task</source>
-        <translation>So&amp;nraki Görev</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4216"/>
         <source>&lt;b&gt;Next Task&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a task.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Sonraki Görev &lt;/b&gt;&lt;p&gt;Geçerli düzenleyicideki bir sonraki satıra görev almak için git.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4229"/>
+        <source>Previous Task</source>
+        <translation>Önceki Görev</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4222"/>
+        <source>&amp;Previous Task</source>
+        <translation>Ön&amp;ceki Görev</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4231"/>
-        <source>Previous Task</source>
-        <translation>Önceki Görev</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4224"/>
-        <source>&amp;Previous Task</source>
-        <translation>Ön&amp;ceki Görev</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4233"/>
         <source>&lt;b&gt;Previous Task&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a task.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4287"/>
+        <location filename="../ViewManager/ViewManager.py" line="4285"/>
         <source>&amp;Bookmarks</source>
         <translation>&amp;Yerimleri</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4333"/>
+        <location filename="../ViewManager/ViewManager.py" line="4331"/>
         <source>Bookmarks</source>
         <translation>Yerimleri</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4366"/>
+        <location filename="../ViewManager/ViewManager.py" line="4364"/>
         <source>Shift+F7</source>
         <comment>Spelling|Spell Check</comment>
         <translation>Shift+F7</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4375"/>
+        <location filename="../ViewManager/ViewManager.py" line="4373"/>
         <source>Perform spell check of current editor</source>
         <translation>Geçerli düzenleyicide yazım denetimini gerçekleştir</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4385"/>
+        <location filename="../ViewManager/ViewManager.py" line="4383"/>
         <source>Automatic spell checking</source>
         <translation>Otomatik yazım kontrolü</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4385"/>
+        <location filename="../ViewManager/ViewManager.py" line="4383"/>
         <source>&amp;Automatic spell checking</source>
         <translation>Otom&amp;atik yazım kontrolü</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4391"/>
+        <source>(De-)Activate automatic spell checking</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4393"/>
-        <source>(De-)Activate automatic spell checking</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4395"/>
         <source>&lt;b&gt;Automatic spell checking&lt;/b&gt;&lt;p&gt;Activate or deactivate the automatic spell checking function of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Otomatik metin kontrolü&lt;/b&gt;&lt;p&gt;Tüm düzenleyicilerdeki otomatik metin kontrolünü aktifleştir yada etkinliğini kaldır.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4462"/>
+        <location filename="../ViewManager/ViewManager.py" line="4460"/>
         <source>Spelling</source>
         <translation>Yazım kontolü yapılıyor</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4485"/>
+        <location filename="../ViewManager/ViewManager.py" line="4483"/>
         <source>Open files</source>
         <translation>Dosyaları aç</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4529"/>
+        <location filename="../ViewManager/ViewManager.py" line="4527"/>
         <source>File Modified</source>
         <translation>Dosya Değiştirildi</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4529"/>
+        <location filename="../ViewManager/ViewManager.py" line="4527"/>
         <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="../ViewManager/ViewManager.py" line="4928"/>
+        <location filename="../ViewManager/ViewManager.py" line="4926"/>
         <source>Line: {0:5}</source>
         <translation>Satır: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4934"/>
+        <location filename="../ViewManager/ViewManager.py" line="4932"/>
         <source>Pos: {0:5}</source>
         <translation>Pos: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5373"/>
+        <location filename="../ViewManager/ViewManager.py" line="5371"/>
         <source>&amp;Clear</source>
         <translation>T&amp;emizle</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5367"/>
+        <location filename="../ViewManager/ViewManager.py" line="5365"/>
         <source>&amp;Add</source>
         <translation>&amp;Ekle</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5370"/>
+        <location filename="../ViewManager/ViewManager.py" line="5368"/>
         <source>&amp;Edit...</source>
         <translation>Düz&amp;en...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1082"/>
+        <location filename="../ViewManager/ViewManager.py" line="1081"/>
         <source>Join Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1075"/>
+        <location filename="../ViewManager/ViewManager.py" line="1074"/>
         <source>Ctrl+J</source>
         <comment>Edit|Join Lines</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1084"/>
+        <location filename="../ViewManager/ViewManager.py" line="1083"/>
         <source>&lt;b&gt;Join Lines&lt;/b&gt;&lt;p&gt;Join the current and the next lines.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3202"/>
+        <location filename="../ViewManager/ViewManager.py" line="3200"/>
         <source>Goto Last Edit Location</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3191"/>
+        <location filename="../ViewManager/ViewManager.py" line="3189"/>
         <source>Goto Last &amp;Edit Location</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3191"/>
+        <location filename="../ViewManager/ViewManager.py" line="3189"/>
         <source>Ctrl+Shift+G</source>
         <comment>Search|Goto Last Edit Location</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3205"/>
+        <location filename="../ViewManager/ViewManager.py" line="3203"/>
         <source>&lt;b&gt;Goto Last Edit Location&lt;/b&gt;&lt;p&gt;Go to the location of the last edit in the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3214"/>
+        <location filename="../ViewManager/ViewManager.py" line="3212"/>
         <source>Goto Previous Method or Class</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3214"/>
+        <location filename="../ViewManager/ViewManager.py" line="3212"/>
         <source>Ctrl+Shift+Up</source>
         <comment>Search|Goto Previous Method or Class</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3224"/>
+        <location filename="../ViewManager/ViewManager.py" line="3222"/>
         <source>Go to the previous method or class definition</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3228"/>
+        <location filename="../ViewManager/ViewManager.py" line="3226"/>
         <source>&lt;b&gt;Goto Previous Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the previous method or class definition and highlights the name.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3238"/>
+        <location filename="../ViewManager/ViewManager.py" line="3236"/>
         <source>Goto Next Method or Class</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3238"/>
+        <location filename="../ViewManager/ViewManager.py" line="3236"/>
         <source>Ctrl+Shift+Down</source>
         <comment>Search|Goto Next Method or Class</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3246"/>
+        <source>Go to the next method or class definition</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3248"/>
-        <source>Go to the next method or class definition</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3250"/>
         <source>&lt;b&gt;Goto Next Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the next method or class definition and highlights the name.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3759"/>
+        <location filename="../ViewManager/ViewManager.py" line="3757"/>
         <source>Preview</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3762"/>
+        <source>Preview the current file in the web browser</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3764"/>
-        <source>Preview the current file in the web browser</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3766"/>
         <source>&lt;b&gt;Preview&lt;/b&gt;&lt;p&gt;This opens the web browser with a preview of the current file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1490"/>
+        <location filename="../ViewManager/ViewManager.py" line="1489"/>
         <source>Meta+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1503"/>
+        <location filename="../ViewManager/ViewManager.py" line="1502"/>
         <source>Meta+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1515"/>
+        <location filename="../ViewManager/ViewManager.py" line="1514"/>
         <source>Meta+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1527"/>
+        <location filename="../ViewManager/ViewManager.py" line="1526"/>
         <source>Meta+N</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1588"/>
+        <location filename="../ViewManager/ViewManager.py" line="1587"/>
         <source>Move to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1604"/>
+        <location filename="../ViewManager/ViewManager.py" line="1603"/>
         <source>Move to start of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1621"/>
+        <location filename="../ViewManager/ViewManager.py" line="1620"/>
         <source>Move to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1629"/>
+        <location filename="../ViewManager/ViewManager.py" line="1628"/>
         <source>Meta+E</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1697"/>
+        <location filename="../ViewManager/ViewManager.py" line="1696"/>
         <source>Meta+V</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1703"/>
+        <location filename="../ViewManager/ViewManager.py" line="1702"/>
         <source>Move to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1720"/>
+        <location filename="../ViewManager/ViewManager.py" line="1719"/>
         <source>Move to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1765"/>
+        <location filename="../ViewManager/ViewManager.py" line="1764"/>
         <source>Meta+Shift+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1780"/>
+        <location filename="../ViewManager/ViewManager.py" line="1779"/>
         <source>Meta+Shift+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1795"/>
+        <location filename="../ViewManager/ViewManager.py" line="1794"/>
         <source>Meta+Shift+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1810"/>
+        <location filename="../ViewManager/ViewManager.py" line="1809"/>
         <source>Meta+Shift+N</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1878"/>
+        <location filename="../ViewManager/ViewManager.py" line="1877"/>
         <source>Extend selection to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1896"/>
+        <location filename="../ViewManager/ViewManager.py" line="1895"/>
         <source>Extend selection to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1904"/>
+        <location filename="../ViewManager/ViewManager.py" line="1903"/>
         <source>Meta+Shift+E</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1961"/>
+        <location filename="../ViewManager/ViewManager.py" line="1960"/>
         <source>Meta+Shift+V</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1967"/>
+        <location filename="../ViewManager/ViewManager.py" line="1966"/>
         <source>Extend selection to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1975"/>
+        <location filename="../ViewManager/ViewManager.py" line="1974"/>
         <source>Ctrl+Shift+Up</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1984"/>
+        <location filename="../ViewManager/ViewManager.py" line="1983"/>
         <source>Extend selection to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1992"/>
+        <location filename="../ViewManager/ViewManager.py" line="1991"/>
         <source>Ctrl+Shift+Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2010"/>
+        <location filename="../ViewManager/ViewManager.py" line="2009"/>
         <source>Meta+H</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2019"/>
+        <location filename="../ViewManager/ViewManager.py" line="2018"/>
         <source>Delete previous character if not at start of line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2040"/>
+        <location filename="../ViewManager/ViewManager.py" line="2039"/>
         <source>Meta+D</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2084"/>
+        <location filename="../ViewManager/ViewManager.py" line="2083"/>
         <source>Meta+K</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2194"/>
+        <location filename="../ViewManager/ViewManager.py" line="2192"/>
         <source>Move to end of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2211"/>
+        <location filename="../ViewManager/ViewManager.py" line="2209"/>
         <source>Extend selection to end of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2253"/>
+        <location filename="../ViewManager/ViewManager.py" line="2251"/>
         <source>Meta+Alt+Shift+N</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2268"/>
+        <location filename="../ViewManager/ViewManager.py" line="2266"/>
         <source>Meta+Alt+Shift+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2286"/>
+        <location filename="../ViewManager/ViewManager.py" line="2284"/>
         <source>Meta+Alt+Shift+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2304"/>
+        <location filename="../ViewManager/ViewManager.py" line="2302"/>
         <source>Meta+Alt+Shift+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2310"/>
+        <location filename="../ViewManager/ViewManager.py" line="2308"/>
         <source>Extend rectangular selection to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2329"/>
+        <location filename="../ViewManager/ViewManager.py" line="2327"/>
         <source>Extend rectangular selection to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2339"/>
+        <location filename="../ViewManager/ViewManager.py" line="2337"/>
         <source>Meta+Alt+Shift+E</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2342"/>
+        <location filename="../ViewManager/ViewManager.py" line="2340"/>
         <source>Alt+Shift+End</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2363"/>
+        <location filename="../ViewManager/ViewManager.py" line="2361"/>
         <source>Alt+Shift+PgDown</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2375"/>
+        <location filename="../ViewManager/ViewManager.py" line="2373"/>
         <source>Meta+Alt+Shift+V</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2395"/>
+        <location filename="../ViewManager/ViewManager.py" line="2393"/>
         <source>Scroll to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2410"/>
+        <location filename="../ViewManager/ViewManager.py" line="2408"/>
         <source>Scroll to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2425"/>
+        <location filename="../ViewManager/ViewManager.py" line="2423"/>
         <source>Scroll vertically to center current line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2433"/>
+        <location filename="../ViewManager/ViewManager.py" line="2431"/>
         <source>Meta+L</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2440"/>
+        <location filename="../ViewManager/ViewManager.py" line="2438"/>
         <source>Move to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2455"/>
+        <location filename="../ViewManager/ViewManager.py" line="2453"/>
         <source>Extend selection to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2471"/>
+        <location filename="../ViewManager/ViewManager.py" line="2469"/>
         <source>Move to end of previous word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2483"/>
+        <location filename="../ViewManager/ViewManager.py" line="2481"/>
         <source>Extend selection to end of previous word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2495"/>
+        <location filename="../ViewManager/ViewManager.py" line="2493"/>
         <source>Move to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2503"/>
+        <location filename="../ViewManager/ViewManager.py" line="2501"/>
         <source>Meta+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2510"/>
+        <location filename="../ViewManager/ViewManager.py" line="2508"/>
         <source>Extend selection to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2521"/>
+        <location filename="../ViewManager/ViewManager.py" line="2519"/>
         <source>Meta+Shift+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2528"/>
+        <location filename="../ViewManager/ViewManager.py" line="2526"/>
         <source>Extend rectangular selection to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2538"/>
+        <location filename="../ViewManager/ViewManager.py" line="2536"/>
         <source>Meta+Alt+Shift+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2546"/>
+        <location filename="../ViewManager/ViewManager.py" line="2544"/>
         <source>Extend selection to start of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2565"/>
+        <location filename="../ViewManager/ViewManager.py" line="2563"/>
         <source>Move to start of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2579"/>
+        <location filename="../ViewManager/ViewManager.py" line="2577"/>
         <source>Extend selection to start of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2594"/>
+        <location filename="../ViewManager/ViewManager.py" line="2592"/>
         <source>Move to first visible character in display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2611"/>
+        <location filename="../ViewManager/ViewManager.py" line="2609"/>
         <source>Extend selection to first visible character in display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2628"/>
+        <location filename="../ViewManager/ViewManager.py" line="2626"/>
         <source>Move to end of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2642"/>
+        <location filename="../ViewManager/ViewManager.py" line="2640"/>
         <source>Extend selection to end of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2657"/>
+        <location filename="../ViewManager/ViewManager.py" line="2655"/>
         <source>Stuttered move up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2669"/>
+        <location filename="../ViewManager/ViewManager.py" line="2667"/>
         <source>Stuttered extend selection up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2682"/>
+        <location filename="../ViewManager/ViewManager.py" line="2680"/>
         <source>Stuttered move down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2694"/>
+        <location filename="../ViewManager/ViewManager.py" line="2692"/>
         <source>Stuttered extend selection down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2707"/>
+        <location filename="../ViewManager/ViewManager.py" line="2705"/>
         <source>Delete right to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2715"/>
+        <location filename="../ViewManager/ViewManager.py" line="2713"/>
         <source>Alt+Del</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2722"/>
+        <location filename="../ViewManager/ViewManager.py" line="2720"/>
         <source>Move selected lines up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2734"/>
+        <location filename="../ViewManager/ViewManager.py" line="2732"/>
         <source>Move selected lines down one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2348"/>
+        <location filename="../ViewManager/ViewManager.py" line="2346"/>
         <source>Alt+Shift+PgUp</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1185"/>
+        <location filename="../ViewManager/ViewManager.py" line="1184"/>
         <source>Toggle Comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1185"/>
+        <location filename="../ViewManager/ViewManager.py" line="1184"/>
         <source>Ctrl+Shift+M</source>
         <comment>Edit|Toggle Comment</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1193"/>
+        <location filename="../ViewManager/ViewManager.py" line="1192"/>
         <source>Toggle the comment of the current line, selection or comment block</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1197"/>
+        <location filename="../ViewManager/ViewManager.py" line="1196"/>
         <source>&lt;b&gt;Toggle Comment&lt;/b&gt;&lt;p&gt;If the current line does not start with a block comment, the current line or selection is commented. If it is already commented, this comment block is uncommented. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3525"/>
         <source>Zoom reset</source>
         <translation type="unfinished">Büyütmeyi sıfırla</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3525"/>
         <source>Zoom &amp;reset</source>
         <translation type="unfinished">Büyütmeyi sıfı&amp;rla</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3525"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation type="unfinished">Ctrl+0</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3535"/>
+        <location filename="../ViewManager/ViewManager.py" line="3533"/>
         <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="3537"/>
+        <location filename="../ViewManager/ViewManager.py" line="3535"/>
         <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="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3487"/>
         <source>Zoom In</source>
         <comment>View|Zoom in</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3508"/>
+        <location filename="../ViewManager/ViewManager.py" line="3506"/>
         <source>Zoom Out</source>
         <comment>View|Zoom out</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="764"/>
+        <location filename="../ViewManager/ViewManager.py" line="763"/>
         <source>Save a&amp;ll</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4246"/>
+        <source>Next Change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4240"/>
+        <source>&amp;Next Change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4248"/>
-        <source>Next Change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4242"/>
-        <source>&amp;Next Change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4250"/>
         <source>&lt;b&gt;Next Change&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4264"/>
+        <source>Previous Change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4257"/>
+        <source>&amp;Previous Change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4266"/>
-        <source>Previous Change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4259"/>
-        <source>&amp;Previous Change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4268"/>
         <source>&lt;b&gt;Previous Change&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4366"/>
+        <location filename="../ViewManager/ViewManager.py" line="4364"/>
         <source>Check spelling</source>
         <translation type="unfinished">Yazım denetimi</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4366"/>
+        <location filename="../ViewManager/ViewManager.py" line="4364"/>
         <source>Check &amp;spelling...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4377"/>
+        <location filename="../ViewManager/ViewManager.py" line="4375"/>
         <source>&lt;b&gt;Check spelling&lt;/b&gt;&lt;p&gt;Perform a spell check of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4424"/>
+        <source>Edit Dictionary</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4426"/>
-        <source>Edit Dictionary</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4428"/>
         <source>Project Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4431"/>
+        <location filename="../ViewManager/ViewManager.py" line="4429"/>
         <source>Project Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4436"/>
+        <location filename="../ViewManager/ViewManager.py" line="4434"/>
         <source>User Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4439"/>
+        <location filename="../ViewManager/ViewManager.py" line="4437"/>
         <source>User Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6639"/>
+        <location filename="../ViewManager/ViewManager.py" line="6637"/>
         <source>Edit Spelling Dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6614"/>
+        <location filename="../ViewManager/ViewManager.py" line="6612"/>
         <source>Editing {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6596"/>
+        <location filename="../ViewManager/ViewManager.py" line="6594"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6626"/>
+        <location filename="../ViewManager/ViewManager.py" line="6624"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6639"/>
+        <location filename="../ViewManager/ViewManager.py" line="6637"/>
         <source>The spelling dictionary was saved successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2957"/>
+        <location filename="../ViewManager/ViewManager.py" line="2955"/>
         <source>Search current word forward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2957"/>
+        <location filename="../ViewManager/ViewManager.py" line="2955"/>
         <source>Ctrl+.</source>
         <comment>Search|Search current word forward</comment>
         <translation type="unfinished">Ctrl+.</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2968"/>
+        <location filename="../ViewManager/ViewManager.py" line="2966"/>
         <source>Search next occurrence of the current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2971"/>
+        <location filename="../ViewManager/ViewManager.py" line="2969"/>
         <source>&lt;b&gt;Search current word forward&lt;/b&gt;&lt;p&gt;Search the next occurrence of the current word of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2980"/>
+        <location filename="../ViewManager/ViewManager.py" line="2978"/>
         <source>Search current word backward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2980"/>
+        <location filename="../ViewManager/ViewManager.py" line="2978"/>
         <source>Ctrl+,</source>
         <comment>Search|Search current word backward</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2991"/>
+        <location filename="../ViewManager/ViewManager.py" line="2989"/>
         <source>Search previous occurrence of the current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2994"/>
+        <location filename="../ViewManager/ViewManager.py" line="2992"/>
         <source>&lt;b&gt;Search current word backward&lt;/b&gt;&lt;p&gt;Search the previous occurrence of the current word of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3301"/>
+        <location filename="../ViewManager/ViewManager.py" line="3299"/>
         <source>Search in Open Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3301"/>
+        <location filename="../ViewManager/ViewManager.py" line="3299"/>
         <source>Search in Open Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3301"/>
+        <location filename="../ViewManager/ViewManager.py" line="3299"/>
         <source>Meta+Ctrl+Alt+F</source>
         <comment>Search|Search Open Files</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3310"/>
+        <source>Search for a text in open files</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3312"/>
-        <source>Search for a text in open files</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3314"/>
         <source>&lt;b&gt;Search in Open Files&lt;/b&gt;&lt;p&gt;Search for some text in the currently opened files. A dialog is shown to enter the searchtext and options for the search and to display the result.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3324"/>
+        <location filename="../ViewManager/ViewManager.py" line="3322"/>
         <source>Replace in Open Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3324"/>
+        <location filename="../ViewManager/ViewManager.py" line="3322"/>
         <source>Meta+Ctrl+Alt+R</source>
         <comment>Search|Replace in Open Files</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3332"/>
+        <source>Search for a text in open files and replace it</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3334"/>
-        <source>Search for a text in open files and replace it</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3336"/>
         <source>&lt;b&gt;Replace in Open Files&lt;/b&gt;&lt;p&gt;Search for some text in the currently opened files and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and to display the result.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3324"/>
+        <location filename="../ViewManager/ViewManager.py" line="3322"/>
         <source>Replace in Open Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1450"/>
+        <location filename="../ViewManager/ViewManager.py" line="1449"/>
         <source>Sort</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1450"/>
+        <location filename="../ViewManager/ViewManager.py" line="1449"/>
         <source>Ctrl+Alt+S</source>
         <comment>Edit|Sort</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1457"/>
+        <location filename="../ViewManager/ViewManager.py" line="1456"/>
         <source>Sort the lines containing the rectangular selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1460"/>
+        <location filename="../ViewManager/ViewManager.py" line="1459"/>
         <source>&lt;b&gt;Sort&lt;/b&gt;&lt;p&gt;Sort the lines spanned by a rectangular selection based on the selection ignoring leading and trailing whitespace.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4955"/>
+        <location filename="../ViewManager/ViewManager.py" line="4953"/>
         <source>Language: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4962"/>
+        <location filename="../ViewManager/ViewManager.py" line="4960"/>
         <source>EOL Mode: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3643"/>
+        <location filename="../ViewManager/ViewManager.py" line="3641"/>
         <source>New Document View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3643"/>
+        <location filename="../ViewManager/ViewManager.py" line="3641"/>
         <source>New &amp;Document View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3646"/>
+        <source>Open a new view of the current document</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3648"/>
-        <source>Open a new view of the current document</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3650"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3660"/>
+        <location filename="../ViewManager/ViewManager.py" line="3658"/>
         <source>New Document View (with new split)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3667"/>
+        <location filename="../ViewManager/ViewManager.py" line="3665"/>
         <source>Open a new view of the current document in a new split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3670"/>
+        <location filename="../ViewManager/ViewManager.py" line="3668"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document in a new split. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4126"/>
+        <location filename="../ViewManager/ViewManager.py" line="4124"/>
         <source>&lt;b&gt;Next warning message&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4145"/>
+        <location filename="../ViewManager/ViewManager.py" line="4143"/>
         <source>&lt;b&gt;Previous warning message&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4163"/>
+        <location filename="../ViewManager/ViewManager.py" line="4161"/>
         <source>&lt;b&gt;Clear Warning Messages&lt;/b&gt;&lt;p&gt;Clear pyflakes warning messages of all editors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1327"/>
+        <location filename="../ViewManager/ViewManager.py" line="1326"/>
         <source>Ctrl+Space</source>
         <comment>Edit|Complete</comment>
         <translation type="unfinished">Ctrl+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1336"/>
+        <location filename="../ViewManager/ViewManager.py" line="1335"/>
         <source>&lt;b&gt;Complete&lt;/b&gt;&lt;p&gt;Performs a completion of the word containing the cursor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1345"/>
+        <location filename="../ViewManager/ViewManager.py" line="1344"/>
         <source>Ctrl+Shift+Space</source>
         <comment>Edit|Complete from Document</comment>
         <translation type="unfinished">Ctrl+Shift+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1358"/>
+        <location filename="../ViewManager/ViewManager.py" line="1357"/>
         <source>&lt;b&gt;Complete from Document&lt;/b&gt;&lt;p&gt;Performs a completion from document of the word containing the cursor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1368"/>
+        <location filename="../ViewManager/ViewManager.py" line="1367"/>
         <source>Ctrl+Alt+Space</source>
         <comment>Edit|Complete from APIs</comment>
         <translation type="unfinished">Ctrl+Alt+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1381"/>
+        <location filename="../ViewManager/ViewManager.py" line="1380"/>
         <source>&lt;b&gt;Complete from APIs&lt;/b&gt;&lt;p&gt;Performs a completion from APIs of the word containing the cursor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1391"/>
+        <location filename="../ViewManager/ViewManager.py" line="1390"/>
         <source>Alt+Shift+Space</source>
         <comment>Edit|Complete from Document and APIs</comment>
         <translation type="unfinished">Alt+Shift+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1404"/>
+        <location filename="../ViewManager/ViewManager.py" line="1403"/>
         <source>&lt;b&gt;Complete from Document and APIs&lt;/b&gt;&lt;p&gt;Performs a completion from document and APIs of the word containing the cursor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="748"/>
+        <location filename="../ViewManager/ViewManager.py" line="747"/>
         <source>Save Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="748"/>
+        <location filename="../ViewManager/ViewManager.py" line="747"/>
         <source>Save &amp;Copy...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="753"/>
+        <location filename="../ViewManager/ViewManager.py" line="752"/>
         <source>Save a copy of the current file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="755"/>
+        <location filename="../ViewManager/ViewManager.py" line="754"/>
         <source>&lt;b&gt;Save Copy&lt;/b&gt;&lt;p&gt;Save a copy of the contents of current editor window. The file can be entered in a file selection dialog.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -85038,141 +85043,141 @@
         <translation type="unfinished">Ctrl+G</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3022"/>
+        <location filename="../ViewManager/ViewManager.py" line="3020"/>
         <source>Replace and Search</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3022"/>
+        <location filename="../ViewManager/ViewManager.py" line="3020"/>
         <source>Meta+R</source>
         <comment>Search|Replace and Search</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3032"/>
+        <location filename="../ViewManager/ViewManager.py" line="3030"/>
         <source>Replace the found text and search the next occurrence</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3035"/>
+        <location filename="../ViewManager/ViewManager.py" line="3033"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3046"/>
+        <location filename="../ViewManager/ViewManager.py" line="3044"/>
         <source>Replace Occurrence</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3046"/>
+        <location filename="../ViewManager/ViewManager.py" line="3044"/>
         <source>Ctrl+Meta+R</source>
         <comment>Search|Replace Occurrence</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3054"/>
+        <source>Replace the found text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3056"/>
-        <source>Replace the found text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3058"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3068"/>
+        <location filename="../ViewManager/ViewManager.py" line="3066"/>
         <source>Replace All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3068"/>
+        <location filename="../ViewManager/ViewManager.py" line="3066"/>
         <source>Shift+Meta+R</source>
         <comment>Search|Replace All</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3076"/>
+        <source>Replace search text occurrences</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3078"/>
-        <source>Replace search text occurrences</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3080"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1432"/>
+        <location filename="../ViewManager/ViewManager.py" line="1431"/>
         <source>Code Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1432"/>
+        <location filename="../ViewManager/ViewManager.py" line="1431"/>
         <source>Ctrl+Alt+I</source>
         <comment>Edit|Code Info</comment>
         <translation type="unfinished">Ctrl+Alt+I</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1440"/>
+        <location filename="../ViewManager/ViewManager.py" line="1439"/>
         <source>Show Code Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1442"/>
+        <location filename="../ViewManager/ViewManager.py" line="1441"/>
         <source>&lt;b&gt;Code Info&lt;/b&gt;&lt;p&gt;Show code information based on the cursor position.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3614"/>
+        <source>Clear all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3610"/>
+        <source>Clear &amp;all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3616"/>
-        <source>Clear all folds</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3612"/>
-        <source>Clear &amp;all folds</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3618"/>
         <source>&lt;b&gt;Clear all folds&lt;/b&gt;&lt;p&gt;Clear all folds of the current editor, i.e. ensure that all lines are displayed unfolded.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2150"/>
+        <location filename="../ViewManager/ViewManager.py" line="2148"/>
         <source>Reverse selected lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2150"/>
+        <location filename="../ViewManager/ViewManager.py" line="2148"/>
         <source>Meta+Alt+R</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3776"/>
+        <location filename="../ViewManager/ViewManager.py" line="3774"/>
         <source>Python AST Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3779"/>
+        <source>Show the AST for the current Python file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3781"/>
-        <source>Show the AST for the current Python file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3783"/>
         <source>&lt;b&gt;Python AST Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the AST of the current Python source file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3793"/>
+        <location filename="../ViewManager/ViewManager.py" line="3791"/>
         <source>Python Disassembly Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3798"/>
+        <source>Show the Disassembly for the current Python file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3800"/>
-        <source>Show the Disassembly for the current Python file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3802"/>
         <source>&lt;b&gt;Python Disassembly Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the Disassembly of the current Python source file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -88044,7 +88049,7 @@
 <context>
     <name>WebBrowserTools</name>
     <message>
-        <location filename="../WebBrowser/Tools/WebBrowserTools.py" line="249"/>
+        <location filename="../WebBrowser/Tools/WebBrowserTools.py" line="251"/>
         <source>&lt;unknown&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -90781,57 +90786,57 @@
     <name>YandexEngine</name>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="38"/>
-        <source>Invalid API key.</source>
+        <source>Yandex: Invalid API key.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="39"/>
-        <source>API key has been blocked.</source>
+        <source>Yandex: API key has been blocked.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="40"/>
-        <source>Daily limit for requests has been reached.</source>
+        <source>Yandex: Daily limit for requests has been reached.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="41"/>
-        <source>Daily limit for the volume of translated text reached.</source>
+        <source>Yandex: Daily limit for the volume of translated text reached.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="43"/>
-        <source>Text size exceeds the maximum.</source>
+        <source>Yandex: Text size exceeds the maximum.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="44"/>
-        <source>Text could not be translated.</source>
+        <source>Yandex: Text could not be translated.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="45"/>
-        <source>The specified translation direction is not supported.</source>
+        <source>Yandex: The specified translation direction is not supported.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="86"/>
-        <source>Only texts up to {0} characters are allowed.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="91"/>
-        <source>A valid Yandex key is required.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="106"/>
-        <source>Invalid response received</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="112"/>
-        <source>Unknown error code ({0}) received.</source>
+        <source>Yandex: Only texts up to {0} characters are allowed.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="109"/>
+        <source>Yandex: Invalid response received</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="115"/>
+        <source>Yandex: Unknown error code ({0}) received.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="94"/>
+        <source>Yandex: A valid key is required.</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -91265,417 +91270,417 @@
 <context>
     <name>pycodestyle</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="24"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="22"/>
         <source>indentation contains mixed spaces and tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="27"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="25"/>
         <source>indentation is not a multiple of four</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="30"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="28"/>
         <source>expected an indented block</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="33"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="31"/>
         <source>unexpected indentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="36"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="34"/>
         <source>indentation is not a multiple of four (comment)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="39"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="37"/>
         <source>expected an indented block (comment)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="42"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="40"/>
         <source>unexpected indentation (comment)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="48"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="46"/>
         <source>continuation line indentation is not a multiple of four</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="51"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="49"/>
         <source>continuation line missing indentation or outdented</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="54"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="52"/>
         <source>closing bracket does not match indentation of opening bracket&apos;s line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="58"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="56"/>
         <source>closing bracket does not match visual indentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="61"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="59"/>
         <source>continuation line with same indent as next logical line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="64"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="62"/>
         <source>continuation line over-indented for hanging indent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="67"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="65"/>
         <source>continuation line over-indented for visual indent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="70"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="68"/>
         <source>continuation line under-indented for visual indent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="73"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="71"/>
         <source>visually indented line with same indent as next logical line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="76"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="74"/>
         <source>continuation line unaligned for hanging indent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="79"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="77"/>
         <source>closing bracket is missing indentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="82"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="80"/>
         <source>indentation contains tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="85"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="83"/>
         <source>whitespace after &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="94"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="92"/>
         <source>whitespace before &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="97"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="95"/>
         <source>multiple spaces before operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="100"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="98"/>
         <source>multiple spaces after operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="103"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="101"/>
         <source>tab before operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="106"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="104"/>
         <source>tab after operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="109"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="107"/>
         <source>missing whitespace around operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="112"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="110"/>
         <source>missing whitespace around arithmetic operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="115"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="113"/>
         <source>missing whitespace around bitwise or shift operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="118"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="116"/>
         <source>missing whitespace around modulo operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="121"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="119"/>
         <source>missing whitespace after &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="124"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="122"/>
         <source>multiple spaces after &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="127"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="125"/>
         <source>tab after &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="130"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="128"/>
         <source>unexpected spaces around keyword / parameter equals</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="136"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="134"/>
         <source>at least two spaces before inline comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="139"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="137"/>
         <source>inline comment should start with &apos;# &apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="142"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="140"/>
         <source>block comment should start with &apos;# &apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="145"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="143"/>
         <source>too many leading &apos;#&apos; for block comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="148"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="146"/>
         <source>multiple spaces after keyword</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="151"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="149"/>
         <source>multiple spaces before keyword</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="154"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="152"/>
         <source>tab after keyword</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="157"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="155"/>
         <source>tab before keyword</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="160"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="158"/>
         <source>missing whitespace after keyword</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="163"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="161"/>
         <source>trailing whitespace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="166"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="164"/>
         <source>no newline at end of file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="169"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="167"/>
         <source>blank line contains whitespace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="194"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="192"/>
         <source>too many blank lines ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="181"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="179"/>
         <source>blank lines found after function decorator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="197"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="195"/>
         <source>blank line at end of file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="200"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="198"/>
         <source>multiple imports on one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="203"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="201"/>
         <source>module level import not at top of file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="206"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="204"/>
         <source>line too long ({0} &gt; {1} characters)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="209"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="207"/>
         <source>the backslash is redundant between brackets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="212"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="210"/>
         <source>line break before binary operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="221"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="219"/>
         <source>.has_key() is deprecated, use &apos;in&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="224"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="222"/>
         <source>deprecated form of raising exception</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="227"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="225"/>
         <source>&apos;&lt;&gt;&apos; is deprecated, use &apos;!=&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="230"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="228"/>
         <source>backticks are deprecated, use &apos;repr()&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="239"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="237"/>
         <source>multiple statements on one line (colon)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="242"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="240"/>
         <source>multiple statements on one line (semicolon)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="245"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="243"/>
         <source>statement ends with a semicolon</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="248"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="246"/>
         <source>multiple statements on one line (def)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="254"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="252"/>
         <source>comparison to {0} should be {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="257"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="255"/>
         <source>test for membership should be &apos;not in&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="260"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="258"/>
         <source>test for object identity should be &apos;is not&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="263"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="261"/>
         <source>do not compare types, use &apos;isinstance()&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="269"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="267"/>
         <source>do not assign a lambda expression, use a def</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="272"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="270"/>
         <source>ambiguous variable name &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="275"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="273"/>
         <source>ambiguous class definition &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="278"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="276"/>
         <source>ambiguous function definition &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="281"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="279"/>
         <source>{0}: {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="284"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="282"/>
         <source>{0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="266"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="264"/>
         <source>do not use bare except</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="184"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="182"/>
         <source>expected {0} blank lines after class or function definition, found {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="236"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="234"/>
         <source>&apos;async&apos; and &apos;await&apos; are reserved keywords starting with Python 3.7</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="133"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="131"/>
         <source>missing whitespace around parameter equals</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="175"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="173"/>
         <source>expected {0} blank lines, found {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="188"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="186"/>
         <source>expected {0} blank lines before a nested definition, found {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="215"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="213"/>
         <source>line break after binary operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="233"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="231"/>
         <source>invalid escape sequence &apos;\{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="191"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="189"/>
         <source>too many blank lines ({0}) before a nested definition, expected {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="178"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="176"/>
         <source>too many blank lines ({0}), expected {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="45"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="43"/>
         <source>over-indented</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="218"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="216"/>
         <source>doc line too long ({0} &gt; {1} characters)</source>
         <translation type="unfinished"></translation>
     </message>
--- a/eric6/i18n/eric6_zh_CN.ts	Sat Oct 03 12:07:51 2020 +0200
+++ b/eric6/i18n/eric6_zh_CN.ts	Sun Oct 04 16:28:51 2020 +0200
@@ -1132,72 +1132,72 @@
 <context>
     <name>AnnotationsChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="808"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="806"/>
         <source>missing type annotation for function argument &apos;{0}&apos;</source>
         <translation>缺少函数参数 &apos;{0}&apos; 的类型标注</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="811"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="809"/>
         <source>missing type annotation for &apos;*{0}&apos;</source>
         <translation>缺少 &apos;*{0}&apos; 的类型标注</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="814"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="812"/>
         <source>missing type annotation for &apos;**{0}&apos;</source>
         <translation>缺少 &apos;**{0}&apos; 的类型标注</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="823"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="821"/>
         <source>missing return type annotation for public function</source>
         <translation>公共函数缺少返回类型标注</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="826"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="824"/>
         <source>missing return type annotation for protected function</source>
         <translation>保护函数缺少返回类型标注</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="829"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="827"/>
         <source>missing return type annotation for private function</source>
         <translation>私有函数缺少返回类型标注</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="832"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="830"/>
         <source>missing return type annotation for special method</source>
         <translation>特殊方法缺少返回类型标注</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="835"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="833"/>
         <source>missing return type annotation for staticmethod</source>
         <translation>静态方法缺少返回类型标注</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="838"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="836"/>
         <source>missing return type annotation for classmethod</source>
         <translation>类方法缺少返回类型标注</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="850"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="848"/>
         <source>{0}: {1}</source>
         <translation>{0}: {1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="817"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="815"/>
         <source>missing type annotation for &apos;self&apos; in method</source>
         <translation>方法中缺少 &apos;self&apos; 的类型标注</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="820"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="818"/>
         <source>missing type annotation for &apos;cls&apos; in classmethod</source>
         <translation>类方法中缺少 &apos;cls&apos; 的类型标注</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="842"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="840"/>
         <source>type annotation coverage of {0}% is too low</source>
         <translation>{0}% 的类型标注批覆盖率太低</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="846"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="844"/>
         <source>type annotation is too complex ({0} &gt; {1})</source>
         <translation>类型标注太复杂 ({0} &gt; {1})</translation>
     </message>
@@ -3444,7 +3444,7 @@
 <context>
     <name>CodeStyleChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="1130"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="1128"/>
         <source>No message defined for code &apos;{0}&apos;.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -4181,221 +4181,221 @@
 <context>
     <name>CodeStyleFixer</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="858"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="856"/>
         <source>Triple single quotes converted to triple double quotes.</source>
         <translation>三单引号转换成双引号。</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="861"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="859"/>
         <source>Introductory quotes corrected to be {0}&quot;&quot;&quot;</source>
         <translation>前导引号更正为 {0}&quot;&quot;&quot;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="864"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="862"/>
         <source>Single line docstring put on one line.</source>
         <translation>单行的文档字串放在一行。</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="867"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="865"/>
         <source>Period added to summary line.</source>
         <translation>附于总结线的句号。</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="894"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="892"/>
         <source>Blank line before function/method docstring removed.</source>
         <translation>函数/方法文档字串前的空行已移除。</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="873"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="871"/>
         <source>Blank line inserted before class docstring.</source>
         <translation>类文档字串前插入的空行。</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="876"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="874"/>
         <source>Blank line inserted after class docstring.</source>
         <translation>类文档字串后的插入的空行。</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="879"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="877"/>
         <source>Blank line inserted after docstring summary.</source>
         <translation>文档字串摘要后插入的空行。</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="882"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="880"/>
         <source>Blank line inserted after last paragraph of docstring.</source>
         <translation>文档字串最后段落插入的空行。</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="885"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="883"/>
         <source>Leading quotes put on separate line.</source>
         <translation>前导引号放在单独一行。</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="888"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="886"/>
         <source>Trailing quotes put on separate line.</source>
         <translation>尾随引号放在单独一行。</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="891"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="889"/>
         <source>Blank line before class docstring removed.</source>
         <translation>类文档字串前的空行已移除。</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="897"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="895"/>
         <source>Blank line after class docstring removed.</source>
         <translation>类文档字串后的空行已移除。</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="900"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="898"/>
         <source>Blank line after function/method docstring removed.</source>
         <translation>函数/方法文档字串后的空行已移除。</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="903"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="901"/>
         <source>Blank line after last paragraph removed.</source>
         <translation>最后段落后的空行已移除。</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="906"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="904"/>
         <source>Tab converted to 4 spaces.</source>
         <translation>制表符转换为4个空格。</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="909"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="907"/>
         <source>Indentation adjusted to be a multiple of four.</source>
         <translation>缩进调整为4的倍数。</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="912"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="910"/>
         <source>Indentation of continuation line corrected.</source>
         <translation>连续行缩进已更正。</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="915"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="913"/>
         <source>Indentation of closing bracket corrected.</source>
         <translation>右括号缩进已更正。</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="918"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="916"/>
         <source>Missing indentation of continuation line corrected.</source>
         <translation>连续行缩进丢失已更正。</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="921"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="919"/>
         <source>Closing bracket aligned to opening bracket.</source>
         <translation>右括号与左括号一致。</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="924"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="922"/>
         <source>Indentation level changed.</source>
         <translation>缩进值已改变。</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="927"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="925"/>
         <source>Indentation level of hanging indentation changed.</source>
         <translation>悬挂缩进的缩进值已改变。</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="930"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="928"/>
         <source>Visual indentation corrected.</source>
         <translation>可视缩进已更正。</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="945"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="943"/>
         <source>Extraneous whitespace removed.</source>
         <translation>多余空格已删除。</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="942"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="940"/>
         <source>Missing whitespace added.</source>
         <translation>丢失的空格已添加。</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="948"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="946"/>
         <source>Whitespace around comment sign corrected.</source>
         <translation>注释符两边的空格已更正。</translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="952"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="950"/>
         <source>%n blank line(s) inserted.</source>
         <translation>
             <numerusform>已插入 %n 空行。</numerusform>
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="955"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="953"/>
         <source>%n superfluous lines removed</source>
         <translation>
             <numerusform>已移除 %n 多余行</numerusform>
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="959"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="957"/>
         <source>Superfluous blank lines removed.</source>
         <translation>多余空行已移除。</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="962"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="960"/>
         <source>Superfluous blank lines after function decorator removed.</source>
         <translation>函数修饰符后的多余空行已移除。</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="965"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="963"/>
         <source>Imports were put on separate lines.</source>
         <translation>已将导入放在单独行。</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="968"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="966"/>
         <source>Long lines have been shortened.</source>
         <translation>长行已被截短。</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="971"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="969"/>
         <source>Redundant backslash in brackets removed.</source>
         <translation>括号中的多余反斜杠已移除。</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="977"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="975"/>
         <source>Compound statement corrected.</source>
         <translation>复合语句已更正。</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="980"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="978"/>
         <source>Comparison to None/True/False corrected.</source>
         <translation>无/真/假的对比已更正。</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="983"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="981"/>
         <source>&apos;{0}&apos; argument added.</source>
         <translation>已添加 &apos;{0}&apos; 参数。</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="986"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="984"/>
         <source>&apos;{0}&apos; argument removed.</source>
         <translation>已移除 &apos;{0}&apos; 参数。</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="989"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="987"/>
         <source>Whitespace stripped from end of line.</source>
         <translation>删除行尾空格。</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="992"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="990"/>
         <source>newline added to end of file.</source>
         <translation>文件尾添加新行。</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="995"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="993"/>
         <source>Superfluous trailing blank lines removed from end of file.</source>
         <translation>文件尾多余的空行已移除。</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="998"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="996"/>
         <source>&apos;&lt;&gt;&apos; replaced by &apos;!=&apos;.</source>
         <translation>用“!=”代替“&lt;&gt;”。</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="1002"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="1000"/>
         <source>Could not save the file! Skipping it. Reason: {0}</source>
         <translation>不能保存该文件!已略过。原因: {0}</translation>
     </message>
@@ -4890,22 +4890,22 @@
 <context>
     <name>ComplexityChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="479"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="477"/>
         <source>&apos;{0}&apos; is too complex ({1})</source>
         <translation>“{0}”太复杂({1})</translation>
     </message>
     <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="479"/>
+        <source>source code line is too complex ({0})</source>
+        <translation>源代码行太复杂({0})</translation>
+    </message>
+    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="481"/>
-        <source>source code line is too complex ({0})</source>
-        <translation>源代码行太复杂({0})</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="483"/>
         <source>overall source code line complexity is too high ({0})</source>
         <translation>全部的源代码行复杂度太高({0})</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="486"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="484"/>
         <source>{0}: {1}</source>
         <translation>{0}: {1}</translation>
     </message>
@@ -8401,30 +8401,30 @@
 <context>
     <name>DeepLEngine</name>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="73"/>
-        <source>Text to be translated exceeds the translation limit of {0} characters.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="95"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="98"/>
         <source>Invalid response received from DeepL</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="98"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="101"/>
         <source>DeepL call returned an unknown result</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="102"/>
-        <source>&lt;p&gt;No translation found&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="79"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="82"/>
         <source>A valid DeepL Pro key is required.</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="73"/>
+        <source>DeepL: Text to be translated exceeds the translation limit of {0} characters.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="105"/>
+        <source>&lt;p&gt;DeepL: No translation found&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>DeleteFilesConfirmationDialog</name>
@@ -8691,237 +8691,237 @@
 <context>
     <name>DocStyleChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="291"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="289"/>
         <source>module is missing a docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="293"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="291"/>
         <source>public function/method is missing a docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="296"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="294"/>
         <source>private function/method may be missing a docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="297"/>
+        <source>public class is missing a docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="299"/>
-        <source>public class is missing a docstring</source>
+        <source>private class may be missing a docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="301"/>
-        <source>private class may be missing a docstring</source>
+        <source>docstring not surrounded by &quot;&quot;&quot;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="303"/>
-        <source>docstring not surrounded by &quot;&quot;&quot;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="305"/>
         <source>docstring containing \ not surrounded by r&quot;&quot;&quot;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="306"/>
+        <source>one-liner docstring on multiple lines</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="308"/>
-        <source>one-liner docstring on multiple lines</source>
+        <source>docstring has wrong indentation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="357"/>
+        <source>docstring summary does not end with a period</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="314"/>
+        <source>docstring summary is not in imperative mood (Does instead of Do)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="318"/>
+        <source>docstring summary looks like a function&apos;s/method&apos;s signature</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="321"/>
+        <source>docstring does not mention the return value type</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="324"/>
+        <source>function/method docstring is separated by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="327"/>
+        <source>class docstring is not preceded by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="330"/>
+        <source>class docstring is not followed by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="391"/>
+        <source>docstring summary is not followed by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="336"/>
+        <source>last paragraph of docstring is not followed by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="344"/>
+        <source>private function/method is missing a docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="347"/>
+        <source>private class is missing a docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="351"/>
+        <source>leading quotes of docstring not on separate line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="354"/>
+        <source>trailing quotes of docstring not on separate line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="361"/>
+        <source>docstring does not contain a @return line but function/method returns something</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="365"/>
+        <source>docstring contains a @return line but function/method doesn&apos;t return anything</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="369"/>
+        <source>docstring does not contain enough @param/@keyparam lines</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="372"/>
+        <source>docstring contains too many @param/@keyparam lines</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="375"/>
+        <source>keyword only arguments must be documented with @keyparam lines</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="378"/>
+        <source>order of @param/@keyparam lines does not match the function/method signature</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="381"/>
+        <source>class docstring is preceded by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="383"/>
+        <source>class docstring is followed by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="385"/>
+        <source>function/method docstring is preceded by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="388"/>
+        <source>function/method docstring is followed by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="394"/>
+        <source>last paragraph of docstring is followed by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="397"/>
+        <source>docstring does not contain a @exception line but function/method raises an exception</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="401"/>
+        <source>docstring contains a @exception line but function/method doesn&apos;t raise an exception</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="424"/>
+        <source>{0}: {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="310"/>
-        <source>docstring has wrong indentation</source>
+        <source>docstring does not contain a summary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="359"/>
-        <source>docstring summary does not end with a period</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="316"/>
-        <source>docstring summary is not in imperative mood (Does instead of Do)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="320"/>
-        <source>docstring summary looks like a function&apos;s/method&apos;s signature</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="323"/>
-        <source>docstring does not mention the return value type</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="326"/>
-        <source>function/method docstring is separated by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="329"/>
-        <source>class docstring is not preceded by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="332"/>
-        <source>class docstring is not followed by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="393"/>
-        <source>docstring summary is not followed by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="338"/>
-        <source>last paragraph of docstring is not followed by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="346"/>
-        <source>private function/method is missing a docstring</source>
+        <source>docstring summary does not start with &apos;{0}&apos;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="405"/>
+        <source>raised exception &apos;{0}&apos; is not documented in docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="408"/>
+        <source>documented exception &apos;{0}&apos; is not raised</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="411"/>
+        <source>docstring does not contain a @signal line but class defines signals</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="414"/>
+        <source>docstring contains a @signal line but class doesn&apos;t define signals</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="417"/>
+        <source>defined signal &apos;{0}&apos; is not documented in docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="420"/>
+        <source>documented signal &apos;{0}&apos; is not defined</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="349"/>
-        <source>private class is missing a docstring</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="353"/>
-        <source>leading quotes of docstring not on separate line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="356"/>
-        <source>trailing quotes of docstring not on separate line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="363"/>
-        <source>docstring does not contain a @return line but function/method returns something</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="367"/>
-        <source>docstring contains a @return line but function/method doesn&apos;t return anything</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="371"/>
-        <source>docstring does not contain enough @param/@keyparam lines</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="374"/>
-        <source>docstring contains too many @param/@keyparam lines</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="377"/>
-        <source>keyword only arguments must be documented with @keyparam lines</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="380"/>
-        <source>order of @param/@keyparam lines does not match the function/method signature</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="383"/>
-        <source>class docstring is preceded by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="385"/>
-        <source>class docstring is followed by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="387"/>
-        <source>function/method docstring is preceded by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="390"/>
-        <source>function/method docstring is followed by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="396"/>
-        <source>last paragraph of docstring is followed by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="399"/>
-        <source>docstring does not contain a @exception line but function/method raises an exception</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="403"/>
-        <source>docstring contains a @exception line but function/method doesn&apos;t raise an exception</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="426"/>
-        <source>{0}: {1}</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="312"/>
-        <source>docstring does not contain a summary</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="361"/>
-        <source>docstring summary does not start with &apos;{0}&apos;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="407"/>
-        <source>raised exception &apos;{0}&apos; is not documented in docstring</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="410"/>
-        <source>documented exception &apos;{0}&apos; is not raised</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="413"/>
-        <source>docstring does not contain a @signal line but class defines signals</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="416"/>
-        <source>docstring contains a @signal line but class doesn&apos;t define signals</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="419"/>
-        <source>defined signal &apos;{0}&apos; is not documented in docstring</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="422"/>
-        <source>documented signal &apos;{0}&apos; is not defined</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="351"/>
         <source>class docstring is still a default string</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="344"/>
-        <source>function docstring is still a default string</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="342"/>
+        <source>function docstring is still a default string</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="340"/>
         <source>module docstring is still a default string</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11312,7 +11312,7 @@
         <translation>全部取消选择</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7835"/>
+        <location filename="../QScintilla/Editor.py" line="7834"/>
         <source>Check spelling...</source>
         <translation>正在进行拼写检查…</translation>
     </message>
@@ -11532,7 +11532,7 @@
         <translation>编辑断点…</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5605"/>
+        <location filename="../QScintilla/Editor.py" line="5604"/>
         <source>Enable breakpoint</source>
         <translation>允许断点</translation>
     </message>
@@ -11647,217 +11647,217 @@
         <translation>保存文件</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4767"/>
+        <location filename="../QScintilla/Editor.py" line="4766"/>
         <source>Autocompletion</source>
         <translation>自动完成</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4767"/>
+        <location filename="../QScintilla/Editor.py" line="4766"/>
         <source>Autocompletion is not available because there is no autocompletion source set.</source>
         <translation>自动完成无效,没有设定自动完成源。</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5608"/>
+        <location filename="../QScintilla/Editor.py" line="5607"/>
         <source>Disable breakpoint</source>
         <translation>去除断点</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5983"/>
+        <location filename="../QScintilla/Editor.py" line="5982"/>
         <source>Code Coverage</source>
         <translation>代码覆盖率</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5983"/>
+        <location filename="../QScintilla/Editor.py" line="5982"/>
         <source>Please select a coverage file</source>
         <translation>请选择一个覆盖率文件</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6046"/>
+        <location filename="../QScintilla/Editor.py" line="6045"/>
         <source>Show Code Coverage Annotations</source>
         <translation>显示代码覆盖率注解</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6039"/>
+        <location filename="../QScintilla/Editor.py" line="6038"/>
         <source>All lines have been covered.</source>
         <translation>所有行均被已覆盖。</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6046"/>
+        <location filename="../QScintilla/Editor.py" line="6045"/>
         <source>There is no coverage file available.</source>
         <translation>没有有效的覆盖率文件。</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6163"/>
+        <location filename="../QScintilla/Editor.py" line="6162"/>
         <source>Profile Data</source>
         <translation>剖析数据</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6163"/>
+        <location filename="../QScintilla/Editor.py" line="6162"/>
         <source>Please select a profile file</source>
         <translation>请选择一个剖析文件</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6325"/>
+        <location filename="../QScintilla/Editor.py" line="6324"/>
         <source>Syntax Error</source>
         <translation>语法错误</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6325"/>
+        <location filename="../QScintilla/Editor.py" line="6324"/>
         <source>No syntax error message available.</source>
         <translation>语法错误消息无效。</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6714"/>
+        <location filename="../QScintilla/Editor.py" line="6713"/>
         <source>Macro Name</source>
         <translation>宏名称</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6714"/>
+        <location filename="../QScintilla/Editor.py" line="6713"/>
         <source>Select a macro name:</source>
         <translation>选择一个宏名称:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6742"/>
+        <location filename="../QScintilla/Editor.py" line="6741"/>
         <source>Load macro file</source>
         <translation>输入宏文件</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6785"/>
+        <location filename="../QScintilla/Editor.py" line="6784"/>
         <source>Macro files (*.macro)</source>
         <translation>宏文件 (*.macro)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6765"/>
+        <location filename="../QScintilla/Editor.py" line="6764"/>
         <source>Error loading macro</source>
         <translation>载入宏文件出错</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6785"/>
+        <location filename="../QScintilla/Editor.py" line="6784"/>
         <source>Save macro file</source>
         <translation>保存宏文件</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6802"/>
+        <location filename="../QScintilla/Editor.py" line="6801"/>
         <source>Save macro</source>
         <translation>保存宏</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6818"/>
+        <location filename="../QScintilla/Editor.py" line="6817"/>
         <source>Error saving macro</source>
         <translation>保存宏出错</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6831"/>
+        <location filename="../QScintilla/Editor.py" line="6830"/>
         <source>Start Macro Recording</source>
         <translation>开始宏录制</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6831"/>
+        <location filename="../QScintilla/Editor.py" line="6830"/>
         <source>Macro recording is already active. Start new?</source>
         <translation>宏录制已激活。开始录制新宏?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6857"/>
+        <location filename="../QScintilla/Editor.py" line="6856"/>
         <source>Macro Recording</source>
         <translation>宏录制</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6857"/>
+        <location filename="../QScintilla/Editor.py" line="6856"/>
         <source>Enter name of the macro:</source>
         <translation>输入宏名称:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6997"/>
+        <location filename="../QScintilla/Editor.py" line="6996"/>
         <source>File changed</source>
         <translation>文件已改变</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7308"/>
+        <location filename="../QScintilla/Editor.py" line="7307"/>
         <source>Drop Error</source>
         <translation>降落误差</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7329"/>
+        <location filename="../QScintilla/Editor.py" line="7328"/>
         <source>Resources</source>
         <translation>资源</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7331"/>
+        <location filename="../QScintilla/Editor.py" line="7330"/>
         <source>Add file...</source>
         <translation>添加文件…</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7333"/>
+        <location filename="../QScintilla/Editor.py" line="7332"/>
         <source>Add files...</source>
         <translation>添加文件…</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7335"/>
+        <location filename="../QScintilla/Editor.py" line="7334"/>
         <source>Add aliased file...</source>
         <translation>添加别名文件…</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7338"/>
+        <location filename="../QScintilla/Editor.py" line="7337"/>
         <source>Add localized resource...</source>
         <translation>添加本地资源…</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7342"/>
+        <location filename="../QScintilla/Editor.py" line="7341"/>
         <source>Add resource frame</source>
         <translation>添加资源结构</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7361"/>
+        <location filename="../QScintilla/Editor.py" line="7360"/>
         <source>Add file resource</source>
         <translation>添加文件资源</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7377"/>
+        <location filename="../QScintilla/Editor.py" line="7376"/>
         <source>Add file resources</source>
         <translation>添加多个文件资源</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7404"/>
+        <location filename="../QScintilla/Editor.py" line="7403"/>
         <source>Add aliased file resource</source>
         <translation>添加别名文件资源</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7470"/>
+        <location filename="../QScintilla/Editor.py" line="7469"/>
         <source>Package Diagram</source>
         <translation>程序包图</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7470"/>
+        <location filename="../QScintilla/Editor.py" line="7469"/>
         <source>Include class attributes?</source>
         <translation>包含类属性?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7492"/>
+        <location filename="../QScintilla/Editor.py" line="7491"/>
         <source>Imports Diagram</source>
         <translation>引用图</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7492"/>
+        <location filename="../QScintilla/Editor.py" line="7491"/>
         <source>Include imports from external modules?</source>
         <translation>从外部模块包含引用?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7506"/>
+        <location filename="../QScintilla/Editor.py" line="7505"/>
         <source>Application Diagram</source>
         <translation>应用程序图</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7506"/>
+        <location filename="../QScintilla/Editor.py" line="7505"/>
         <source>Include module names?</source>
         <translation>包含模块名?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7838"/>
+        <location filename="../QScintilla/Editor.py" line="7837"/>
         <source>Add to dictionary</source>
         <translation>添加到文件夹</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7840"/>
+        <location filename="../QScintilla/Editor.py" line="7839"/>
         <source>Ignore All</source>
         <translation>全部忽略</translation>
     </message>
@@ -11897,32 +11897,32 @@
         <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="6756"/>
+        <location filename="../QScintilla/Editor.py" line="6755"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6765"/>
+        <location filename="../QScintilla/Editor.py" line="6764"/>
         <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; is corrupt.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6818"/>
+        <location filename="../QScintilla/Editor.py" line="6817"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7167"/>
+        <location filename="../QScintilla/Editor.py" line="7166"/>
         <source>{0} (ro)</source>
         <translation>{0}(只读)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7308"/>
+        <location filename="../QScintilla/Editor.py" line="7307"/>
         <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="7404"/>
+        <location filename="../QScintilla/Editor.py" line="7403"/>
         <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11952,22 +11952,22 @@
         <translation>&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 已经存在。是否覆盖?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6802"/>
+        <location filename="../QScintilla/Editor.py" line="6801"/>
         <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="6602"/>
+        <location filename="../QScintilla/Editor.py" line="6601"/>
         <source>Warning: {0}</source>
         <translation>警告:{0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6609"/>
+        <location filename="../QScintilla/Editor.py" line="6608"/>
         <source>Error: {0}</source>
         <translation>错误:{0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6993"/>
+        <location filename="../QScintilla/Editor.py" line="6992"/>
         <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>
@@ -11992,27 +11992,27 @@
         <translation>上一个更改</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8256"/>
+        <location filename="../QScintilla/Editor.py" line="8255"/>
         <source>Sort Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8256"/>
+        <location filename="../QScintilla/Editor.py" line="8255"/>
         <source>The selection contains illegal data for a numerical sort.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6537"/>
+        <location filename="../QScintilla/Editor.py" line="6536"/>
         <source>Warning</source>
         <translation>警告</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6537"/>
+        <location filename="../QScintilla/Editor.py" line="6536"/>
         <source>No warning messages available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6599"/>
+        <location filename="../QScintilla/Editor.py" line="6598"/>
         <source>Style: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -12037,7 +12037,7 @@
         <translation>使用指定编码重新打开</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6987"/>
+        <location filename="../QScintilla/Editor.py" line="6986"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric6. Reread it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -12052,32 +12052,32 @@
         <translation>补全</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4897"/>
+        <location filename="../QScintilla/Editor.py" line="4896"/>
         <source>Auto-Completion Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4897"/>
+        <location filename="../QScintilla/Editor.py" line="4896"/>
         <source>The completion list provider &apos;{0}&apos; was already registered. Ignoring duplicate request.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5176"/>
+        <location filename="../QScintilla/Editor.py" line="5175"/>
         <source>Call-Tips Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5176"/>
+        <location filename="../QScintilla/Editor.py" line="5175"/>
         <source>The call-tips provider &apos;{0}&apos; was already registered. Ignoring duplicate request.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8345"/>
+        <location filename="../QScintilla/Editor.py" line="8344"/>
         <source>Register Mouse Click Handler</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8345"/>
+        <location filename="../QScintilla/Editor.py" line="8344"/>
         <source>A mouse click handler for &quot;{0}&quot; was already registered by &quot;{1}&quot;. Aborting request by &quot;{2}&quot;...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -12107,12 +12107,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8466"/>
+        <location filename="../QScintilla/Editor.py" line="8465"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8466"/>
+        <location filename="../QScintilla/Editor.py" line="8465"/>
         <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"></translation>
     </message>
@@ -13926,27 +13926,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="681"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="685"/>
         <source>Delete Sub-Style</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="681"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="685"/>
         <source>&lt;p&gt;Shall the sub-style &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="721"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="725"/>
         <source>{0} - Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="749"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="753"/>
         <source>Reset Sub-Styles to Default</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="749"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="753"/>
         <source>&lt;p&gt;Do you really want to reset all defined sub-styles of &lt;b&gt;{0}&lt;/b&gt; to the default values?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -17793,7 +17793,7 @@
 <context>
     <name>EricdocPlugin</name>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="102"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="81"/>
         <source>Qt Help Tools</source>
         <translation>Qt 帮助工具</translation>
     </message>
@@ -17803,22 +17803,22 @@
         <translation>Eric6 文档生成器</translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="145"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="124"/>
         <source>Generate documentation (eric6_doc)</source>
         <translation>生成文档(eric6_doc)</translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="145"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="124"/>
         <source>Generate &amp;documentation (eric6_doc)</source>
         <translation>生成文档(&amp;D)(eric6_doc)</translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="149"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="128"/>
         <source>Generate API documentation using eric6_doc</source>
         <translation>使用 eric6_doc 生成 API 文档</translation>
     </message>
     <message>
-        <location filename="../Plugins/PluginEricdoc.py" line="151"/>
+        <location filename="../Plugins/PluginEricdoc.py" line="130"/>
         <source>&lt;b&gt;Generate documentation&lt;/b&gt;&lt;p&gt;Generate API documentation using eric6_doc.&lt;/p&gt;</source>
         <translation>&lt;b&gt;生成文档&lt;/b&gt;&lt;p&gt;使用 eric6_doc 生成 API 文档。&lt;/p&gt;</translation>
     </message>
@@ -26706,27 +26706,27 @@
 <context>
     <name>Globals</name>
     <message>
-        <location filename="../Globals/__init__.py" line="452"/>
+        <location filename="../Globals/__init__.py" line="421"/>
         <source>{0:4.2f} Bytes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Globals/__init__.py" line="456"/>
+        <location filename="../Globals/__init__.py" line="425"/>
         <source>{0:4.2f} KiB</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Globals/__init__.py" line="460"/>
+        <location filename="../Globals/__init__.py" line="429"/>
         <source>{0:4.2f} MiB</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Globals/__init__.py" line="464"/>
+        <location filename="../Globals/__init__.py" line="433"/>
         <source>{0:4.2f} GiB</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Globals/__init__.py" line="468"/>
+        <location filename="../Globals/__init__.py" line="437"/>
         <source>{0:4.2f} TiB</source>
         <translation type="unfinished"></translation>
     </message>
@@ -26736,11 +26736,16 @@
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GlosbeEngine.py" line="85"/>
         <source>Invalid response received</source>
-        <translation type="unfinished">收到了无效的响应</translation>
+        <translation type="obsolete">收到了无效的响应</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GlosbeEngine.py" line="85"/>
+        <source>Glosbe: Invalid response received</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GlosbeEngine.py" line="99"/>
-        <source>No translation found.</source>
+        <source>Glosbe: No translation found.</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -26749,34 +26754,44 @@
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV1Engine.py" line="98"/>
         <source>Invalid response received</source>
-        <translation type="unfinished">收到了无效的响应</translation>
+        <translation type="obsolete">收到了无效的响应</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV1Engine.py" line="98"/>
+        <source>Google V1: Invalid response received</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV1Engine.py" line="135"/>
-        <source>No translation found.</source>
+        <source>Google V1: No translation found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV1Engine.py" line="165"/>
-        <source>Only texts up to {0} characters are allowed.</source>
+        <source>Google V1: Only texts up to {0} characters are allowed.</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
 <context>
     <name>GoogleV2Engine</name>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="72"/>
-        <source>A valid Google Translate key is required.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="83"/>
         <source>Invalid response received</source>
-        <translation type="unfinished">收到了无效的响应</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="89"/>
-        <source>No translation available.</source>
+        <translation type="obsolete">收到了无效的响应</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="72"/>
+        <source>Google V2: A valid Google Translate key is required.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="84"/>
+        <source>Google V2: Invalid response received</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/GoogleV2Engine.py" line="90"/>
+        <source>Google V2: No translation available.</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -39814,34 +39829,39 @@
 <context>
     <name>IbmWatsonEngine</name>
     <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="147"/>
+        <source>Invalid response received</source>
+        <translation type="obsolete">收到了无效的响应</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
+        <source>Error Getting Available Translations</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
+        <source>IBM Watson: No translation available.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="183"/>
-        <source>A valid IBM Watson Language Translator key is required.</source>
+        <source>IBM Watson: A valid Language Translator key is required.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="192"/>
-        <source>A valid IBM Watson Language Translator URL is required.</source>
+        <source>IBM Watson: A valid Language Translator URL is required.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="244"/>
-        <source>Invalid response received</source>
-        <translation type="unfinished">收到了无效的响应</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
-        <source>No translation available.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
-        <source>Error Getting Available Translations</source>
+        <source>IBM Watson: Invalid response received</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="232"/>
-        <source>The server sent an error indication.
-Error: {0}</source>
+        <source>IBM Watson: The server sent an error indication.
+ Error: {0}</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -45744,477 +45764,477 @@
 <context>
     <name>Lexers</name>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="86"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="84"/>
         <source>Bash</source>
         <translation>Bash</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="86"/>
+        <source>Batch</source>
+        <translation>批处理</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="88"/>
-        <source>Batch</source>
-        <translation>批处理</translation>
+        <source>C/C++</source>
+        <translation>C/C++</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="90"/>
-        <source>C/C++</source>
-        <translation>C/C++</translation>
+        <source>C#</source>
+        <translation>C#</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="92"/>
-        <source>C#</source>
-        <translation>C#</translation>
+        <source>CMake</source>
+        <translation>CMake</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="94"/>
-        <source>CMake</source>
-        <translation>CMake</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="96"/>
         <source>CSS</source>
         <translation>CSS</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="98"/>
+        <source>D</source>
+        <translation>D</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="100"/>
-        <source>D</source>
-        <translation>D</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="102"/>
         <source>Diff</source>
         <translation>差异</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="106"/>
+        <source>HTML/PHP/XML</source>
+        <translation>HTML/PHP/XML</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="108"/>
-        <source>HTML/PHP/XML</source>
-        <translation>HTML/PHP/XML</translation>
+        <source>IDL</source>
+        <translation>IDL</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="110"/>
-        <source>IDL</source>
-        <translation>IDL</translation>
+        <source>Java</source>
+        <translation>Java</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="112"/>
-        <source>Java</source>
-        <translation>Java</translation>
+        <source>JavaScript</source>
+        <translation>JavaScript</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="114"/>
-        <source>JavaScript</source>
-        <translation>JavaScript</translation>
+        <source>Lua</source>
+        <translation>Lua</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="116"/>
-        <source>Lua</source>
-        <translation>Lua</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="118"/>
         <source>Makefile</source>
         <translation>Makefile</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="126"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="124"/>
         <source>Perl</source>
         <translation>Perl</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="128"/>
+        <source>Povray</source>
+        <translation>Povray</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="130"/>
-        <source>Povray</source>
-        <translation>Povray</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="132"/>
         <source>Properties</source>
         <translation>属性</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="141"/>
+        <source>Ruby</source>
+        <translation>Ruby</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="143"/>
-        <source>Ruby</source>
-        <translation>Ruby</translation>
+        <source>SQL</source>
+        <translation>SQL</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="147"/>
+        <source>TeX</source>
+        <translation>TeX</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="149"/>
+        <source>VHDL</source>
+        <translation>VHDL</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="145"/>
-        <source>SQL</source>
-        <translation>SQL</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="149"/>
-        <source>TeX</source>
-        <translation>TeX</translation>
+        <source>TCL</source>
+        <translation>TCL</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="102"/>
+        <source>Fortran</source>
+        <translation>Fortran</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="104"/>
+        <source>Fortran77</source>
+        <translation>Fortran77</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="122"/>
+        <source>Pascal</source>
+        <translation>Pascal</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="126"/>
+        <source>PostScript</source>
+        <translation>PostScript</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="151"/>
-        <source>VHDL</source>
-        <translation>VHDL</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="147"/>
-        <source>TCL</source>
-        <translation>TCL</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="104"/>
-        <source>Fortran</source>
-        <translation>Fortran</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="106"/>
-        <source>Fortran77</source>
-        <translation>Fortran77</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="124"/>
-        <source>Pascal</source>
-        <translation>Pascal</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="128"/>
-        <source>PostScript</source>
-        <translation>PostScript</translation>
+        <source>XML</source>
+        <translation>XML</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="153"/>
-        <source>XML</source>
-        <translation>XML</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="155"/>
         <source>YAML</source>
         <translation>YAML</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="183"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="173"/>
         <source>Pygments</source>
         <translation>Pygments</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="575"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="562"/>
         <source>Quixote Template Files (*.ptl)</source>
         <translation>Quixote 模板文件 (*.ptl)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="578"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="565"/>
         <source>Ruby Files (*.rb)</source>
         <translation>Ruby 文件 (*.rb)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="581"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="568"/>
         <source>IDL Files (*.idl)</source>
         <translation>IDL 文件 (*.idl)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="408"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="398"/>
         <source>C Files (*.h *.c)</source>
         <translation>C 文件 (*.h *.c)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="411"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="401"/>
         <source>C++ Files (*.h *.hpp *.hh *.cxx *.cpp *.cc)</source>
         <translation>C++ 文件 (*.h *.hpp *.hh *.cxx *.cpp *.cc)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="596"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="583"/>
         <source>C# Files (*.cs)</source>
         <translation>C# 文件 (*.cs)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="417"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="407"/>
         <source>HTML Files (*.html *.htm *.asp *.shtml)</source>
         <translation>HTML 文件 (*.html *.htm *.asp *.shtml)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="608"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="595"/>
         <source>CSS Files (*.css)</source>
         <translation>CSS 文件 (*.css)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="611"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="598"/>
         <source>QSS Files (*.qss)</source>
         <translation>QSS 文件 (*.qss)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="426"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="416"/>
         <source>PHP Files (*.php *.php3 *.php4 *.php5 *.phtml)</source>
         <translation>PHP 文件 (*.php *.php3 *.php4 *.php5 *.phtml)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="429"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="419"/>
         <source>XML Files (*.xml *.xsl *.xslt *.dtd *.svg *.xul *.xsd)</source>
         <translation>XML 文件 (*.xml *.xsl *.xslt *.dtd *.svg *.xul *.xsd)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="623"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="610"/>
         <source>Qt Resource Files (*.qrc)</source>
         <translation>Qt 资源文件 (*.qrc)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="435"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="425"/>
         <source>D Files (*.d *.di)</source>
         <translation>D 文件 (*.d *.di)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="632"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="619"/>
         <source>Java Files (*.java)</source>
         <translation>Java 文件 (*.java)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="635"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="622"/>
         <source>JavaScript Files (*.js)</source>
         <translation>JavaScript 文件 (*.js)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="638"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="625"/>
         <source>SQL Files (*.sql)</source>
         <translation>SQL 文件 (*.sql)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="641"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="628"/>
         <source>Docbook Files (*.docbook)</source>
         <translation>Docbook 文件 (*.docbook)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="450"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="440"/>
         <source>Perl Files (*.pl *.pm *.ph)</source>
         <translation>Perl 文件 (*.pl *.pm *.ph)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="650"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="637"/>
         <source>Lua Files (*.lua)</source>
         <translation>Lua 文件 (*.lua)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="456"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="446"/>
         <source>Tex Files (*.tex *.sty *.aux *.toc *.idx)</source>
         <translation>Tex 文件 (*.tex *.sty *.aux *.toc *.idx)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="653"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="640"/>
         <source>Shell Files (*.sh)</source>
         <translation>命令行文件 (*.sh)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="462"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="452"/>
         <source>Batch Files (*.bat *.cmd)</source>
         <translation>批处理文件 (*.bat *.cmd)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="465"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="455"/>
         <source>Diff Files (*.diff *.patch)</source>
         <translation>差异文件 (*.diff *.patch)</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="458"/>
+        <source>Makefiles (*makefile Makefile *.mak)</source>
+        <translation type="unfinished">Makefiles (*.mak)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="461"/>
+        <source>Properties Files (*.properties *.ini *.inf *.reg *.cfg *.cnf *.rc)</source>
+        <translation>属性文件 (*.properties *.ini *.inf *.reg *.cfg *.cnf *.rc)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="664"/>
+        <source>Povray Files (*.pov)</source>
+        <translation>Povray 文件 (*.pov)</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="468"/>
-        <source>Makefiles (*makefile Makefile *.mak)</source>
-        <translation type="unfinished">Makefiles (*.mak)</translation>
+        <source>CMake Files (CMakeLists.txt *.cmake *.ctest)</source>
+        <translation>CMake 文件 (CMakeLists.txt *.cmake *.ctest)</translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="471"/>
-        <source>Properties Files (*.properties *.ini *.inf *.reg *.cfg *.cnf *.rc)</source>
-        <translation>属性文件 (*.properties *.ini *.inf *.reg *.cfg *.cnf *.rc)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="677"/>
-        <source>Povray Files (*.pov)</source>
-        <translation>Povray 文件 (*.pov)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="478"/>
-        <source>CMake Files (CMakeLists.txt *.cmake *.ctest)</source>
-        <translation>CMake 文件 (CMakeLists.txt *.cmake *.ctest)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="481"/>
         <source>VHDL Files (*.vhd *.vhdl)</source>
         <translation>VHDL 文件 (*.vhd *.vhdl)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="484"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="474"/>
         <source>TCL/Tk Files (*.tcl *.tk)</source>
         <translation>TCL/Tk 文件 (*.vhd *.vhdl)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="487"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="477"/>
         <source>Fortran Files (*.f90 *.f95 *.f2k)</source>
         <translation>Fortran 文件 (*.f90 *.f95 *.f2k)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="490"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="480"/>
         <source>Fortran77 Files (*.f *.for)</source>
         <translation>Fortran77 文件 (*.f *.for)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="493"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="483"/>
         <source>Pascal Files (*.dpr *.dpk *.pas *.dfm *.inc *.pp)</source>
         <translation>Pascal 文件 (*.dpr *.dpk *.pas *.dfm *.inc *.pp)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="704"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="691"/>
         <source>PostScript Files (*.ps)</source>
         <translation>PostScript 文件 (*.ps)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="499"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="489"/>
         <source>YAML Files (*.yaml *.yml)</source>
         <translation>YAML 文件 (*.yaml *.yml)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="746"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="730"/>
         <source>All Files (*)</source>
         <translation>所有文件 (*)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="587"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="574"/>
         <source>C Files (*.c)</source>
         <translation>C 文件 (*.c)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="590"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="577"/>
         <source>C++ Files (*.cpp)</source>
         <translation>C++ 文件 (*.cpp)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="593"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="580"/>
         <source>C++/C Header Files (*.h)</source>
         <translation>C++/C 头文件 (*.h)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="599"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="586"/>
         <source>HTML Files (*.html)</source>
         <translation>HTML 文件 (*.html)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="602"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="589"/>
         <source>PHP Files (*.php)</source>
         <translation>PHP 文件 (*.php)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="605"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="592"/>
         <source>ASP Files (*.asp)</source>
         <translation>ASP 文件 (*.asp)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="614"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="601"/>
         <source>XML Files (*.xml)</source>
         <translation>XML 文件 (*.xml)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="617"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="604"/>
         <source>XSL Files (*.xsl)</source>
         <translation>XSL 文件 (*.xsl)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="620"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="607"/>
         <source>DTD Files (*.dtd)</source>
         <translation>DTD 文件 (*.dtd)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="626"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="613"/>
         <source>D Files (*.d)</source>
         <translation>D 文件 (*.d)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="629"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="616"/>
         <source>D Interface Files (*.di)</source>
         <translation>D 界面文件 (*.di)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="644"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="631"/>
         <source>Perl Files (*.pl)</source>
         <translation>Perl 文件 (*.pl)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="647"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="634"/>
         <source>Perl Module Files (*.pm)</source>
         <translation>Perl 模块文件 (*.pm)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="656"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="643"/>
         <source>Batch Files (*.bat)</source>
         <translation>批处理文件 (*.bat)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="659"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="646"/>
         <source>TeX Files (*.tex)</source>
         <translation>TeX 文件 (*.tex)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="662"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="649"/>
         <source>TeX Template Files (*.sty)</source>
         <translation>TeX 模板文件 (*.sty)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="665"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="652"/>
         <source>Diff Files (*.diff)</source>
         <translation>差异文件 (*.diff)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="668"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="655"/>
         <source>Make Files (*.mak)</source>
         <translation>Make 文件 (*.mak)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="671"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="658"/>
         <source>Properties Files (*.ini)</source>
         <translation>属性文件 (*.ini)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="674"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="661"/>
         <source>Configuration Files (*.cfg)</source>
         <translation>配置文件 (*.cfg)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="680"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="667"/>
         <source>CMake Files (CMakeLists.txt)</source>
         <translation>CMake 文件 (CMakeLists.txt)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="683"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="670"/>
         <source>CMake Macro Files (*.cmake)</source>
         <translation>CMake 宏文件 (*.cmake)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="686"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="673"/>
         <source>VHDL Files (*.vhd)</source>
         <translation>VHDL 文件 (*.vhd)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="689"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="676"/>
         <source>TCL Files (*.tcl)</source>
         <translation>TCL 文件 (*.tcl)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="692"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="679"/>
         <source>Tk Files (*.tk)</source>
         <translation>Tk 文件 (*.tk)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="695"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="682"/>
         <source>Fortran Files (*.f95)</source>
         <translation>Fortran 文件 (*.f95)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="698"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="685"/>
         <source>Fortran77 Files (*.f)</source>
         <translation>Fortran77 文件 (*.f)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="701"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="688"/>
         <source>Pascal Files (*.pas)</source>
         <translation>Pascal 文件 (*.pas)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="707"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="694"/>
         <source>YAML Files (*.yml)</source>
         <translation>YAML 文件 (*.yml)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="560"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="547"/>
         <source>Python3 Files (*.py)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="563"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="550"/>
         <source>Python3 GUI Files (*.pyw)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -46224,135 +46244,140 @@
         <translation type="obsolete">Python2</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="137"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="135"/>
         <source>Python3</source>
         <translation type="unfinished">Python3</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="118"/>
+        <source>Matlab</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="120"/>
-        <source>Matlab</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="122"/>
         <source>Octave</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="502"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="495"/>
         <source>Matlab Files (*.m *.m.matlab)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="710"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="700"/>
         <source>Matlab Files (*.m)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="713"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="703"/>
         <source>Octave Files (*.m.octave)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="505"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="498"/>
         <source>Octave Files (*.m *.m.octave)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="141"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="139"/>
         <source>QSS</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="155"/>
+        <source>Gettext</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="706"/>
+        <source>Gettext Files (*.po)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="157"/>
-        <source>Gettext</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="716"/>
-        <source>Gettext Files (*.po)</source>
+        <source>CoffeeScript</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="709"/>
+        <source>CoffeeScript Files (*.coffee)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Lexers/__init__.py" line="159"/>
-        <source>CoffeeScript</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="719"/>
-        <source>CoffeeScript Files (*.coffee)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="165"/>
         <source>JSON</source>
         <translation type="unfinished">JSON</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="725"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="712"/>
         <source>JSON Files (*.json)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="170"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="161"/>
         <source>Markdown</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="730"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="715"/>
         <source>Markdown Files (*.md)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="134"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="132"/>
         <source>Protocol (protobuf)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="584"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="571"/>
         <source>Protocol Files (*.proto)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="98"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="96"/>
         <source>Cython</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="393"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="383"/>
         <source>Cython Files (*.pyx *.pxd *.pxi)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="566"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="553"/>
         <source>Cython Files (*.pyx)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="569"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="556"/>
         <source>Cython Declaration Files (*.pxd)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="572"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="559"/>
         <source>Cython Include Files (*.pxi)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="139"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="137"/>
         <source>MicroPython</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="387"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="377"/>
         <source>Python Files (*.py *.py3)</source>
         <translation type="unfinished">Python 文件 (*.py *.py3)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Lexers/__init__.py" line="390"/>
+        <location filename="../QScintilla/Lexers/__init__.py" line="380"/>
         <source>Python GUI Files (*.pyw *.pyw3)</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../QScintilla/Lexers/__init__.py" line="697"/>
+        <source>TOML Files (*.toml)</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>LfConvertDataDialog</name>
@@ -48375,23 +48400,23 @@
 <context>
     <name>MicrosoftEngine</name>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="187"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="190"/>
         <source>You have not registered for the Microsoft Translation service.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="193"/>
-        <source>No valid access token available.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="170"/>
-        <source>No translation available.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="205"/>
-        <source>No Text-to-Speech for the selected language available.</source>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="196"/>
+        <source>MS Translator: No valid access token available.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="173"/>
+        <source>MS Translator: No translation available.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MicrosoftEngine.py" line="211"/>
+        <source>MS Translator: No Text-to-Speech for the selected language available.</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -48782,208 +48807,208 @@
         <translation>&lt;b&gt;清除&lt;/b&gt;&lt;p&gt;删除当前编辑器中的所有文本。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2176"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2175"/>
         <source>About</source>
         <translation>关于</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2176"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2175"/>
         <source>&amp;About</source>
         <translation>关于(&amp;A)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2180"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2179"/>
         <source>Display information about this software</source>
         <translation>显示软件信息</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2182"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2181"/>
         <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="2188"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2187"/>
         <source>About Qt</source>
         <translation>关于 Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2188"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2187"/>
         <source>About &amp;Qt</source>
         <translation>关于 &amp;Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2192"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2191"/>
         <source>Display information about the Qt toolkit</source>
         <translation>显示 Qt 工具包信息</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2194"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2193"/>
         <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="2201"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2200"/>
         <source>What&apos;s This?</source>
         <translation>这是什么?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2201"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2200"/>
         <source>&amp;What&apos;s This?</source>
         <translation>这是什么(&amp;W)?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2201"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2200"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation>Shift+F1</translation>
     </message>
     <message>
+        <location filename="../QScintilla/MiniEditor.py" line="2206"/>
+        <source>Context sensitive help</source>
+        <translation>背景帮助</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/MiniEditor.py" line="2207"/>
-        <source>Context sensitive help</source>
-        <translation>背景帮助</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2208"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation>&lt;b&gt;显示背景帮助&lt;/b&gt;&lt;p&gt;在“这是什么?”模式中,鼠标光标显示为带问号的箭头,通过点击界面元素你可以获得“在做什么”和“怎样使用”的简短描述。使用标题栏中的上下文帮助按钮可以获得此功能。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2224"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2223"/>
         <source>&amp;File</source>
         <translation>文件(&amp;F)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2236"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2235"/>
         <source>&amp;Edit</source>
         <translation>编辑(&amp;E)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2256"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2255"/>
         <source>&amp;Help</source>
         <translation>帮助(&amp;H)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2268"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2267"/>
         <source>File</source>
         <translation>文件</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2281"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2280"/>
         <source>Edit</source>
         <translation>编辑</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2291"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2290"/>
         <source>Find</source>
         <translation>查找</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2298"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2297"/>
         <source>Help</source>
         <translation>帮助</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2311"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2310"/>
         <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="2318"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2317"/>
         <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="2325"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2324"/>
         <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="2330"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2329"/>
         <source>Ready</source>
         <translation>就绪</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2415"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2414"/>
         <source>File loaded</source>
         <translation>文件已载入</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2504"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2503"/>
         <source>File saved</source>
         <translation>文件已保存</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2851"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2849"/>
         <source>Untitled</source>
         <translation>未命名</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2533"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2532"/>
         <source>Mini Editor</source>
         <translation>迷你编辑器</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2814"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2812"/>
         <source>Printing...</source>
         <translation>打印中…</translation>
     </message>
     <message>
+        <location filename="../QScintilla/MiniEditor.py" line="2830"/>
+        <source>Printing completed</source>
+        <translation>打印已完成</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/MiniEditor.py" line="2832"/>
-        <source>Printing completed</source>
-        <translation>打印已完成</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2834"/>
         <source>Error while printing</source>
         <translation>打印时出错</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2837"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2835"/>
         <source>Printing aborted</source>
         <translation>打印失败</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2892"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2890"/>
         <source>Select all</source>
         <translation>全选</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2893"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2891"/>
         <source>Deselect all</source>
         <translation>全部取消选择</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2907"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2905"/>
         <source>Languages</source>
         <translation>语言</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2910"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2908"/>
         <source>No Language</source>
         <translation>无语言</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2934"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2932"/>
         <source>Guessed</source>
         <translation>猜测</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2956"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2954"/>
         <source>Alternatives</source>
         <translation>备选</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2972"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2970"/>
         <source>Pygments Lexer</source>
         <translation>Pygments 词法分析器</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2972"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2970"/>
         <source>Select the Pygments lexer to apply.</source>
         <translation>选择要应用的 Pygments 词法分析器。</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2386"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2385"/>
         <source>Open File</source>
         <translation>打开文件</translation>
     </message>
@@ -48998,32 +49023,32 @@
         <translation>列:{0:5}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2386"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2385"/>
         <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="2496"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2495"/>
         <source>Save File</source>
         <translation>保存文件</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2496"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2495"/>
         <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="2533"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2532"/>
         <source>{0}[*] - {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2952"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2950"/>
         <source>Alternatives ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2357"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2356"/>
         <source>The document has unsaved changes.</source>
         <translation>文档有未保存的更改。</translation>
     </message>
@@ -49038,7 +49063,7 @@
         <translation>Eric6 迷你编辑器是一个基于 QScintilla 的编辑器组件。它可用于简单的、不需要完整编辑器复杂功能的编辑任务。</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2357"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2356"/>
         <source>eric6 Mini Editor</source>
         <translation>eric6 迷你编辑器</translation>
     </message>
@@ -49063,17 +49088,17 @@
         <translation>&lt;b&gt;保存副本&lt;/b&gt;保存当前编辑器窗口内容的一个副本。文件可以在文件选择对话框中输入。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3490"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3488"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3490"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3488"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2516"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2515"/>
         <source>[*] - {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -49081,463 +49106,463 @@
 <context>
     <name>MiscellaneousChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="492"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="490"/>
         <source>coding magic comment not found</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="495"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="493"/>
         <source>unknown encoding ({0}) found in coding magic comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="498"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="496"/>
         <source>copyright notice not present</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="501"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="499"/>
         <source>copyright notice contains invalid author</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="702"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="700"/>
         <source>found {0} formatter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="705"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="703"/>
         <source>format string does contain unindexed parameters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="708"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="706"/>
         <source>docstring does contain unindexed parameters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="711"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="709"/>
         <source>other string does contain unindexed parameters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="714"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="712"/>
         <source>format call uses too large index ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="717"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="715"/>
         <source>format call uses missing keyword ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="720"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="718"/>
         <source>format call uses keyword arguments but no named entries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="723"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="721"/>
         <source>format call uses variable arguments but no numbered entries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="726"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="724"/>
         <source>format call uses implicit and explicit indexes together</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="729"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="727"/>
         <source>format call provides unused index ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="732"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="730"/>
         <source>format call provides unused keyword ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="751"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="749"/>
         <source>expected these __future__ imports: {0}; but only got: {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="754"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="752"/>
         <source>expected these __future__ imports: {0}; but got none</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="761"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="759"/>
         <source>print statement found</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="764"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="762"/>
         <source>one element tuple found</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="800"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="798"/>
         <source>{0}: {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="504"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="502"/>
         <source>&quot;{0}&quot; is a Python builtin and is being shadowed; consider renaming the variable</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="508"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="506"/>
         <source>&quot;{0}&quot; is used as an argument and thus shadows a Python builtin; consider renaming the argument</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="512"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="510"/>
         <source>unnecessary generator - rewrite as a list comprehension</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="515"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="513"/>
         <source>unnecessary generator - rewrite as a set comprehension</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="518"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="516"/>
         <source>unnecessary generator - rewrite as a dict comprehension</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="521"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="519"/>
         <source>unnecessary list comprehension - rewrite as a set comprehension</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="524"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="522"/>
         <source>unnecessary list comprehension - rewrite as a dict comprehension</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="530"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="528"/>
         <source>unnecessary list comprehension - &quot;{0}&quot; can take a generator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="770"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="768"/>
         <source>mutable default argument of type {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="555"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="553"/>
         <source>sort keys - &apos;{0}&apos; should be before &apos;{1}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="738"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="736"/>
         <source>logging statement uses &apos;%&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="744"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="742"/>
         <source>logging statement uses f-string</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="747"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="745"/>
         <source>logging statement uses &apos;warn&apos; instead of &apos;warning&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="735"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="733"/>
         <source>logging statement uses string.format()</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="741"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="739"/>
         <source>logging statement uses &apos;+&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="757"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="755"/>
         <source>gettext import with alias _ found: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="648"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="646"/>
         <source>Python does not support the unary prefix increment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="657"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="655"/>
         <source>&apos;sys.maxint&apos; is not defined in Python 3 - use &apos;sys.maxsize&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="660"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="658"/>
         <source>&apos;BaseException.message&apos; has been deprecated as of Python 2.6 and is removed in Python 3 - use &apos;str(e)&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="664"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="662"/>
         <source>assigning to &apos;os.environ&apos; does not clear the environment - use &apos;os.environ.clear()&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="688"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="686"/>
         <source>Python 3 does not include &apos;.iter*&apos; methods on dictionaries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="691"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="689"/>
         <source>Python 3 does not include &apos;.view*&apos; methods on dictionaries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="694"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="692"/>
         <source>&apos;.next()&apos; does not exist in Python 3</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="697"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="695"/>
         <source>&apos;__metaclass__&apos; does nothing on Python 3 - use &apos;class MyClass(BaseClass, metaclass=...)&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="773"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="771"/>
         <source>mutable default argument of function call &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="651"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="649"/>
         <source>using .strip() with multi-character strings is misleading</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="678"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="676"/>
         <source>using &apos;hasattr(x, &quot;__call__&quot;)&apos; to test if &apos;x&apos; is callable is unreliable</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="668"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="666"/>
         <source>loop control variable {0} not used within the loop body - start the name with an underscore</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="776"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="774"/>
         <source>None should not be added at any return if function has no return value except None</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="780"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="778"/>
         <source>an explicit value at every return should be added if function has a return value except None</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="784"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="782"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="788"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="786"/>
         <source>a value should not be assigned to a variable if it will be used as a return value only</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="654"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="652"/>
         <source>do not call assert False since python -O removes these calls</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="672"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="670"/>
         <source>unncessary f-string</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="675"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="673"/>
         <source>cannot use &apos;self.__class__&apos; as first argument of &apos;super()&apos; call</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="682"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="680"/>
         <source>do not call getattr with a constant attribute value</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="685"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="683"/>
         <source>do not call setattr with a constant attribute value</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="796"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="794"/>
         <source>commented code lines should be removed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="792"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="790"/>
         <source>prefer implied line continuation inside parentheses, brackets and braces as opposed to a backslash</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="559"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="557"/>
         <source>use of &apos;datetime.datetime()&apos; without &apos;tzinfo&apos; argument should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="563"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="561"/>
         <source>use of &apos;datetime.datetime.today()&apos; should be avoided.
 Use &apos;datetime.datetime.now(tz=)&apos; instead.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="567"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="565"/>
         <source>use of &apos;datetime.datetime.utcnow()&apos; should be avoided.
 Use &apos;datetime.datetime.now(tz=)&apos; instead.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="571"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="569"/>
         <source>use of &apos;datetime.datetime.utcfromtimestamp()&apos; should be avoided.
 Use &apos;datetime.datetime.fromtimestamp(, tz=)&apos; instead.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="575"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="573"/>
         <source>use of &apos;datetime.datetime.now()&apos; without &apos;tz&apos; argument should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="579"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="577"/>
         <source>use of &apos;datetime.datetime.fromtimestamp()&apos; without &apos;tz&apos; argument should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="583"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="581"/>
         <source>use of &apos;datetime.datetime.strptime()&apos; should be followed by &apos;.replace(tzinfo=)&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="590"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="588"/>
         <source>use of &apos;datetime.date()&apos; should be avoided.
 Use &apos;datetime.datetime(, tzinfo=).date()&apos; instead.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="594"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="592"/>
         <source>use of &apos;datetime.date.today()&apos; should be avoided.
 Use &apos;datetime.datetime.now(tz=).date()&apos; instead.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="598"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="596"/>
         <source>use of &apos;datetime.date.fromtimestamp()&apos; should be avoided.
 Use &apos;datetime.datetime.fromtimestamp(tz=).date()&apos; instead.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="608"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="606"/>
         <source>use of &apos;datetime.time()&apos; without &apos;tzinfo&apos; argument should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="587"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="585"/>
         <source>use of &apos;datetime.datetime.fromordinal()&apos; should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="602"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="600"/>
         <source>use of &apos;datetime.date.fromordinal()&apos; should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="605"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="603"/>
         <source>use of &apos;datetime.date.fromisoformat()&apos; should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="527"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="525"/>
         <source>unnecessary {0} call - rewrite as a literal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="533"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="531"/>
         <source>unnecessary {0} literal - rewrite as a {1} literal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="536"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="534"/>
         <source>unnecessary {0} passed to tuple() - rewrite as a {1} literal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="539"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="537"/>
         <source>unnecessary {0} passed to list() - rewrite as a {1} literal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="542"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="540"/>
         <source>unnecessary list call - remove the outer call to list()</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="545"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="543"/>
         <source>unnecessary list comprehension - &quot;in&quot; can take a generator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="548"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="546"/>
         <source>unnecessary {0} passed to tuple() - remove the outer call to {1}()</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="551"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="549"/>
         <source>unnecessary {0} passed to list() - remove the outer call to {1}()</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="613"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="611"/>
         <source>&apos;sys.version[:3]&apos; referenced (Python 3.10), use &apos;sys.version_info&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="616"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="614"/>
         <source>&apos;sys.version[2]&apos; referenced (Python 3.10), use &apos;sys.version_info&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="619"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="617"/>
         <source>&apos;sys.version&apos; compared to string (Python 3.10), use &apos;sys.version_info&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="623"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="621"/>
         <source>&apos;sys.version_info[0] == 3&apos; referenced (Python 4), use &apos;&gt;=&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="626"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="624"/>
         <source>&apos;six.PY3&apos; referenced (Python 4), use &apos;not six.PY2&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="629"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="627"/>
         <source>&apos;sys.version_info[1]&apos; compared to integer (Python 4), compare &apos;sys.version_info&apos; to tuple</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="633"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="631"/>
         <source>&apos;sys.version_info.minor&apos; compared to integer (Python 4), compare &apos;sys.version_info&apos; to tuple</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="637"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="635"/>
         <source>&apos;sys.version[0]&apos; referenced (Python 10), use &apos;sys.version_info&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="640"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="638"/>
         <source>&apos;sys.version&apos; compared to string (Python 10), use &apos;sys.version_info&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="644"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="642"/>
         <source>&apos;sys.version[:1]&apos; referenced (Python 10), use &apos;sys.version_info&apos;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -49980,85 +50005,90 @@
 <context>
     <name>MyMemoryEngine</name>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MyMemoryEngine.py" line="72"/>
-        <source>Only texts up to {0} characters are allowed.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MyMemoryEngine.py" line="95"/>
         <source>Invalid response received</source>
-        <translation>收到了无效的响应</translation>
+        <translation type="obsolete">收到了无效的响应</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MyMemoryEngine.py" line="72"/>
+        <source>MyMemory: Only texts up to {0} characters are allowed.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/MyMemoryEngine.py" line="99"/>
+        <source>MyMemory: Invalid response received</source>
+        <translation type="unfinished"></translation>
     </message>
 </context>
 <context>
     <name>NamingStyleChecker</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="432"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="430"/>
         <source>class names should use CapWords convention</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="435"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="433"/>
         <source>function name should be lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="438"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="436"/>
         <source>argument name should be lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="441"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="439"/>
         <source>first argument of a class method should be named &apos;cls&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="444"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="442"/>
         <source>first argument of a method should be named &apos;self&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="447"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="445"/>
         <source>first argument of a static method should not be named &apos;self&apos; or &apos;cls</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="451"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="449"/>
         <source>module names should be lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="454"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="452"/>
         <source>package names should be lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="457"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="455"/>
         <source>constant imported as non constant</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="460"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="458"/>
         <source>lowercase imported as non lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="463"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="461"/>
         <source>camelcase imported as lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="466"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="464"/>
         <source>camelcase imported as constant</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="469"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="467"/>
         <source>variable in function should be lowercase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="472"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="470"/>
         <source>names &apos;l&apos;, &apos;O&apos; and &apos;I&apos; should be avoided</source>
         <translation type="unfinished"></translation>
     </message>
@@ -57377,11 +57407,16 @@
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/PromtEngine.py" line="97"/>
         <source>Invalid response received</source>
-        <translation type="unfinished">收到了无效的响应</translation>
+        <translation type="obsolete">收到了无效的响应</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/PromtEngine.py" line="97"/>
+        <source>Promt: Invalid response received</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/PromtEngine.py" line="106"/>
-        <source>This direction of translation is not available.</source>
+        <source>Promt: This direction of translation is not available.</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -59641,7 +59676,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="694"/>
+        <location filename="../UI/PythonDisViewer.py" line="696"/>
         <source>Code Object &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -59651,22 +59686,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="450"/>
+        <location filename="../UI/PythonDisViewer.py" line="452"/>
         <source>No editor has been opened.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="462"/>
+        <location filename="../UI/PythonDisViewer.py" line="464"/>
         <source>The current editor does not contain any source code.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="468"/>
+        <location filename="../UI/PythonDisViewer.py" line="470"/>
         <source>The current editor does not contain Python source code.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="517"/>
+        <location filename="../UI/PythonDisViewer.py" line="519"/>
         <source>Disassembly of last traceback</source>
         <translation type="unfinished"></translation>
     </message>
@@ -59696,72 +59731,72 @@
         <translation type="unfinished">隐藏</translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="809"/>
+        <location filename="../UI/PythonDisViewer.py" line="811"/>
         <source>Name</source>
         <translation type="unfinished">名称</translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="811"/>
-        <source>Filename</source>
-        <translation type="unfinished">文件名</translation>
-    </message>
-    <message>
         <location filename="../UI/PythonDisViewer.py" line="813"/>
-        <source>First Line</source>
-        <translation type="unfinished"></translation>
+        <source>Filename</source>
+        <translation type="unfinished">文件名</translation>
     </message>
     <message>
         <location filename="../UI/PythonDisViewer.py" line="815"/>
-        <source>Argument Count</source>
+        <source>First Line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/PythonDisViewer.py" line="817"/>
+        <source>Argument Count</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="819"/>
         <source>Positional-only Arguments</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="823"/>
-        <source>Number of Locals</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/PythonDisViewer.py" line="825"/>
-        <source>Stack Size</source>
+        <source>Number of Locals</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/PythonDisViewer.py" line="827"/>
+        <source>Stack Size</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="829"/>
         <source>Flags</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="830"/>
+        <location filename="../UI/PythonDisViewer.py" line="832"/>
         <source>Constants</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="833"/>
+        <location filename="../UI/PythonDisViewer.py" line="835"/>
         <source>Names</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="836"/>
+        <location filename="../UI/PythonDisViewer.py" line="838"/>
         <source>Variable Names</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="839"/>
+        <location filename="../UI/PythonDisViewer.py" line="841"/>
         <source>Free Variables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="842"/>
+        <location filename="../UI/PythonDisViewer.py" line="844"/>
         <source>Cell Variables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="820"/>
+        <location filename="../UI/PythonDisViewer.py" line="822"/>
         <source>Keyword-only Arguments</source>
         <translation type="unfinished"></translation>
     </message>
@@ -82867,3162 +82902,3162 @@
 <context>
     <name>ViewManager</name>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="635"/>
+        <location filename="../ViewManager/ViewManager.py" line="634"/>
         <source>New</source>
         <translation>新建</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="635"/>
+        <location filename="../ViewManager/ViewManager.py" line="634"/>
         <source>&amp;New</source>
         <translation>新建(&amp;N)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="635"/>
+        <location filename="../ViewManager/ViewManager.py" line="634"/>
         <source>Ctrl+N</source>
         <comment>File|New</comment>
         <translation>Ctrl+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="643"/>
+        <location filename="../ViewManager/ViewManager.py" line="642"/>
         <source>Open an empty editor window</source>
         <translation>打开一个空白编辑器窗口</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="646"/>
+        <location filename="../ViewManager/ViewManager.py" line="645"/>
         <source>&lt;b&gt;New&lt;/b&gt;&lt;p&gt;An empty editor window will be created.&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="654"/>
+        <location filename="../ViewManager/ViewManager.py" line="653"/>
         <source>Open</source>
         <translation>打开</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="654"/>
+        <location filename="../ViewManager/ViewManager.py" line="653"/>
         <source>&amp;Open...</source>
         <translation>打开(&amp;O)…</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="654"/>
+        <location filename="../ViewManager/ViewManager.py" line="653"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation>Ctrl+O</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="662"/>
+        <location filename="../ViewManager/ViewManager.py" line="661"/>
         <source>Open a file</source>
         <translation>打开一个文件</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="664"/>
+        <location filename="../ViewManager/ViewManager.py" line="663"/>
         <source>&lt;b&gt;Open a file&lt;/b&gt;&lt;p&gt;You will be asked for the name of a file to be opened in an editor window.&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="675"/>
+        <location filename="../ViewManager/ViewManager.py" line="674"/>
         <source>Close</source>
         <translation>关闭</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="675"/>
+        <location filename="../ViewManager/ViewManager.py" line="674"/>
         <source>&amp;Close</source>
         <translation>关闭(&amp;C)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="675"/>
+        <location filename="../ViewManager/ViewManager.py" line="674"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation>Ctrl+W</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="683"/>
+        <location filename="../ViewManager/ViewManager.py" line="682"/>
         <source>Close the current window</source>
         <translation>关闭当前窗口</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="686"/>
+        <location filename="../ViewManager/ViewManager.py" line="685"/>
         <source>&lt;b&gt;Close Window&lt;/b&gt;&lt;p&gt;Close the current window.&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="694"/>
+        <location filename="../ViewManager/ViewManager.py" line="693"/>
         <source>Close All</source>
         <translation>全部关闭</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="694"/>
+        <location filename="../ViewManager/ViewManager.py" line="693"/>
         <source>Clos&amp;e All</source>
         <translation>全部关闭(&amp;E)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="698"/>
+        <location filename="../ViewManager/ViewManager.py" line="697"/>
         <source>Close all editor windows</source>
         <translation>关闭所有编辑器窗口</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="701"/>
+        <location filename="../ViewManager/ViewManager.py" line="700"/>
         <source>&lt;b&gt;Close All Windows&lt;/b&gt;&lt;p&gt;Close all editor windows.&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="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="712"/>
         <source>Save</source>
         <translation>保存</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="712"/>
         <source>&amp;Save</source>
         <translation>保存(&amp;S)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="712"/>
         <source>Ctrl+S</source>
         <comment>File|Save</comment>
         <translation>Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="720"/>
+        <location filename="../ViewManager/ViewManager.py" line="719"/>
         <source>Save the current file</source>
         <translation>保存当前文件</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="722"/>
+        <location filename="../ViewManager/ViewManager.py" line="721"/>
         <source>&lt;b&gt;Save File&lt;/b&gt;&lt;p&gt;Save the contents of current editor window.&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="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="729"/>
         <source>Save as</source>
         <translation>另存为</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="729"/>
         <source>Save &amp;as...</source>
         <translation>另存为(&amp;A)…</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="729"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation>Shift+Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="737"/>
+        <location filename="../ViewManager/ViewManager.py" line="736"/>
         <source>Save the current file to a new one</source>
         <translation>将当前文件保存到一个新文件中</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="739"/>
+        <location filename="../ViewManager/ViewManager.py" line="738"/>
         <source>&lt;b&gt;Save File as&lt;/b&gt;&lt;p&gt;Save the contents of current editor window to a new file. The file can be entered in a file selection dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;文件另存为&lt;/b&gt;&lt;p&gt;将当前编辑器窗口的内容保存到一个新文件中。可以在文件选择对话框中输入该文件。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="764"/>
+        <location filename="../ViewManager/ViewManager.py" line="763"/>
         <source>Save all</source>
         <translation>全部保存</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="769"/>
+        <location filename="../ViewManager/ViewManager.py" line="768"/>
         <source>Save all files</source>
         <translation>保存所有文件</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="771"/>
+        <location filename="../ViewManager/ViewManager.py" line="770"/>
         <source>&lt;b&gt;Save All Files&lt;/b&gt;&lt;p&gt;Save the contents of all editor windows.&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="781"/>
+        <location filename="../ViewManager/ViewManager.py" line="780"/>
         <source>Print</source>
         <translation>打印</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="781"/>
+        <location filename="../ViewManager/ViewManager.py" line="780"/>
         <source>&amp;Print</source>
         <translation>打印(&amp;P)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="781"/>
+        <location filename="../ViewManager/ViewManager.py" line="780"/>
         <source>Ctrl+P</source>
         <comment>File|Print</comment>
         <translation>Ctrl+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="788"/>
+        <location filename="../ViewManager/ViewManager.py" line="787"/>
         <source>Print the current file</source>
         <translation>打印当前文件</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="790"/>
+        <location filename="../ViewManager/ViewManager.py" line="789"/>
         <source>&lt;b&gt;Print File&lt;/b&gt;&lt;p&gt;Print the contents of current editor window.&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="799"/>
+        <location filename="../ViewManager/ViewManager.py" line="798"/>
         <source>Print Preview</source>
         <translation>打印预览</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="804"/>
+        <location filename="../ViewManager/ViewManager.py" line="803"/>
         <source>Print preview of the current file</source>
         <translation>当前文件的打印预览</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="806"/>
+        <location filename="../ViewManager/ViewManager.py" line="805"/>
         <source>&lt;b&gt;Print Preview&lt;/b&gt;&lt;p&gt;Print preview of the current editor window.&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="816"/>
+        <location filename="../ViewManager/ViewManager.py" line="815"/>
         <source>Search File</source>
         <translation>搜索文件</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="816"/>
+        <location filename="../ViewManager/ViewManager.py" line="815"/>
         <source>Search &amp;File...</source>
         <translation>搜索文件(&amp;F)…</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="816"/>
+        <location filename="../ViewManager/ViewManager.py" line="815"/>
         <source>Alt+Ctrl+F</source>
         <comment>File|Search File</comment>
         <translation>Alt+Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="822"/>
+        <location filename="../ViewManager/ViewManager.py" line="821"/>
         <source>Search for a file</source>
         <translation>搜索一个文件</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="824"/>
+        <location filename="../ViewManager/ViewManager.py" line="823"/>
         <source>&lt;b&gt;Search File&lt;/b&gt;&lt;p&gt;Search for a file.&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="838"/>
+        <location filename="../ViewManager/ViewManager.py" line="837"/>
         <source>&amp;File</source>
         <translation>文件(&amp;F)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="840"/>
+        <location filename="../ViewManager/ViewManager.py" line="839"/>
         <source>Open &amp;Recent Files</source>
         <translation>打开最近的文件(&amp;R)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="843"/>
+        <location filename="../ViewManager/ViewManager.py" line="842"/>
         <source>Open &amp;Bookmarked Files</source>
         <translation>打开已设置书签的文件(&amp;B)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="891"/>
+        <location filename="../ViewManager/ViewManager.py" line="890"/>
         <source>File</source>
         <translation>文件</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="914"/>
+        <location filename="../ViewManager/ViewManager.py" line="913"/>
         <source>Export as</source>
         <translation>导出为</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="938"/>
+        <location filename="../ViewManager/ViewManager.py" line="937"/>
         <source>Undo</source>
         <translation>撤消</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="938"/>
+        <location filename="../ViewManager/ViewManager.py" line="937"/>
         <source>&amp;Undo</source>
         <translation>撤消(&amp;U)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="938"/>
+        <location filename="../ViewManager/ViewManager.py" line="937"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation>Ctrl+Z</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="938"/>
+        <location filename="../ViewManager/ViewManager.py" line="937"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation>Alt+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="947"/>
+        <location filename="../ViewManager/ViewManager.py" line="946"/>
         <source>Undo the last change</source>
         <translation>撤消最后一次更改</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="949"/>
+        <location filename="../ViewManager/ViewManager.py" line="948"/>
         <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last change done in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;撤消&lt;/b&gt;&lt;p&gt;在当前编辑器中撤消最后一次更改。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="957"/>
+        <location filename="../ViewManager/ViewManager.py" line="956"/>
         <source>Redo</source>
         <translation>重做</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="957"/>
+        <location filename="../ViewManager/ViewManager.py" line="956"/>
         <source>&amp;Redo</source>
         <translation>重做(&amp;R)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="957"/>
+        <location filename="../ViewManager/ViewManager.py" line="956"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation>Ctrl+Shift+Z</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="965"/>
+        <location filename="../ViewManager/ViewManager.py" line="964"/>
         <source>Redo the last change</source>
         <translation>重做最后一次更改</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="967"/>
+        <location filename="../ViewManager/ViewManager.py" line="966"/>
         <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last change done in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;重做&lt;/b&gt;&lt;p&gt;在当前编辑器中重做最后一次更改。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="984"/>
+        <location filename="../ViewManager/ViewManager.py" line="983"/>
         <source>Revert to last saved state</source>
         <translation>还原到最后保存的状态</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="975"/>
+        <location filename="../ViewManager/ViewManager.py" line="974"/>
         <source>Re&amp;vert to last saved state</source>
         <translation>还原到最后保存的状态(&amp;v)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="975"/>
+        <location filename="../ViewManager/ViewManager.py" line="974"/>
         <source>Ctrl+Y</source>
         <comment>Edit|Revert</comment>
         <translation>Ctrl+Y</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="985"/>
         <source>&lt;b&gt;Revert to last saved state&lt;/b&gt;&lt;p&gt;Undo all changes up to the last saved state of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;还原到最后保存的状态&lt;/b&gt;&lt;p&gt;撤消所有更改到当前编辑器的最后保存状态。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <source>Cut</source>
         <translation>剪切</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <source>Cu&amp;t</source>
         <translation>剪切(&amp;t)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation>Ctrl+X</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation>Shift+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1006"/>
+        <location filename="../ViewManager/ViewManager.py" line="1005"/>
         <source>Cut the selection</source>
         <translation>剪切所选内容</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1008"/>
+        <location filename="../ViewManager/ViewManager.py" line="1007"/>
         <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected text of the current editor to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;剪切&lt;/b&gt;&lt;p&gt;将当前编辑器所选内容剪切到剪贴板中。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1017"/>
+        <location filename="../ViewManager/ViewManager.py" line="1016"/>
         <source>Copy</source>
         <translation>复制</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1017"/>
+        <location filename="../ViewManager/ViewManager.py" line="1016"/>
         <source>&amp;Copy</source>
         <translation>复制(&amp;C)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1017"/>
+        <location filename="../ViewManager/ViewManager.py" line="1016"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1017"/>
+        <location filename="../ViewManager/ViewManager.py" line="1016"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+Ins</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1026"/>
+        <location filename="../ViewManager/ViewManager.py" line="1025"/>
         <source>Copy the selection</source>
         <translation>复制所选内容</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1028"/>
+        <location filename="../ViewManager/ViewManager.py" line="1027"/>
         <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected text of the current editor to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;复制&lt;/b&gt;&lt;p&gt;将当前编辑器所选内容复制到剪贴板中。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1037"/>
+        <location filename="../ViewManager/ViewManager.py" line="1036"/>
         <source>Paste</source>
         <translation>粘贴</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1037"/>
+        <location filename="../ViewManager/ViewManager.py" line="1036"/>
         <source>&amp;Paste</source>
         <translation>粘贴(&amp;P)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1037"/>
+        <location filename="../ViewManager/ViewManager.py" line="1036"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation>Ctrl+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1037"/>
+        <location filename="../ViewManager/ViewManager.py" line="1036"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation>Shift+Ins</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1046"/>
+        <location filename="../ViewManager/ViewManager.py" line="1045"/>
         <source>Paste the last cut/copied text</source>
         <translation>粘贴最近剪切或复制的文本</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1048"/>
+        <location filename="../ViewManager/ViewManager.py" line="1047"/>
         <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the last cut/copied text from the clipboard to the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;粘贴&lt;/b&gt;&lt;p&gt;将最近剪切或复制的文本从剪贴板粘贴到当前编辑器中。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1057"/>
+        <location filename="../ViewManager/ViewManager.py" line="1056"/>
         <source>Clear</source>
         <translation>清除</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1057"/>
+        <location filename="../ViewManager/ViewManager.py" line="1056"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation>Alt+Shift+C</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1065"/>
+        <location filename="../ViewManager/ViewManager.py" line="1064"/>
         <source>Clear all text</source>
         <translation>清除所有文本</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1067"/>
+        <location filename="../ViewManager/ViewManager.py" line="1066"/>
         <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Delete all text of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;清除&lt;/b&gt;&lt;p&gt;删除当前编辑器中的所有文本。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1092"/>
+        <location filename="../ViewManager/ViewManager.py" line="1091"/>
         <source>Indent</source>
         <translation>缩进</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1092"/>
+        <location filename="../ViewManager/ViewManager.py" line="1091"/>
         <source>&amp;Indent</source>
         <translation>缩进(&amp;I)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1092"/>
+        <location filename="../ViewManager/ViewManager.py" line="1091"/>
         <source>Ctrl+I</source>
         <comment>Edit|Indent</comment>
         <translation>Ctrl+I</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1100"/>
+        <location filename="../ViewManager/ViewManager.py" line="1099"/>
         <source>Indent line</source>
         <translation>缩进行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1102"/>
+        <location filename="../ViewManager/ViewManager.py" line="1101"/>
         <source>&lt;b&gt;Indent&lt;/b&gt;&lt;p&gt;Indents the current line or the lines of the selection by one level.&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="1111"/>
+        <location filename="../ViewManager/ViewManager.py" line="1110"/>
         <source>Unindent</source>
         <translation>取消缩进</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1111"/>
+        <location filename="../ViewManager/ViewManager.py" line="1110"/>
         <source>U&amp;nindent</source>
         <translation>取消缩进(&amp;U)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1111"/>
+        <location filename="../ViewManager/ViewManager.py" line="1110"/>
         <source>Ctrl+Shift+I</source>
         <comment>Edit|Unindent</comment>
         <translation>Ctrl+Shift+I</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1119"/>
+        <location filename="../ViewManager/ViewManager.py" line="1118"/>
         <source>Unindent line</source>
         <translation>取消缩进行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1121"/>
+        <location filename="../ViewManager/ViewManager.py" line="1120"/>
         <source>&lt;b&gt;Unindent&lt;/b&gt;&lt;p&gt;Unindents the current line or the lines of the selection by one level.&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="1130"/>
+        <location filename="../ViewManager/ViewManager.py" line="1129"/>
         <source>Smart indent</source>
         <translation>智能缩进</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1136"/>
+        <location filename="../ViewManager/ViewManager.py" line="1135"/>
         <source>Smart indent Line or Selection</source>
         <translation>智能缩进行或所选内容</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1138"/>
+        <location filename="../ViewManager/ViewManager.py" line="1137"/>
         <source>&lt;b&gt;Smart indent&lt;/b&gt;&lt;p&gt;Indents the current line or the lines of the current selection smartly.&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="1147"/>
+        <location filename="../ViewManager/ViewManager.py" line="1146"/>
         <source>Comment</source>
         <translation>注释</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1147"/>
+        <location filename="../ViewManager/ViewManager.py" line="1146"/>
         <source>C&amp;omment</source>
         <translation>注释(&amp;O)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1147"/>
+        <location filename="../ViewManager/ViewManager.py" line="1146"/>
         <source>Ctrl+M</source>
         <comment>Edit|Comment</comment>
         <translation>Ctrl+M</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1155"/>
+        <location filename="../ViewManager/ViewManager.py" line="1154"/>
         <source>Comment Line or Selection</source>
         <translation>注释行或所选内容</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1157"/>
+        <location filename="../ViewManager/ViewManager.py" line="1156"/>
         <source>&lt;b&gt;Comment&lt;/b&gt;&lt;p&gt;Comments the current line or the lines of the current selection.&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="1166"/>
+        <location filename="../ViewManager/ViewManager.py" line="1165"/>
         <source>Uncomment</source>
         <translation>取消注释</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1166"/>
+        <location filename="../ViewManager/ViewManager.py" line="1165"/>
         <source>Unco&amp;mment</source>
         <translation>取消注释(&amp;M)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1166"/>
+        <location filename="../ViewManager/ViewManager.py" line="1165"/>
         <source>Alt+Ctrl+M</source>
         <comment>Edit|Uncomment</comment>
         <translation>Alt+Ctrl+M</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1174"/>
+        <location filename="../ViewManager/ViewManager.py" line="1173"/>
         <source>Uncomment Line or Selection</source>
         <translation>取消注释行或所选内容</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1176"/>
+        <location filename="../ViewManager/ViewManager.py" line="1175"/>
         <source>&lt;b&gt;Uncomment&lt;/b&gt;&lt;p&gt;Uncomments the current line or the lines of the current selection.&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="1207"/>
+        <location filename="../ViewManager/ViewManager.py" line="1206"/>
         <source>Stream Comment</source>
         <translation>流注释</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1212"/>
+        <location filename="../ViewManager/ViewManager.py" line="1211"/>
         <source>Stream Comment Line or Selection</source>
         <translation>流注释行或所选内容</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1215"/>
+        <location filename="../ViewManager/ViewManager.py" line="1214"/>
         <source>&lt;b&gt;Stream Comment&lt;/b&gt;&lt;p&gt;Stream comments the current line or the current selection.&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="1224"/>
+        <location filename="../ViewManager/ViewManager.py" line="1223"/>
         <source>Box Comment</source>
         <translation>块注释</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1229"/>
+        <location filename="../ViewManager/ViewManager.py" line="1228"/>
         <source>Box Comment Line or Selection</source>
         <translation>块注释行或所选内容</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1231"/>
+        <location filename="../ViewManager/ViewManager.py" line="1230"/>
         <source>&lt;b&gt;Box Comment&lt;/b&gt;&lt;p&gt;Box comments the current line or the lines of the current selection.&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="1240"/>
+        <location filename="../ViewManager/ViewManager.py" line="1239"/>
         <source>Select to brace</source>
         <translation>选择括号内容</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1240"/>
+        <location filename="../ViewManager/ViewManager.py" line="1239"/>
         <source>Select to &amp;brace</source>
         <translation>选择括号内容(&amp;B)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1240"/>
+        <location filename="../ViewManager/ViewManager.py" line="1239"/>
         <source>Ctrl+E</source>
         <comment>Edit|Select to brace</comment>
         <translation>Ctrl+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1247"/>
+        <location filename="../ViewManager/ViewManager.py" line="1246"/>
         <source>Select text to the matching brace</source>
         <translation>选择成对括号中的文本</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1249"/>
+        <location filename="../ViewManager/ViewManager.py" line="1248"/>
         <source>&lt;b&gt;Select to brace&lt;/b&gt;&lt;p&gt;Select text of the current editor to the matching brace.&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="1258"/>
+        <location filename="../ViewManager/ViewManager.py" line="1257"/>
         <source>Select all</source>
         <translation>全选</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1258"/>
+        <location filename="../ViewManager/ViewManager.py" line="1257"/>
         <source>&amp;Select all</source>
         <translation>全选(&amp;S)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1258"/>
+        <location filename="../ViewManager/ViewManager.py" line="1257"/>
         <source>Ctrl+A</source>
         <comment>Edit|Select all</comment>
         <translation>Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1266"/>
+        <location filename="../ViewManager/ViewManager.py" line="1265"/>
         <source>Select all text</source>
         <translation>选择所有文本</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1268"/>
+        <location filename="../ViewManager/ViewManager.py" line="1267"/>
         <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Select all text of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;全选&lt;/b&gt;&lt;p&gt;选择当前编辑器中的所有文本。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1275"/>
         <source>Deselect all</source>
         <translation>全部取消选择</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1275"/>
         <source>&amp;Deselect all</source>
         <translation>全部取消选择(&amp;D)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1275"/>
         <source>Alt+Ctrl+A</source>
         <comment>Edit|Deselect all</comment>
         <translation>Alt+Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1283"/>
+        <location filename="../ViewManager/ViewManager.py" line="1282"/>
         <source>Deselect all text</source>
         <translation>所有文本都不选择</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1285"/>
+        <location filename="../ViewManager/ViewManager.py" line="1284"/>
         <source>&lt;b&gt;Deselect All&lt;/b&gt;&lt;p&gt;Deselect all text of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;取消全选&lt;/b&gt;&lt;p&gt;取消选择当前编辑器中的所有文本。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1300"/>
+        <location filename="../ViewManager/ViewManager.py" line="1299"/>
         <source>Convert Line End Characters</source>
         <translation>转换行尾符</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1293"/>
+        <location filename="../ViewManager/ViewManager.py" line="1292"/>
         <source>Convert &amp;Line End Characters</source>
         <translation>转换行尾符(&amp;L)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1302"/>
+        <location filename="../ViewManager/ViewManager.py" line="1301"/>
         <source>&lt;b&gt;Convert Line End Characters&lt;/b&gt;&lt;p&gt;Convert the line end characters to the currently set type.&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="1316"/>
+        <location filename="../ViewManager/ViewManager.py" line="1315"/>
         <source>Shorten empty lines</source>
         <translation>缩减空行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1318"/>
+        <location filename="../ViewManager/ViewManager.py" line="1317"/>
         <source>&lt;b&gt;Shorten empty lines&lt;/b&gt;&lt;p&gt;Shorten lines consisting solely of whitespace characters.&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="1327"/>
+        <location filename="../ViewManager/ViewManager.py" line="1326"/>
         <source>&amp;Complete</source>
         <translation>补全(&amp;C)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2778"/>
+        <location filename="../ViewManager/ViewManager.py" line="2776"/>
         <source>Complete</source>
         <translation>补全</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1334"/>
+        <location filename="../ViewManager/ViewManager.py" line="1333"/>
         <source>Complete current word</source>
         <translation>补全当前单词</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1336"/>
+        <location filename="../ViewManager/ViewManager.py" line="1335"/>
         <source>&lt;b&gt;Complete&lt;/b&gt;&lt;p&gt;Performs a completion of the word containing the cursor.&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="1345"/>
+        <location filename="../ViewManager/ViewManager.py" line="1344"/>
         <source>Complete from Document</source>
         <translation>从文档补全</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1355"/>
+        <location filename="../ViewManager/ViewManager.py" line="1354"/>
         <source>Complete current word from Document</source>
         <translation>从文档补全当前单词</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1358"/>
+        <location filename="../ViewManager/ViewManager.py" line="1357"/>
         <source>&lt;b&gt;Complete from Document&lt;/b&gt;&lt;p&gt;Performs a completion from document of the word containing the cursor.&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="1368"/>
+        <location filename="../ViewManager/ViewManager.py" line="1367"/>
         <source>Complete from APIs</source>
         <translation>从 API 补全</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1378"/>
+        <location filename="../ViewManager/ViewManager.py" line="1377"/>
         <source>Complete current word from APIs</source>
         <translation>从 API 补全当前单词</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1381"/>
+        <location filename="../ViewManager/ViewManager.py" line="1380"/>
         <source>&lt;b&gt;Complete from APIs&lt;/b&gt;&lt;p&gt;Performs a completion from APIs of the word containing the cursor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;从 API 补全&lt;/b&gt;&lt;p&gt;从 API 提取信息补全当前光标处的单词。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1391"/>
+        <location filename="../ViewManager/ViewManager.py" line="1390"/>
         <source>Complete from Document and APIs</source>
         <translation>从文档和 API 补全</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1401"/>
+        <location filename="../ViewManager/ViewManager.py" line="1400"/>
         <source>Complete current word from Document and APIs</source>
         <translation>从文档和 API 补全当前单词</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1404"/>
+        <location filename="../ViewManager/ViewManager.py" line="1403"/>
         <source>&lt;b&gt;Complete from Document and APIs&lt;/b&gt;&lt;p&gt;Performs a completion from document and APIs of the word containing the cursor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;从文档和 API 补全&lt;/b&gt;&lt;p&gt;从文档和 API 提取信息补全当前光标处的单词。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1414"/>
+        <location filename="../ViewManager/ViewManager.py" line="1413"/>
         <source>Calltip</source>
         <translation>调用提示</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1414"/>
+        <location filename="../ViewManager/ViewManager.py" line="1413"/>
         <source>&amp;Calltip</source>
         <translation>调用提示(&amp;C)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1414"/>
+        <location filename="../ViewManager/ViewManager.py" line="1413"/>
         <source>Meta+Alt+Space</source>
         <comment>Edit|Calltip</comment>
         <translation>Meta+Alt+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1421"/>
+        <location filename="../ViewManager/ViewManager.py" line="1420"/>
         <source>Show Calltips</source>
         <translation>显示调用提示</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1423"/>
+        <location filename="../ViewManager/ViewManager.py" line="1422"/>
         <source>&lt;b&gt;Calltip&lt;/b&gt;&lt;p&gt;Show calltips based on the characters immediately to the left of the cursor.&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="1481"/>
+        <location filename="../ViewManager/ViewManager.py" line="1480"/>
         <source>Move left one character</source>
         <translation>左移一个字符</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1481"/>
+        <location filename="../ViewManager/ViewManager.py" line="1480"/>
         <source>Left</source>
         <translation>Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1495"/>
+        <location filename="../ViewManager/ViewManager.py" line="1494"/>
         <source>Move right one character</source>
         <translation>右移一个字符</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1495"/>
+        <location filename="../ViewManager/ViewManager.py" line="1494"/>
         <source>Right</source>
         <translation>Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1509"/>
+        <location filename="../ViewManager/ViewManager.py" line="1508"/>
         <source>Move up one line</source>
         <translation>上移一行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1509"/>
+        <location filename="../ViewManager/ViewManager.py" line="1508"/>
         <source>Up</source>
         <translation>Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1521"/>
+        <location filename="../ViewManager/ViewManager.py" line="1520"/>
         <source>Move down one line</source>
         <translation>下移一行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1521"/>
+        <location filename="../ViewManager/ViewManager.py" line="1520"/>
         <source>Down</source>
         <translation>Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1533"/>
+        <location filename="../ViewManager/ViewManager.py" line="1532"/>
         <source>Move left one word part</source>
         <translation>左移一个单词部分</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1567"/>
+        <location filename="../ViewManager/ViewManager.py" line="1566"/>
         <source>Alt+Left</source>
         <translation>Alt+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1547"/>
+        <location filename="../ViewManager/ViewManager.py" line="1546"/>
         <source>Move right one word part</source>
         <translation>右移一个单词部分</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2448"/>
+        <location filename="../ViewManager/ViewManager.py" line="2446"/>
         <source>Alt+Right</source>
         <translation>Alt+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1561"/>
+        <location filename="../ViewManager/ViewManager.py" line="1560"/>
         <source>Move left one word</source>
         <translation>左移一个词距</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1612"/>
+        <location filename="../ViewManager/ViewManager.py" line="1611"/>
         <source>Ctrl+Left</source>
         <translation>Ctrl+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1576"/>
+        <location filename="../ViewManager/ViewManager.py" line="1575"/>
         <source>Move right one word</source>
         <translation>右移一个词距</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2202"/>
+        <location filename="../ViewManager/ViewManager.py" line="2200"/>
         <source>Ctrl+Right</source>
         <translation>Ctrl+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2403"/>
+        <location filename="../ViewManager/ViewManager.py" line="2401"/>
         <source>Home</source>
         <translation>Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1615"/>
+        <location filename="../ViewManager/ViewManager.py" line="1614"/>
         <source>Alt+Home</source>
         <translation>Alt+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2418"/>
+        <location filename="../ViewManager/ViewManager.py" line="2416"/>
         <source>End</source>
         <translation>End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1638"/>
+        <location filename="../ViewManager/ViewManager.py" line="1637"/>
         <source>Scroll view down one line</source>
         <translation>视图向下滚动一行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1728"/>
+        <location filename="../ViewManager/ViewManager.py" line="1727"/>
         <source>Ctrl+Down</source>
         <translation>Ctrl+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1650"/>
+        <location filename="../ViewManager/ViewManager.py" line="1649"/>
         <source>Scroll view up one line</source>
         <translation>视图向上滚动一行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1711"/>
+        <location filename="../ViewManager/ViewManager.py" line="1710"/>
         <source>Ctrl+Up</source>
         <translation>Ctrl+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1661"/>
+        <location filename="../ViewManager/ViewManager.py" line="1660"/>
         <source>Move up one paragraph</source>
         <translation>上移一段</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1661"/>
+        <location filename="../ViewManager/ViewManager.py" line="1660"/>
         <source>Alt+Up</source>
         <translation>Alt+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1670"/>
+        <location filename="../ViewManager/ViewManager.py" line="1669"/>
         <source>Move down one paragraph</source>
         <translation>下移一段</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1670"/>
+        <location filename="../ViewManager/ViewManager.py" line="1669"/>
         <source>Alt+Down</source>
         <translation>Alt+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1682"/>
+        <location filename="../ViewManager/ViewManager.py" line="1681"/>
         <source>Move up one page</source>
         <translation>上移一页</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1682"/>
+        <location filename="../ViewManager/ViewManager.py" line="1681"/>
         <source>PgUp</source>
         <translation>PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1691"/>
+        <location filename="../ViewManager/ViewManager.py" line="1690"/>
         <source>Move down one page</source>
         <translation>下移一页</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1691"/>
+        <location filename="../ViewManager/ViewManager.py" line="1690"/>
         <source>PgDown</source>
         <translation>PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1714"/>
+        <location filename="../ViewManager/ViewManager.py" line="1713"/>
         <source>Ctrl+Home</source>
         <translation>Ctrl+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1731"/>
+        <location filename="../ViewManager/ViewManager.py" line="1730"/>
         <source>Ctrl+End</source>
         <translation>Ctrl+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1737"/>
+        <location filename="../ViewManager/ViewManager.py" line="1736"/>
         <source>Indent one level</source>
         <translation>缩进一级</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1737"/>
+        <location filename="../ViewManager/ViewManager.py" line="1736"/>
         <source>Tab</source>
         <translation>Tab 键</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1746"/>
+        <location filename="../ViewManager/ViewManager.py" line="1745"/>
         <source>Unindent one level</source>
         <translation>取消缩进一级</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1746"/>
+        <location filename="../ViewManager/ViewManager.py" line="1745"/>
         <source>Shift+Tab</source>
         <translation>Shift+Tab</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1756"/>
+        <location filename="../ViewManager/ViewManager.py" line="1755"/>
         <source>Extend selection left one character</source>
         <translation>选区向左扩展一个字符</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1756"/>
+        <location filename="../ViewManager/ViewManager.py" line="1755"/>
         <source>Shift+Left</source>
         <translation>Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1771"/>
+        <location filename="../ViewManager/ViewManager.py" line="1770"/>
         <source>Extend selection right one character</source>
         <translation>选区向右扩展一个字符</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1771"/>
+        <location filename="../ViewManager/ViewManager.py" line="1770"/>
         <source>Shift+Right</source>
         <translation>Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1786"/>
+        <location filename="../ViewManager/ViewManager.py" line="1785"/>
         <source>Extend selection up one line</source>
         <translation>选区向上扩展一行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1786"/>
+        <location filename="../ViewManager/ViewManager.py" line="1785"/>
         <source>Shift+Up</source>
         <translation>Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1801"/>
+        <location filename="../ViewManager/ViewManager.py" line="1800"/>
         <source>Extend selection down one line</source>
         <translation>选区向下扩展一行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1801"/>
+        <location filename="../ViewManager/ViewManager.py" line="1800"/>
         <source>Shift+Down</source>
         <translation>Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1816"/>
+        <location filename="../ViewManager/ViewManager.py" line="1815"/>
         <source>Extend selection left one word part</source>
         <translation>选区向左扩展一个单词部分</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1852"/>
+        <location filename="../ViewManager/ViewManager.py" line="1851"/>
         <source>Alt+Shift+Left</source>
         <translation>Alt+Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1830"/>
+        <location filename="../ViewManager/ViewManager.py" line="1829"/>
         <source>Extend selection right one word part</source>
         <translation>选区向右扩展一个单词部分</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2463"/>
+        <location filename="../ViewManager/ViewManager.py" line="2461"/>
         <source>Alt+Shift+Right</source>
         <translation>Alt+Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1844"/>
+        <location filename="../ViewManager/ViewManager.py" line="1843"/>
         <source>Extend selection left one word</source>
         <translation>选区向左扩展一个单词</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2557"/>
+        <location filename="../ViewManager/ViewManager.py" line="2555"/>
         <source>Ctrl+Shift+Left</source>
         <translation>Ctrl+Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1861"/>
+        <location filename="../ViewManager/ViewManager.py" line="1860"/>
         <source>Extend selection right one word</source>
         <translation>选区向右扩展一个单词</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2219"/>
+        <location filename="../ViewManager/ViewManager.py" line="2217"/>
         <source>Ctrl+Shift+Right</source>
         <translation>Ctrl+Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1890"/>
+        <location filename="../ViewManager/ViewManager.py" line="1889"/>
         <source>Shift+Home</source>
         <translation>Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2323"/>
+        <location filename="../ViewManager/ViewManager.py" line="2321"/>
         <source>Alt+Shift+Home</source>
         <translation>Alt+Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1907"/>
+        <location filename="../ViewManager/ViewManager.py" line="1906"/>
         <source>Shift+End</source>
         <translation>Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1913"/>
+        <location filename="../ViewManager/ViewManager.py" line="1912"/>
         <source>Extend selection up one paragraph</source>
         <translation>选区向上扩展一段</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1913"/>
+        <location filename="../ViewManager/ViewManager.py" line="1912"/>
         <source>Alt+Shift+Up</source>
         <translation>Alt+Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1926"/>
+        <location filename="../ViewManager/ViewManager.py" line="1925"/>
         <source>Extend selection down one paragraph</source>
         <translation>选区向下扩展一段</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1926"/>
+        <location filename="../ViewManager/ViewManager.py" line="1925"/>
         <source>Alt+Shift+Down</source>
         <translation>Alt+Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1939"/>
+        <location filename="../ViewManager/ViewManager.py" line="1938"/>
         <source>Extend selection up one page</source>
         <translation>选区向上扩展一页</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1939"/>
+        <location filename="../ViewManager/ViewManager.py" line="1938"/>
         <source>Shift+PgUp</source>
         <translation>Shift+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1951"/>
+        <location filename="../ViewManager/ViewManager.py" line="1950"/>
         <source>Extend selection down one page</source>
         <translation>选区向下扩展一页</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1951"/>
+        <location filename="../ViewManager/ViewManager.py" line="1950"/>
         <source>Shift+PgDown</source>
         <translation>Shift+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1978"/>
+        <location filename="../ViewManager/ViewManager.py" line="1977"/>
         <source>Ctrl+Shift+Home</source>
         <translation>Ctrl+Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1995"/>
+        <location filename="../ViewManager/ViewManager.py" line="1994"/>
         <source>Ctrl+Shift+End</source>
         <translation>Ctrl+Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2001"/>
+        <location filename="../ViewManager/ViewManager.py" line="2000"/>
         <source>Delete previous character</source>
         <translation>删除前一个字符</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2001"/>
+        <location filename="../ViewManager/ViewManager.py" line="2000"/>
         <source>Backspace</source>
         <translation>Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2013"/>
+        <location filename="../ViewManager/ViewManager.py" line="2012"/>
         <source>Shift+Backspace</source>
         <translation>Shift+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2032"/>
+        <location filename="../ViewManager/ViewManager.py" line="2031"/>
         <source>Delete current character</source>
         <translation>删除当前字符</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2032"/>
+        <location filename="../ViewManager/ViewManager.py" line="2031"/>
         <source>Del</source>
         <translation>Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2046"/>
+        <location filename="../ViewManager/ViewManager.py" line="2045"/>
         <source>Delete word to left</source>
         <translation>向左删除一个单词</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2046"/>
+        <location filename="../ViewManager/ViewManager.py" line="2045"/>
         <source>Ctrl+Backspace</source>
         <translation>Ctrl+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2057"/>
+        <location filename="../ViewManager/ViewManager.py" line="2056"/>
         <source>Delete word to right</source>
         <translation>向右删除一个单词</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2057"/>
+        <location filename="../ViewManager/ViewManager.py" line="2056"/>
         <source>Ctrl+Del</source>
         <translation>Ctrl+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2067"/>
+        <location filename="../ViewManager/ViewManager.py" line="2066"/>
         <source>Delete line to left</source>
         <translation>向左删除一行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2067"/>
+        <location filename="../ViewManager/ViewManager.py" line="2066"/>
         <source>Ctrl+Shift+Backspace</source>
         <translation>Ctrl+Shift+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2078"/>
+        <location filename="../ViewManager/ViewManager.py" line="2077"/>
         <source>Delete line to right</source>
         <translation>向右删除一行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2087"/>
+        <location filename="../ViewManager/ViewManager.py" line="2086"/>
         <source>Ctrl+Shift+Del</source>
         <translation>Ctrl+Shift+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2093"/>
+        <location filename="../ViewManager/ViewManager.py" line="2092"/>
         <source>Insert new line</source>
         <translation>插入新行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2093"/>
+        <location filename="../ViewManager/ViewManager.py" line="2092"/>
         <source>Return</source>
         <translation>Return</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2093"/>
+        <location filename="../ViewManager/ViewManager.py" line="2092"/>
         <source>Enter</source>
         <translation>Enter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2103"/>
+        <location filename="../ViewManager/ViewManager.py" line="2102"/>
         <source>Insert new line below current line</source>
         <translation>在当前行之上插入新行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2103"/>
+        <location filename="../ViewManager/ViewManager.py" line="2102"/>
         <source>Shift+Return</source>
         <translation>Shift+Return</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2103"/>
+        <location filename="../ViewManager/ViewManager.py" line="2102"/>
         <source>Shift+Enter</source>
         <translation>Shift+Enter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2116"/>
+        <location filename="../ViewManager/ViewManager.py" line="2115"/>
         <source>Delete current line</source>
         <translation>删除当前行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2116"/>
+        <location filename="../ViewManager/ViewManager.py" line="2115"/>
         <source>Ctrl+Shift+L</source>
         <translation>Ctrl+Shift+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2127"/>
+        <location filename="../ViewManager/ViewManager.py" line="2126"/>
         <source>Duplicate current line</source>
         <translation>重复当前行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2127"/>
+        <location filename="../ViewManager/ViewManager.py" line="2126"/>
         <source>Ctrl+D</source>
         <translation>Ctrl+D</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2138"/>
+        <location filename="../ViewManager/ViewManager.py" line="2137"/>
         <source>Swap current and previous lines</source>
         <translation>当前行与上一行交换位置</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2138"/>
+        <location filename="../ViewManager/ViewManager.py" line="2137"/>
         <source>Ctrl+T</source>
         <translation>Ctrl+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2162"/>
+        <location filename="../ViewManager/ViewManager.py" line="2160"/>
         <source>Cut current line</source>
         <translation>剪切当前行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2162"/>
+        <location filename="../ViewManager/ViewManager.py" line="2160"/>
         <source>Alt+Shift+L</source>
         <translation>Alt+Shift+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2172"/>
+        <location filename="../ViewManager/ViewManager.py" line="2170"/>
         <source>Copy current line</source>
         <translation>复制当前行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2172"/>
+        <location filename="../ViewManager/ViewManager.py" line="2170"/>
         <source>Ctrl+Shift+T</source>
         <translation>Ctrl+Shift+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2183"/>
+        <location filename="../ViewManager/ViewManager.py" line="2181"/>
         <source>Toggle insert/overtype</source>
         <translation>切换插入/改写状态</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2183"/>
+        <location filename="../ViewManager/ViewManager.py" line="2181"/>
         <source>Ins</source>
         <translation>Ins</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2747"/>
+        <location filename="../ViewManager/ViewManager.py" line="2745"/>
         <source>Convert selection to lower case</source>
         <translation>将所选内容转换成小写</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2747"/>
+        <location filename="../ViewManager/ViewManager.py" line="2745"/>
         <source>Alt+Shift+U</source>
         <translation>Alt+Shift+U</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2759"/>
+        <location filename="../ViewManager/ViewManager.py" line="2757"/>
         <source>Convert selection to upper case</source>
         <translation>将所选内容转换成大写</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2759"/>
+        <location filename="../ViewManager/ViewManager.py" line="2757"/>
         <source>Ctrl+Shift+U</source>
         <translation>Ctrl+Shift+U</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2205"/>
+        <location filename="../ViewManager/ViewManager.py" line="2203"/>
         <source>Alt+End</source>
         <translation>Alt+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2225"/>
+        <location filename="../ViewManager/ViewManager.py" line="2223"/>
         <source>Formfeed</source>
         <translation>Formfeed</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2234"/>
+        <location filename="../ViewManager/ViewManager.py" line="2232"/>
         <source>Escape</source>
         <translation>Escape</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2234"/>
+        <location filename="../ViewManager/ViewManager.py" line="2232"/>
         <source>Esc</source>
         <translation>Esc</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2243"/>
+        <location filename="../ViewManager/ViewManager.py" line="2241"/>
         <source>Extend rectangular selection down one line</source>
         <translation>矩形选区向下扩展一行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2243"/>
+        <location filename="../ViewManager/ViewManager.py" line="2241"/>
         <source>Alt+Ctrl+Down</source>
         <translation>Alt+Ctrl+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2259"/>
+        <location filename="../ViewManager/ViewManager.py" line="2257"/>
         <source>Extend rectangular selection up one line</source>
         <translation>矩形选区向上扩展一行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2259"/>
+        <location filename="../ViewManager/ViewManager.py" line="2257"/>
         <source>Alt+Ctrl+Up</source>
         <translation>Alt+Ctrl+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2274"/>
+        <location filename="../ViewManager/ViewManager.py" line="2272"/>
         <source>Extend rectangular selection left one character</source>
         <translation>矩形选区向左扩展一个字符</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2274"/>
+        <location filename="../ViewManager/ViewManager.py" line="2272"/>
         <source>Alt+Ctrl+Left</source>
         <translation>Alt+Ctrl+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2292"/>
+        <location filename="../ViewManager/ViewManager.py" line="2290"/>
         <source>Extend rectangular selection right one character</source>
         <translation>矩形选区向右扩展一个字符</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2292"/>
+        <location filename="../ViewManager/ViewManager.py" line="2290"/>
         <source>Alt+Ctrl+Right</source>
         <translation>Alt+Ctrl+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2348"/>
+        <location filename="../ViewManager/ViewManager.py" line="2346"/>
         <source>Extend rectangular selection up one page</source>
         <translation>矩形选区向上扩展一页</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2363"/>
+        <location filename="../ViewManager/ViewManager.py" line="2361"/>
         <source>Extend rectangular selection down one page</source>
         <translation>矩形选区向下扩展一页</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2381"/>
+        <location filename="../ViewManager/ViewManager.py" line="2379"/>
         <source>Duplicate current selection</source>
         <translation>重复当前选区</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2381"/>
+        <location filename="../ViewManager/ViewManager.py" line="2379"/>
         <source>Ctrl+Shift+D</source>
         <translation>Ctrl+Shift+D</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3354"/>
+        <location filename="../ViewManager/ViewManager.py" line="3352"/>
         <source>&amp;Search</source>
         <translation>搜索(&amp;S)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2788"/>
+        <location filename="../ViewManager/ViewManager.py" line="2786"/>
         <source>&amp;Edit</source>
         <translation>编辑(&amp;E)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2845"/>
+        <location filename="../ViewManager/ViewManager.py" line="2843"/>
         <source>Edit</source>
         <translation>编辑</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3449"/>
+        <location filename="../ViewManager/ViewManager.py" line="3447"/>
         <source>Search</source>
         <translation>搜索</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2877"/>
+        <location filename="../ViewManager/ViewManager.py" line="2875"/>
         <source>&amp;Search...</source>
         <translation>搜索(&amp;S)…</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2877"/>
+        <location filename="../ViewManager/ViewManager.py" line="2875"/>
         <source>Ctrl+F</source>
         <comment>Search|Search</comment>
         <translation>Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2885"/>
+        <location filename="../ViewManager/ViewManager.py" line="2883"/>
         <source>Search for a text</source>
         <translation>搜索文本</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2887"/>
+        <location filename="../ViewManager/ViewManager.py" line="2885"/>
         <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="2897"/>
+        <location filename="../ViewManager/ViewManager.py" line="2895"/>
         <source>Search next</source>
         <translation>搜索下一个</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2897"/>
+        <location filename="../ViewManager/ViewManager.py" line="2895"/>
         <source>Search &amp;next</source>
         <translation>搜索下一个(&amp;N)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2897"/>
+        <location filename="../ViewManager/ViewManager.py" line="2895"/>
         <source>F3</source>
         <comment>Search|Search next</comment>
         <translation>F3</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="2904"/>
+        <source>Search next occurrence of text</source>
+        <translation>搜索下一处文本</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="2906"/>
-        <source>Search next occurrence of text</source>
-        <translation>搜索下一处文本</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2908"/>
         <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="2918"/>
+        <location filename="../ViewManager/ViewManager.py" line="2916"/>
         <source>Search previous</source>
         <translation>搜索上一个</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2918"/>
+        <location filename="../ViewManager/ViewManager.py" line="2916"/>
         <source>Search &amp;previous</source>
         <translation>搜索上一个(&amp;P)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2918"/>
+        <location filename="../ViewManager/ViewManager.py" line="2916"/>
         <source>Shift+F3</source>
         <comment>Search|Search previous</comment>
         <translation>Shift+F3</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="2924"/>
+        <source>Search previous occurrence of text</source>
+        <translation>搜索上一处文本</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="2926"/>
-        <source>Search previous occurrence of text</source>
-        <translation>搜索上一处文本</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2928"/>
         <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="2938"/>
+        <location filename="../ViewManager/ViewManager.py" line="2936"/>
         <source>Clear search markers</source>
         <translation>清除搜索标记</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2938"/>
+        <location filename="../ViewManager/ViewManager.py" line="2936"/>
         <source>Ctrl+3</source>
         <comment>Search|Clear search markers</comment>
         <translation>Ctrl+3</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="2944"/>
+        <source>Clear all displayed search markers</source>
+        <translation>清除所有显示的搜索标记</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="2946"/>
-        <source>Clear all displayed search markers</source>
-        <translation>清除所有显示的搜索标记</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2948"/>
         <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="3003"/>
+        <location filename="../ViewManager/ViewManager.py" line="3001"/>
         <source>Replace</source>
         <translation>替换</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3003"/>
+        <location filename="../ViewManager/ViewManager.py" line="3001"/>
         <source>&amp;Replace...</source>
         <translation>替换(&amp;R)…</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3003"/>
+        <location filename="../ViewManager/ViewManager.py" line="3001"/>
         <source>Ctrl+R</source>
         <comment>Search|Replace</comment>
         <translation>Ctrl+R</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3008"/>
+        <source>Replace some text</source>
+        <translation>替换某文本</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3010"/>
-        <source>Replace some text</source>
-        <translation>替换某文本</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3012"/>
         <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="3389"/>
+        <location filename="../ViewManager/ViewManager.py" line="3387"/>
         <source>Quicksearch</source>
         <translation>快速搜索</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3090"/>
+        <location filename="../ViewManager/ViewManager.py" line="3088"/>
         <source>&amp;Quicksearch</source>
         <translation>快速搜索(&amp;Q)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3090"/>
+        <location filename="../ViewManager/ViewManager.py" line="3088"/>
         <source>Ctrl+Shift+K</source>
         <comment>Search|Quicksearch</comment>
         <translation>Ctrl+Shift+K</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3096"/>
+        <source>Perform a quicksearch</source>
+        <translation>执行快速搜索</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3098"/>
-        <source>Perform a quicksearch</source>
-        <translation>执行快速搜索</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3100"/>
         <source>&lt;b&gt;Quicksearch&lt;/b&gt;&lt;p&gt;This activates the quicksearch function of the IDE by giving focus to the quicksearch entry field. If this field is already active and contains text, it searches for the next occurrence of this text.&lt;/p&gt;</source>
         <translation>&lt;b&gt;快速搜索&lt;/b&gt;&lt;p&gt;通过给定快速搜索的条目区域激活 IDE 的快速搜索功能。如果该区域已激活并包含文本,则搜索该文本下一次出现的位置。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3111"/>
+        <location filename="../ViewManager/ViewManager.py" line="3109"/>
         <source>Quicksearch backwards</source>
         <translation>向后快速搜索</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3111"/>
+        <location filename="../ViewManager/ViewManager.py" line="3109"/>
         <source>Quicksearch &amp;backwards</source>
         <translation>向后快速搜索(&amp;b)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3111"/>
+        <location filename="../ViewManager/ViewManager.py" line="3109"/>
         <source>Ctrl+Shift+J</source>
         <comment>Search|Quicksearch backwards</comment>
         <translation>Ctrl+Shift+J</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3121"/>
+        <location filename="../ViewManager/ViewManager.py" line="3119"/>
         <source>Perform a quicksearch backwards</source>
         <translation>执行快速向后搜索</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3124"/>
+        <location filename="../ViewManager/ViewManager.py" line="3122"/>
         <source>&lt;b&gt;Quicksearch backwards&lt;/b&gt;&lt;p&gt;This searches the previous occurrence of the quicksearch text.&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="3133"/>
+        <location filename="../ViewManager/ViewManager.py" line="3131"/>
         <source>Quicksearch extend</source>
         <translation>扩展快速搜索</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3133"/>
+        <location filename="../ViewManager/ViewManager.py" line="3131"/>
         <source>Quicksearch e&amp;xtend</source>
         <translation>扩展快速搜索(&amp;X)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3133"/>
+        <location filename="../ViewManager/ViewManager.py" line="3131"/>
         <source>Ctrl+Shift+H</source>
         <comment>Search|Quicksearch extend</comment>
         <translation>Ctrl+Shift+H</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3141"/>
+        <location filename="../ViewManager/ViewManager.py" line="3139"/>
         <source>Extend the quicksearch to the end of the current word</source>
         <translation>将快速搜索文本扩展到当前文字的末尾</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3144"/>
+        <location filename="../ViewManager/ViewManager.py" line="3142"/>
         <source>&lt;b&gt;Quicksearch extend&lt;/b&gt;&lt;p&gt;This extends the quicksearch text to the end of the word currently found.&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="3160"/>
+        <source>Goto Line</source>
+        <translation>跳转行</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3152"/>
+        <source>&amp;Goto Line...</source>
+        <translation>跳转行(&amp;G)…</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3152"/>
+        <source>Ctrl+G</source>
+        <comment>Search|Goto Line</comment>
+        <translation>Ctrl+G</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3162"/>
-        <source>Goto Line</source>
-        <translation>跳转行</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3154"/>
-        <source>&amp;Goto Line...</source>
-        <translation>跳转行(&amp;G)…</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3154"/>
-        <source>Ctrl+G</source>
-        <comment>Search|Goto Line</comment>
-        <translation>Ctrl+G</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3164"/>
         <source>&lt;b&gt;Goto Line&lt;/b&gt;&lt;p&gt;Go to a specific line of text in the current editor. A dialog is shown to enter the linenumber.&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="3181"/>
+        <location filename="../ViewManager/ViewManager.py" line="3179"/>
         <source>Goto Brace</source>
         <translation>跳转括号</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3173"/>
+        <location filename="../ViewManager/ViewManager.py" line="3171"/>
         <source>Goto &amp;Brace</source>
         <translation>跳转括号(&amp;B)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3173"/>
+        <location filename="../ViewManager/ViewManager.py" line="3171"/>
         <source>Ctrl+L</source>
         <comment>Search|Goto Brace</comment>
         <translation>Ctrl+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3183"/>
+        <location filename="../ViewManager/ViewManager.py" line="3181"/>
         <source>&lt;b&gt;Goto Brace&lt;/b&gt;&lt;p&gt;Go to the matching brace in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;跳转括号&lt;/b&gt;&lt;p&gt;跳转到当前编辑器中匹配的括号处。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3261"/>
+        <location filename="../ViewManager/ViewManager.py" line="3259"/>
         <source>Search in Files</source>
         <translation>在文件中搜索</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3261"/>
+        <location filename="../ViewManager/ViewManager.py" line="3259"/>
         <source>Search in &amp;Files...</source>
         <translation>在文件中搜索(&amp;F)…</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3261"/>
+        <location filename="../ViewManager/ViewManager.py" line="3259"/>
         <source>Shift+Ctrl+F</source>
         <comment>Search|Search Files</comment>
         <translation>Shift+Ctrl+F</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3267"/>
+        <source>Search for a text in files</source>
+        <translation>在文件中搜索文本</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3269"/>
-        <source>Search for a text in files</source>
-        <translation>在文件中搜索文本</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3271"/>
         <source>&lt;b&gt;Search in Files&lt;/b&gt;&lt;p&gt;Search for some text in the files of a directory tree or the project. A dialog is shown to enter the searchtext and options for the search and to display the result.&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="3281"/>
+        <location filename="../ViewManager/ViewManager.py" line="3279"/>
         <source>Replace in Files</source>
         <translation>在文件中替换</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3281"/>
+        <location filename="../ViewManager/ViewManager.py" line="3279"/>
         <source>Replace in F&amp;iles...</source>
         <translation>在文件中替换(&amp;I)…</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3281"/>
+        <location filename="../ViewManager/ViewManager.py" line="3279"/>
         <source>Shift+Ctrl+R</source>
         <comment>Search|Replace in Files</comment>
         <translation>Shift+Ctrl+R</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3286"/>
+        <source>Search for a text in files and replace it</source>
+        <translation>在文件中搜索文本并替换之</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3288"/>
-        <source>Search for a text in files and replace it</source>
-        <translation>在文件中搜索文本并替换之</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3290"/>
         <source>&lt;b&gt;Replace in Files&lt;/b&gt;&lt;p&gt;Search for some text in the files of a directory tree or the project and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and to display the result.&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="3408"/>
+        <location filename="../ViewManager/ViewManager.py" line="3406"/>
         <source>&lt;p&gt;Enter the searchtext directly into this field. The search will be performed case insensitive. The quicksearch function is activated upon activation of the quicksearch next action (default key Ctrl+Shift+K), if this entry field does not have the input focus. Otherwise it searches for the next occurrence of the text entered. The quicksearch backwards action (default key Ctrl+Shift+J) searches backward. Activating the &apos;quicksearch extend&apos; action (default key Ctrl+Shift+H) extends the current searchtext to the end of the currently found word. The quicksearch can be ended by pressing the Return key while the quicksearch entry has the the input focus.&lt;/p&gt;</source>
         <translation>&lt;p&gt;将搜索文本直接输入到该区域。搜索区别大小写。如果该输入区域没有输入焦点,则快速搜索功能在“快速搜索下一个”动作(默认键:Ctrl+Shift+K)激活时被激活,否则将搜索输入文本下一次出现的位置。“向后快速搜索”动作(默认键:Ctrl+Shift+J)向后搜索。启动“扩展快速搜索”动作(默认键:Ctrl+Shift+H)将扩展当前搜索文本到当前找到文字的结尾。可在快速搜索条目具有输入焦点时按下回车键以开启快速搜索功能。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3435"/>
+        <location filename="../ViewManager/ViewManager.py" line="3433"/>
         <source>Quicksearch Textedit</source>
         <translation>快速搜索文本编辑</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3487"/>
         <source>Zoom in</source>
         <translation>放大</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3487"/>
         <source>Zoom &amp;in</source>
         <translation>放大(&amp;I)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3487"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation>Ctrl++</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3496"/>
+        <source>Zoom in on the text</source>
+        <translation>放大显示文本</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3498"/>
-        <source>Zoom in on the text</source>
-        <translation>放大显示文本</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3500"/>
         <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="3508"/>
+        <location filename="../ViewManager/ViewManager.py" line="3506"/>
         <source>Zoom out</source>
         <translation>缩小</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3508"/>
+        <location filename="../ViewManager/ViewManager.py" line="3506"/>
         <source>Zoom &amp;out</source>
         <translation>缩小(&amp;O)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3508"/>
+        <location filename="../ViewManager/ViewManager.py" line="3506"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation>Ctrl+-</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3515"/>
+        <source>Zoom out on the text</source>
+        <translation>缩小显示文本</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3517"/>
-        <source>Zoom out on the text</source>
-        <translation>缩小显示文本</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3519"/>
         <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="3546"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>Zoom</source>
         <translation>缩放</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3546"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>&amp;Zoom</source>
         <translation>缩放(&amp;Z)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3546"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>Ctrl+#</source>
         <comment>View|Zoom</comment>
         <translation>Ctrl+#</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3554"/>
+        <location filename="../ViewManager/ViewManager.py" line="3552"/>
         <source>Zoom the text</source>
         <translation>缩放文本</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3556"/>
+        <location filename="../ViewManager/ViewManager.py" line="3554"/>
         <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>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3567"/>
+        <source>Toggle all folds</source>
+        <translation>开关所有折叠</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3563"/>
+        <source>&amp;Toggle all folds</source>
+        <translation type="unfinished">开关所有折叠(&amp;A)</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3569"/>
-        <source>Toggle all folds</source>
-        <translation>开关所有折叠</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3565"/>
-        <source>&amp;Toggle all folds</source>
-        <translation type="unfinished">开关所有折叠(&amp;A)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3571"/>
         <source>&lt;b&gt;Toggle all folds&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;开关所有折叠&lt;/b&gt;&lt;p&gt;打开或关闭当前编辑器的所有折叠。&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3583"/>
+        <source>Toggle all folds (including children)</source>
+        <translation>开关所有折叠(包含子项)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3577"/>
+        <source>Toggle all &amp;folds (including children)</source>
+        <translation>开关所有折叠(&amp;F)(包含子项)</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3585"/>
-        <source>Toggle all folds (including children)</source>
-        <translation>开关所有折叠(包含子项)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3579"/>
-        <source>Toggle all &amp;folds (including children)</source>
-        <translation>开关所有折叠(&amp;F)(包含子项)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3587"/>
         <source>&lt;b&gt;Toggle all folds (including children)&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor including all children.&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="3599"/>
+        <source>Toggle current fold</source>
+        <translation>开关当前折叠</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3595"/>
+        <source>Toggle &amp;current fold</source>
+        <translation>开关当前折叠(&amp;C)</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3601"/>
-        <source>Toggle current fold</source>
-        <translation>开关当前折叠</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3597"/>
-        <source>Toggle &amp;current fold</source>
-        <translation>开关当前折叠(&amp;C)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3603"/>
         <source>&lt;b&gt;Toggle current fold&lt;/b&gt;&lt;p&gt;Toggle the folds of the current line of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;开关当前折叠&lt;/b&gt;&lt;p&gt;打开或关闭当前编辑器的当前行中的折叠。&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3631"/>
+        <source>Remove all highlights</source>
+        <translation>取消所有高亮</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3633"/>
-        <source>Remove all highlights</source>
-        <translation>取消所有高亮</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3635"/>
         <source>&lt;b&gt;Remove all highlights&lt;/b&gt;&lt;p&gt;Remove the highlights of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;取消所有高亮&lt;/b&gt;&lt;p&gt;取消所有编辑器中的高亮。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3681"/>
+        <location filename="../ViewManager/ViewManager.py" line="3679"/>
         <source>Split view</source>
         <translation>拆分视图</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3681"/>
+        <location filename="../ViewManager/ViewManager.py" line="3679"/>
         <source>&amp;Split view</source>
         <translation>拆分视图(&amp;S)</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3684"/>
+        <source>Add a split to the view</source>
+        <translation>对视图进行拆分</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3686"/>
-        <source>Add a split to the view</source>
-        <translation>对视图进行拆分</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3688"/>
         <source>&lt;b&gt;Split view&lt;/b&gt;&lt;p&gt;Add a split to the view.&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="3696"/>
+        <location filename="../ViewManager/ViewManager.py" line="3694"/>
         <source>Arrange horizontally</source>
         <translation>水平排列</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3696"/>
+        <location filename="../ViewManager/ViewManager.py" line="3694"/>
         <source>Arrange &amp;horizontally</source>
         <translation>水平排列(&amp;H)</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3698"/>
+        <source>Arrange the splitted views horizontally</source>
+        <translation>将拆分的视图进行水平排列</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3700"/>
-        <source>Arrange the splitted views horizontally</source>
-        <translation>将拆分的视图进行水平排列</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3702"/>
         <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&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="3711"/>
+        <location filename="../ViewManager/ViewManager.py" line="3709"/>
         <source>Remove split</source>
         <translation>移除拆分</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3711"/>
+        <location filename="../ViewManager/ViewManager.py" line="3709"/>
         <source>&amp;Remove split</source>
         <translation>移除拆分(&amp;R)</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3714"/>
+        <source>Remove the current split</source>
+        <translation>移除当前拆分</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3716"/>
-        <source>Remove the current split</source>
-        <translation>移除当前拆分</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3718"/>
         <source>&lt;b&gt;Remove split&lt;/b&gt;&lt;p&gt;Remove the current split.&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="3726"/>
+        <location filename="../ViewManager/ViewManager.py" line="3724"/>
         <source>Next split</source>
         <translation>下一个拆分</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3726"/>
+        <location filename="../ViewManager/ViewManager.py" line="3724"/>
         <source>&amp;Next split</source>
         <translation>下一个拆分(&amp;N)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3726"/>
+        <location filename="../ViewManager/ViewManager.py" line="3724"/>
         <source>Ctrl+Alt+N</source>
         <comment>View|Next split</comment>
         <translation>Ctrl+Alt+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3733"/>
+        <location filename="../ViewManager/ViewManager.py" line="3731"/>
         <source>Move to the next split</source>
         <translation>移动到下一个拆分中</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3735"/>
+        <location filename="../ViewManager/ViewManager.py" line="3733"/>
         <source>&lt;b&gt;Next split&lt;/b&gt;&lt;p&gt;Move to the next split.&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="3743"/>
+        <location filename="../ViewManager/ViewManager.py" line="3741"/>
         <source>Previous split</source>
         <translation>上一个拆分</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3743"/>
+        <location filename="../ViewManager/ViewManager.py" line="3741"/>
         <source>&amp;Previous split</source>
         <translation>上一个拆分(&amp;P)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3743"/>
+        <location filename="../ViewManager/ViewManager.py" line="3741"/>
         <source>Ctrl+Alt+P</source>
         <comment>View|Previous split</comment>
         <translation>Ctrl+Alt+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3749"/>
+        <location filename="../ViewManager/ViewManager.py" line="3747"/>
         <source>Move to the previous split</source>
         <translation>移动到上一个拆分中</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3751"/>
+        <location filename="../ViewManager/ViewManager.py" line="3749"/>
         <source>&lt;b&gt;Previous split&lt;/b&gt;&lt;p&gt;Move to the previous split.&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="3835"/>
+        <location filename="../ViewManager/ViewManager.py" line="3833"/>
         <source>&amp;View</source>
         <translation>视图(&amp;V)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3872"/>
+        <location filename="../ViewManager/ViewManager.py" line="3870"/>
         <source>View</source>
         <translation>视图</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3906"/>
+        <source>Start Macro Recording</source>
+        <translation>开始宏录制</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3900"/>
+        <source>S&amp;tart Macro Recording</source>
+        <translation>开始宏录制(&amp;T)</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3908"/>
-        <source>Start Macro Recording</source>
-        <translation>开始宏录制</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3902"/>
-        <source>S&amp;tart Macro Recording</source>
-        <translation>开始宏录制(&amp;T)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3910"/>
         <source>&lt;b&gt;Start Macro Recording&lt;/b&gt;&lt;p&gt;Start recording editor commands into a new macro.&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="3920"/>
+        <source>Stop Macro Recording</source>
+        <translation>中止宏录制</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3916"/>
+        <source>Sto&amp;p Macro Recording</source>
+        <translation>中止宏录制(&amp;P)</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3922"/>
-        <source>Stop Macro Recording</source>
-        <translation>中止宏录制</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3918"/>
-        <source>Sto&amp;p Macro Recording</source>
-        <translation>中止宏录制(&amp;P)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3924"/>
         <source>&lt;b&gt;Stop Macro Recording&lt;/b&gt;&lt;p&gt;Stop recording editor commands into a new macro.&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="3934"/>
+        <source>Run Macro</source>
+        <translation>运行宏</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3930"/>
+        <source>&amp;Run Macro</source>
+        <translation>运行宏(&amp;R)</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3936"/>
-        <source>Run Macro</source>
-        <translation>运行宏</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3932"/>
-        <source>&amp;Run Macro</source>
-        <translation>运行宏(&amp;R)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3938"/>
         <source>&lt;b&gt;Run Macro&lt;/b&gt;&lt;p&gt;Run a previously recorded editor macro.&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="3948"/>
+        <source>Delete Macro</source>
+        <translation>删除宏</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3944"/>
+        <source>&amp;Delete Macro</source>
+        <translation>删除宏(&amp;D)</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3950"/>
-        <source>Delete Macro</source>
-        <translation>删除宏</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3946"/>
-        <source>&amp;Delete Macro</source>
-        <translation>删除宏(&amp;D)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3952"/>
         <source>&lt;b&gt;Delete Macro&lt;/b&gt;&lt;p&gt;Delete a previously recorded editor macro.&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="3962"/>
+        <source>Load Macro</source>
+        <translation>载入宏</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3958"/>
+        <source>&amp;Load Macro</source>
+        <translation>载入宏(&amp;L)</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3964"/>
-        <source>Load Macro</source>
-        <translation>载入宏</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3960"/>
-        <source>&amp;Load Macro</source>
-        <translation>载入宏(&amp;L)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3966"/>
         <source>&lt;b&gt;Load Macro&lt;/b&gt;&lt;p&gt;Load an editor macro from a file.&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="3976"/>
+        <source>Save Macro</source>
+        <translation>保存宏</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3972"/>
+        <source>&amp;Save Macro</source>
+        <translation>保存宏(&amp;S)</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3978"/>
-        <source>Save Macro</source>
-        <translation>保存宏</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3974"/>
-        <source>&amp;Save Macro</source>
-        <translation>保存宏(&amp;S)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3980"/>
         <source>&lt;b&gt;Save Macro&lt;/b&gt;&lt;p&gt;Save a previously recorded editor macro to a file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;保存宏&lt;/b&gt;&lt;p&gt;将前面录制好的编辑器宏保存到一个文件中。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3996"/>
+        <location filename="../ViewManager/ViewManager.py" line="3994"/>
         <source>&amp;Macros</source>
         <translation>宏(&amp;M)</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4020"/>
+        <source>Toggle Bookmark</source>
+        <translation>切换书签</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <source>&amp;Toggle Bookmark</source>
+        <translation>切换书签(&amp;T)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <source>Alt+Ctrl+T</source>
+        <comment>Bookmark|Toggle</comment>
+        <translation>Alt+Ctrl+T</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4022"/>
-        <source>Toggle Bookmark</source>
-        <translation>切换书签</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4014"/>
-        <source>&amp;Toggle Bookmark</source>
-        <translation>切换书签(&amp;T)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4014"/>
-        <source>Alt+Ctrl+T</source>
-        <comment>Bookmark|Toggle</comment>
-        <translation>Alt+Ctrl+T</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4024"/>
         <source>&lt;b&gt;Toggle Bookmark&lt;/b&gt;&lt;p&gt;Toggle a bookmark at the current line of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;切换书签&lt;/b&gt;&lt;p&gt;在当前编辑器的当前行打开或关闭书签。&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4039"/>
+        <source>Next Bookmark</source>
+        <translation>下一个书签</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4031"/>
+        <source>&amp;Next Bookmark</source>
+        <translation>下一个书签(&amp;N)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4031"/>
+        <source>Ctrl+PgDown</source>
+        <comment>Bookmark|Next</comment>
+        <translation>Ctrl+PgDown</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4041"/>
-        <source>Next Bookmark</source>
-        <translation>下一个书签</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4033"/>
-        <source>&amp;Next Bookmark</source>
-        <translation>下一个书签(&amp;N)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4033"/>
-        <source>Ctrl+PgDown</source>
-        <comment>Bookmark|Next</comment>
-        <translation>Ctrl+PgDown</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4043"/>
         <source>&lt;b&gt;Next Bookmark&lt;/b&gt;&lt;p&gt;Go to next bookmark of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;下一个书签&lt;/b&gt;&lt;p&gt;跳转到当前编辑器的下一个书签处。&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4057"/>
+        <source>Previous Bookmark</source>
+        <translation>上一个书签</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4049"/>
+        <source>&amp;Previous Bookmark</source>
+        <translation>上一个书签(&amp;P)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4049"/>
+        <source>Ctrl+PgUp</source>
+        <comment>Bookmark|Previous</comment>
+        <translation>Ctrl+PgUp</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4059"/>
-        <source>Previous Bookmark</source>
-        <translation>上一个书签</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4051"/>
-        <source>&amp;Previous Bookmark</source>
-        <translation>上一个书签(&amp;P)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4051"/>
-        <source>Ctrl+PgUp</source>
-        <comment>Bookmark|Previous</comment>
-        <translation>Ctrl+PgUp</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4061"/>
         <source>&lt;b&gt;Previous Bookmark&lt;/b&gt;&lt;p&gt;Go to previous bookmark of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;上一个书签&lt;/b&gt;&lt;p&gt;跳转到当前编辑器的上一个书签处。&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4074"/>
+        <source>Clear Bookmarks</source>
+        <translation>清除书签</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <source>&amp;Clear Bookmarks</source>
+        <translation>清除书签(&amp;C)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <source>Alt+Ctrl+C</source>
+        <comment>Bookmark|Clear</comment>
+        <translation>Alt+Ctrl+C</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4076"/>
-        <source>Clear Bookmarks</source>
-        <translation>清除书签</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4069"/>
-        <source>&amp;Clear Bookmarks</source>
-        <translation>清除书签(&amp;C)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4069"/>
-        <source>Alt+Ctrl+C</source>
-        <comment>Bookmark|Clear</comment>
-        <translation>Alt+Ctrl+C</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4078"/>
         <source>&lt;b&gt;Clear Bookmarks&lt;/b&gt;&lt;p&gt;Clear bookmarks of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;清除书签&lt;/b&gt;&lt;p&gt;清除所有编辑器的书签。&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4090"/>
+        <source>Goto Syntax Error</source>
+        <translation>转到语法错误处</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4084"/>
+        <source>&amp;Goto Syntax Error</source>
+        <translation>转到语法错误处(&amp;G)</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4092"/>
-        <source>Goto Syntax Error</source>
-        <translation>转到语法错误处</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4086"/>
-        <source>&amp;Goto Syntax Error</source>
-        <translation>转到语法错误处(&amp;G)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4094"/>
         <source>&lt;b&gt;Goto Syntax Error&lt;/b&gt;&lt;p&gt;Go to next syntax error of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;转到语法错误处&lt;/b&gt;&lt;p&gt;跳转到当前编辑器的下一个语法错误处。&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4105"/>
+        <source>Clear Syntax Errors</source>
+        <translation>清除语法错误</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4100"/>
+        <source>Clear &amp;Syntax Errors</source>
+        <translation>清除语法错误(&amp;S)</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4107"/>
-        <source>Clear Syntax Errors</source>
-        <translation>清除语法错误</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4102"/>
-        <source>Clear &amp;Syntax Errors</source>
-        <translation>清除语法错误(&amp;S)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4109"/>
         <source>&lt;b&gt;Clear Syntax Errors&lt;/b&gt;&lt;p&gt;Clear syntax errors of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;清除语法错误&lt;/b&gt;&lt;p&gt;清除所有编辑器的语法错误。&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4175"/>
+        <source>Next uncovered line</source>
+        <translation>下一个未覆盖行</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4169"/>
+        <source>&amp;Next uncovered line</source>
+        <translation>下一个未覆盖行(&amp;N)</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4177"/>
-        <source>Next uncovered line</source>
-        <translation>下一个未覆盖行</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4171"/>
-        <source>&amp;Next uncovered line</source>
-        <translation>下一个未覆盖行(&amp;N)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4179"/>
         <source>&lt;b&gt;Next uncovered line&lt;/b&gt;&lt;p&gt;Go to next line of the current editor marked as not covered.&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="4194"/>
+        <source>Previous uncovered line</source>
+        <translation>上一个未覆盖行</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4186"/>
+        <source>&amp;Previous uncovered line</source>
+        <translation>上一个未覆盖行(&amp;P)</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4196"/>
-        <source>Previous uncovered line</source>
-        <translation>上一个未覆盖行</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4188"/>
-        <source>&amp;Previous uncovered line</source>
-        <translation>上一个未覆盖行(&amp;P)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4198"/>
         <source>&lt;b&gt;Previous uncovered line&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor marked as not covered.&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="4212"/>
+        <source>Next Task</source>
+        <translation>下一个任务</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4206"/>
+        <source>&amp;Next Task</source>
+        <translation>下一个任务(&amp;N)</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4214"/>
-        <source>Next Task</source>
-        <translation>下一个任务</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4208"/>
-        <source>&amp;Next Task</source>
-        <translation>下一个任务(&amp;N)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4216"/>
         <source>&lt;b&gt;Next Task&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a task.&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="4229"/>
+        <source>Previous Task</source>
+        <translation>上一个任务</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4222"/>
+        <source>&amp;Previous Task</source>
+        <translation>上一个任务(&amp;P)</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4231"/>
-        <source>Previous Task</source>
-        <translation>上一个任务</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4224"/>
-        <source>&amp;Previous Task</source>
-        <translation>上一个任务(&amp;P)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4233"/>
         <source>&lt;b&gt;Previous Task&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a task.&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="4287"/>
+        <location filename="../ViewManager/ViewManager.py" line="4285"/>
         <source>&amp;Bookmarks</source>
         <translation>书签(&amp;B)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4333"/>
+        <location filename="../ViewManager/ViewManager.py" line="4331"/>
         <source>Bookmarks</source>
         <translation>书签</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4366"/>
+        <location filename="../ViewManager/ViewManager.py" line="4364"/>
         <source>Shift+F7</source>
         <comment>Spelling|Spell Check</comment>
         <translation>Shift+F7</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4375"/>
+        <location filename="../ViewManager/ViewManager.py" line="4373"/>
         <source>Perform spell check of current editor</source>
         <translation>对当前编辑器进行拼写检查</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4385"/>
+        <location filename="../ViewManager/ViewManager.py" line="4383"/>
         <source>Automatic spell checking</source>
         <translation>自动拼写检查</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4385"/>
+        <location filename="../ViewManager/ViewManager.py" line="4383"/>
         <source>&amp;Automatic spell checking</source>
         <translation>自动拼写检查(&amp;A)</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4391"/>
+        <source>(De-)Activate automatic spell checking</source>
+        <translation>(不)激活自动拼写检查</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4393"/>
-        <source>(De-)Activate automatic spell checking</source>
-        <translation>(不)激活自动拼写检查</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4395"/>
         <source>&lt;b&gt;Automatic spell checking&lt;/b&gt;&lt;p&gt;Activate or deactivate the automatic spell checking function of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;自动拼写检查&lt;/b&gt;&lt;p&gt;激活或不激活所有编辑器的自动拼写检查功能。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4462"/>
+        <location filename="../ViewManager/ViewManager.py" line="4460"/>
         <source>Spelling</source>
         <translation>拼写法</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4485"/>
+        <location filename="../ViewManager/ViewManager.py" line="4483"/>
         <source>Open files</source>
         <translation>打开多个文件</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4529"/>
+        <location filename="../ViewManager/ViewManager.py" line="4527"/>
         <source>File Modified</source>
         <translation>文件已改变</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5373"/>
+        <location filename="../ViewManager/ViewManager.py" line="5371"/>
         <source>&amp;Clear</source>
         <translation>清除(&amp;C)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5367"/>
+        <location filename="../ViewManager/ViewManager.py" line="5365"/>
         <source>&amp;Add</source>
         <translation>添加(&amp;A)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5370"/>
+        <location filename="../ViewManager/ViewManager.py" line="5368"/>
         <source>&amp;Edit...</source>
         <translation>编辑(&amp;E)…</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4529"/>
+        <location filename="../ViewManager/ViewManager.py" line="4527"/>
         <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="../ViewManager/ViewManager.py" line="4928"/>
+        <location filename="../ViewManager/ViewManager.py" line="4926"/>
         <source>Line: {0:5}</source>
         <translation>行:{0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4934"/>
+        <location filename="../ViewManager/ViewManager.py" line="4932"/>
         <source>Pos: {0:5}</source>
         <translation>列:{0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4124"/>
+        <location filename="../ViewManager/ViewManager.py" line="4122"/>
         <source>Next warning message</source>
         <translation>下一个警告消息</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4118"/>
+        <location filename="../ViewManager/ViewManager.py" line="4116"/>
         <source>&amp;Next warning message</source>
         <translation>下一个警告消息(&amp;N)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4143"/>
+        <location filename="../ViewManager/ViewManager.py" line="4141"/>
         <source>Previous warning message</source>
         <translation>上一个警告消息</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4135"/>
+        <location filename="../ViewManager/ViewManager.py" line="4133"/>
         <source>&amp;Previous warning message</source>
         <translation>上一个警告消息(&amp;P)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4161"/>
+        <location filename="../ViewManager/ViewManager.py" line="4159"/>
         <source>Clear Warning Messages</source>
         <translation>清空警告消息</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4154"/>
+        <location filename="../ViewManager/ViewManager.py" line="4152"/>
         <source>Clear &amp;Warning Messages</source>
         <translation>清空警告消息(&amp;W)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1082"/>
+        <location filename="../ViewManager/ViewManager.py" line="1081"/>
         <source>Join Lines</source>
         <translation>合并行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1075"/>
+        <location filename="../ViewManager/ViewManager.py" line="1074"/>
         <source>Ctrl+J</source>
         <comment>Edit|Join Lines</comment>
         <translation>Ctrl+J</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1084"/>
+        <location filename="../ViewManager/ViewManager.py" line="1083"/>
         <source>&lt;b&gt;Join Lines&lt;/b&gt;&lt;p&gt;Join the current and the next lines.&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="3202"/>
+        <location filename="../ViewManager/ViewManager.py" line="3200"/>
         <source>Goto Last Edit Location</source>
         <translation>跳转至上一次编辑位置</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3191"/>
+        <location filename="../ViewManager/ViewManager.py" line="3189"/>
         <source>Goto Last &amp;Edit Location</source>
         <translation>跳转至上一次编辑位置(&amp;E)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3191"/>
+        <location filename="../ViewManager/ViewManager.py" line="3189"/>
         <source>Ctrl+Shift+G</source>
         <comment>Search|Goto Last Edit Location</comment>
         <translation>Ctrl+Shift+G</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3205"/>
+        <location filename="../ViewManager/ViewManager.py" line="3203"/>
         <source>&lt;b&gt;Goto Last Edit Location&lt;/b&gt;&lt;p&gt;Go to the location of the last edit in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;跳转至上一次编辑位置&lt;/b&gt;前往当前编辑器上一次编辑的位置。&lt;/b&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3214"/>
+        <location filename="../ViewManager/ViewManager.py" line="3212"/>
         <source>Goto Previous Method or Class</source>
         <translation>跳转至上一个方法或类</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3214"/>
+        <location filename="../ViewManager/ViewManager.py" line="3212"/>
         <source>Ctrl+Shift+Up</source>
         <comment>Search|Goto Previous Method or Class</comment>
         <translation>Ctrl+Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3224"/>
+        <location filename="../ViewManager/ViewManager.py" line="3222"/>
         <source>Go to the previous method or class definition</source>
         <translation>跳转之上一个方法或类的定义</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3228"/>
+        <location filename="../ViewManager/ViewManager.py" line="3226"/>
         <source>&lt;b&gt;Goto Previous Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the previous method or class definition and highlights the name.&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="3238"/>
+        <location filename="../ViewManager/ViewManager.py" line="3236"/>
         <source>Goto Next Method or Class</source>
         <translation>跳转至下一个方法或类</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3238"/>
+        <location filename="../ViewManager/ViewManager.py" line="3236"/>
         <source>Ctrl+Shift+Down</source>
         <comment>Search|Goto Next Method or Class</comment>
         <translation>Ctrl+Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3248"/>
+        <location filename="../ViewManager/ViewManager.py" line="3246"/>
         <source>Go to the next method or class definition</source>
         <translation>跳转之下一个方法或类的定义</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3250"/>
+        <location filename="../ViewManager/ViewManager.py" line="3248"/>
         <source>&lt;b&gt;Goto Next Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the next method or class definition and highlights the name.&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="3759"/>
+        <location filename="../ViewManager/ViewManager.py" line="3757"/>
         <source>Preview</source>
         <translation>预览</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3762"/>
+        <source>Preview the current file in the web browser</source>
+        <translation>在网页浏览器中预览当前文件</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3764"/>
-        <source>Preview the current file in the web browser</source>
-        <translation>在网页浏览器中预览当前文件</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3766"/>
         <source>&lt;b&gt;Preview&lt;/b&gt;&lt;p&gt;This opens the web browser with a preview of the current file.&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="1490"/>
+        <location filename="../ViewManager/ViewManager.py" line="1489"/>
         <source>Meta+B</source>
         <translation>Meta+B</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1503"/>
+        <location filename="../ViewManager/ViewManager.py" line="1502"/>
         <source>Meta+F</source>
         <translation>Meta+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1515"/>
+        <location filename="../ViewManager/ViewManager.py" line="1514"/>
         <source>Meta+P</source>
         <translation>Meta+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1527"/>
+        <location filename="../ViewManager/ViewManager.py" line="1526"/>
         <source>Meta+N</source>
         <translation>Meta+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1588"/>
+        <location filename="../ViewManager/ViewManager.py" line="1587"/>
         <source>Move to first visible character in document line</source>
         <translation>移动至文档行的第一个可见字符</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1604"/>
+        <location filename="../ViewManager/ViewManager.py" line="1603"/>
         <source>Move to start of display line</source>
         <translation>移动至所显示行的起始位置</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1621"/>
+        <location filename="../ViewManager/ViewManager.py" line="1620"/>
         <source>Move to end of document line</source>
         <translation>移动至文档行的末尾</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1629"/>
+        <location filename="../ViewManager/ViewManager.py" line="1628"/>
         <source>Meta+E</source>
         <translation>Meta+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1697"/>
+        <location filename="../ViewManager/ViewManager.py" line="1696"/>
         <source>Meta+V</source>
         <translation>Meta+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1703"/>
+        <location filename="../ViewManager/ViewManager.py" line="1702"/>
         <source>Move to start of document</source>
         <translation>移动至文档的起始位置</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1720"/>
+        <location filename="../ViewManager/ViewManager.py" line="1719"/>
         <source>Move to end of document</source>
         <translation>移动至文档的末尾</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1765"/>
+        <location filename="../ViewManager/ViewManager.py" line="1764"/>
         <source>Meta+Shift+B</source>
         <translation>Meta+Shift+B</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1780"/>
+        <location filename="../ViewManager/ViewManager.py" line="1779"/>
         <source>Meta+Shift+F</source>
         <translation>Meta+Shift+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1795"/>
+        <location filename="../ViewManager/ViewManager.py" line="1794"/>
         <source>Meta+Shift+P</source>
         <translation>Meta+Shift+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1810"/>
+        <location filename="../ViewManager/ViewManager.py" line="1809"/>
         <source>Meta+Shift+N</source>
         <translation>Meta+Shift+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1878"/>
+        <location filename="../ViewManager/ViewManager.py" line="1877"/>
         <source>Extend selection to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1896"/>
+        <location filename="../ViewManager/ViewManager.py" line="1895"/>
         <source>Extend selection to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1904"/>
+        <location filename="../ViewManager/ViewManager.py" line="1903"/>
         <source>Meta+Shift+E</source>
         <translation>Meta+Shift+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1961"/>
+        <location filename="../ViewManager/ViewManager.py" line="1960"/>
         <source>Meta+Shift+V</source>
         <translation>Meta+Shift+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1967"/>
+        <location filename="../ViewManager/ViewManager.py" line="1966"/>
         <source>Extend selection to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1975"/>
+        <location filename="../ViewManager/ViewManager.py" line="1974"/>
         <source>Ctrl+Shift+Up</source>
         <translation>Ctrl+Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1984"/>
+        <location filename="../ViewManager/ViewManager.py" line="1983"/>
         <source>Extend selection to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1992"/>
+        <location filename="../ViewManager/ViewManager.py" line="1991"/>
         <source>Ctrl+Shift+Down</source>
         <translation>Ctrl+Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2010"/>
+        <location filename="../ViewManager/ViewManager.py" line="2009"/>
         <source>Meta+H</source>
         <translation>Meta+H</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2019"/>
+        <location filename="../ViewManager/ViewManager.py" line="2018"/>
         <source>Delete previous character if not at start of line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2040"/>
+        <location filename="../ViewManager/ViewManager.py" line="2039"/>
         <source>Meta+D</source>
         <translation>Meta+D</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2084"/>
+        <location filename="../ViewManager/ViewManager.py" line="2083"/>
         <source>Meta+K</source>
         <translation>Meta+K</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2194"/>
+        <location filename="../ViewManager/ViewManager.py" line="2192"/>
         <source>Move to end of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2211"/>
+        <location filename="../ViewManager/ViewManager.py" line="2209"/>
         <source>Extend selection to end of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2253"/>
+        <location filename="../ViewManager/ViewManager.py" line="2251"/>
         <source>Meta+Alt+Shift+N</source>
         <translation>Meta+Alt+Shift+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2268"/>
+        <location filename="../ViewManager/ViewManager.py" line="2266"/>
         <source>Meta+Alt+Shift+P</source>
         <translation>Meta+Alt+Shift+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2286"/>
+        <location filename="../ViewManager/ViewManager.py" line="2284"/>
         <source>Meta+Alt+Shift+B</source>
         <translation>Meta+Alt+Shift+B</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2304"/>
+        <location filename="../ViewManager/ViewManager.py" line="2302"/>
         <source>Meta+Alt+Shift+F</source>
         <translation>Meta+Alt+Shift+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2310"/>
+        <location filename="../ViewManager/ViewManager.py" line="2308"/>
         <source>Extend rectangular selection to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2329"/>
+        <location filename="../ViewManager/ViewManager.py" line="2327"/>
         <source>Extend rectangular selection to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2339"/>
+        <location filename="../ViewManager/ViewManager.py" line="2337"/>
         <source>Meta+Alt+Shift+E</source>
         <translation>Meta+Alt+Shift+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2342"/>
+        <location filename="../ViewManager/ViewManager.py" line="2340"/>
         <source>Alt+Shift+End</source>
         <translation>Alt+Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2363"/>
+        <location filename="../ViewManager/ViewManager.py" line="2361"/>
         <source>Alt+Shift+PgDown</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2375"/>
+        <location filename="../ViewManager/ViewManager.py" line="2373"/>
         <source>Meta+Alt+Shift+V</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2395"/>
+        <location filename="../ViewManager/ViewManager.py" line="2393"/>
         <source>Scroll to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2410"/>
+        <location filename="../ViewManager/ViewManager.py" line="2408"/>
         <source>Scroll to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2425"/>
+        <location filename="../ViewManager/ViewManager.py" line="2423"/>
         <source>Scroll vertically to center current line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2433"/>
+        <location filename="../ViewManager/ViewManager.py" line="2431"/>
         <source>Meta+L</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2440"/>
+        <location filename="../ViewManager/ViewManager.py" line="2438"/>
         <source>Move to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2455"/>
+        <location filename="../ViewManager/ViewManager.py" line="2453"/>
         <source>Extend selection to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2471"/>
+        <location filename="../ViewManager/ViewManager.py" line="2469"/>
         <source>Move to end of previous word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2483"/>
+        <location filename="../ViewManager/ViewManager.py" line="2481"/>
         <source>Extend selection to end of previous word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2495"/>
+        <location filename="../ViewManager/ViewManager.py" line="2493"/>
         <source>Move to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2503"/>
+        <location filename="../ViewManager/ViewManager.py" line="2501"/>
         <source>Meta+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2510"/>
+        <location filename="../ViewManager/ViewManager.py" line="2508"/>
         <source>Extend selection to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2521"/>
+        <location filename="../ViewManager/ViewManager.py" line="2519"/>
         <source>Meta+Shift+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2528"/>
+        <location filename="../ViewManager/ViewManager.py" line="2526"/>
         <source>Extend rectangular selection to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2538"/>
+        <location filename="../ViewManager/ViewManager.py" line="2536"/>
         <source>Meta+Alt+Shift+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2546"/>
+        <location filename="../ViewManager/ViewManager.py" line="2544"/>
         <source>Extend selection to start of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2565"/>
+        <location filename="../ViewManager/ViewManager.py" line="2563"/>
         <source>Move to start of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2579"/>
+        <location filename="../ViewManager/ViewManager.py" line="2577"/>
         <source>Extend selection to start of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2594"/>
+        <location filename="../ViewManager/ViewManager.py" line="2592"/>
         <source>Move to first visible character in display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2611"/>
+        <location filename="../ViewManager/ViewManager.py" line="2609"/>
         <source>Extend selection to first visible character in display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2628"/>
+        <location filename="../ViewManager/ViewManager.py" line="2626"/>
         <source>Move to end of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2642"/>
+        <location filename="../ViewManager/ViewManager.py" line="2640"/>
         <source>Extend selection to end of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2657"/>
+        <location filename="../ViewManager/ViewManager.py" line="2655"/>
         <source>Stuttered move up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2669"/>
+        <location filename="../ViewManager/ViewManager.py" line="2667"/>
         <source>Stuttered extend selection up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2682"/>
+        <location filename="../ViewManager/ViewManager.py" line="2680"/>
         <source>Stuttered move down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2694"/>
+        <location filename="../ViewManager/ViewManager.py" line="2692"/>
         <source>Stuttered extend selection down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2707"/>
+        <location filename="../ViewManager/ViewManager.py" line="2705"/>
         <source>Delete right to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2715"/>
+        <location filename="../ViewManager/ViewManager.py" line="2713"/>
         <source>Alt+Del</source>
         <translation>Alt+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2722"/>
+        <location filename="../ViewManager/ViewManager.py" line="2720"/>
         <source>Move selected lines up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2734"/>
+        <location filename="../ViewManager/ViewManager.py" line="2732"/>
         <source>Move selected lines down one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2348"/>
+        <location filename="../ViewManager/ViewManager.py" line="2346"/>
         <source>Alt+Shift+PgUp</source>
         <translation>Alt+Shift+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1185"/>
+        <location filename="../ViewManager/ViewManager.py" line="1184"/>
         <source>Toggle Comment</source>
         <translation>切换注释</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1185"/>
+        <location filename="../ViewManager/ViewManager.py" line="1184"/>
         <source>Ctrl+Shift+M</source>
         <comment>Edit|Toggle Comment</comment>
         <translation>Ctrl+Shift+M</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1193"/>
+        <location filename="../ViewManager/ViewManager.py" line="1192"/>
         <source>Toggle the comment of the current line, selection or comment block</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1197"/>
+        <location filename="../ViewManager/ViewManager.py" line="1196"/>
         <source>&lt;b&gt;Toggle Comment&lt;/b&gt;&lt;p&gt;If the current line does not start with a block comment, the current line or selection is commented. If it is already commented, this comment block is uncommented. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3525"/>
         <source>Zoom reset</source>
         <translation>重置缩放</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3525"/>
         <source>Zoom &amp;reset</source>
         <translation>重置缩放(&amp;R)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3525"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation>Ctrl+0</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3535"/>
+        <location filename="../ViewManager/ViewManager.py" line="3533"/>
         <source>Reset the zoom of the text</source>
         <translation>重置文本缩放大小</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3537"/>
+        <location filename="../ViewManager/ViewManager.py" line="3535"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3487"/>
         <source>Zoom In</source>
         <comment>View|Zoom in</comment>
         <translation>放大</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3508"/>
+        <location filename="../ViewManager/ViewManager.py" line="3506"/>
         <source>Zoom Out</source>
         <comment>View|Zoom out</comment>
         <translation>缩小</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="764"/>
+        <location filename="../ViewManager/ViewManager.py" line="763"/>
         <source>Save a&amp;ll</source>
         <translation>全部保存(&amp;A)</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4246"/>
+        <source>Next Change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4240"/>
+        <source>&amp;Next Change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4248"/>
-        <source>Next Change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4242"/>
-        <source>&amp;Next Change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4250"/>
         <source>&lt;b&gt;Next Change&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4264"/>
+        <source>Previous Change</source>
+        <translation>上一个更改</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4257"/>
+        <source>&amp;Previous Change</source>
+        <translation>上一个更改(&amp;P)</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4266"/>
-        <source>Previous Change</source>
-        <translation>上一个更改</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4259"/>
-        <source>&amp;Previous Change</source>
-        <translation>上一个更改(&amp;P)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4268"/>
         <source>&lt;b&gt;Previous Change&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4366"/>
+        <location filename="../ViewManager/ViewManager.py" line="4364"/>
         <source>Check spelling</source>
         <translation>检查拼写</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4366"/>
+        <location filename="../ViewManager/ViewManager.py" line="4364"/>
         <source>Check &amp;spelling...</source>
         <translation>检查拼写(&amp;S)…</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4377"/>
+        <location filename="../ViewManager/ViewManager.py" line="4375"/>
         <source>&lt;b&gt;Check spelling&lt;/b&gt;&lt;p&gt;Perform a spell check of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="4424"/>
+        <source>Edit Dictionary</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="4426"/>
-        <source>Edit Dictionary</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4428"/>
         <source>Project Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4431"/>
+        <location filename="../ViewManager/ViewManager.py" line="4429"/>
         <source>Project Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4436"/>
+        <location filename="../ViewManager/ViewManager.py" line="4434"/>
         <source>User Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4439"/>
+        <location filename="../ViewManager/ViewManager.py" line="4437"/>
         <source>User Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6639"/>
+        <location filename="../ViewManager/ViewManager.py" line="6637"/>
         <source>Edit Spelling Dictionary</source>
         <translation type="unfinished">编辑拼写字典</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6614"/>
+        <location filename="../ViewManager/ViewManager.py" line="6612"/>
         <source>Editing {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6596"/>
+        <location filename="../ViewManager/ViewManager.py" line="6594"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6626"/>
+        <location filename="../ViewManager/ViewManager.py" line="6624"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6639"/>
+        <location filename="../ViewManager/ViewManager.py" line="6637"/>
         <source>The spelling dictionary was saved successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2957"/>
+        <location filename="../ViewManager/ViewManager.py" line="2955"/>
         <source>Search current word forward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2957"/>
+        <location filename="../ViewManager/ViewManager.py" line="2955"/>
         <source>Ctrl+.</source>
         <comment>Search|Search current word forward</comment>
         <translation>Ctrl+.</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2968"/>
+        <location filename="../ViewManager/ViewManager.py" line="2966"/>
         <source>Search next occurrence of the current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2971"/>
+        <location filename="../ViewManager/ViewManager.py" line="2969"/>
         <source>&lt;b&gt;Search current word forward&lt;/b&gt;&lt;p&gt;Search the next occurrence of the current word of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2980"/>
+        <location filename="../ViewManager/ViewManager.py" line="2978"/>
         <source>Search current word backward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2980"/>
+        <location filename="../ViewManager/ViewManager.py" line="2978"/>
         <source>Ctrl+,</source>
         <comment>Search|Search current word backward</comment>
         <translation>Ctrl+,</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2991"/>
+        <location filename="../ViewManager/ViewManager.py" line="2989"/>
         <source>Search previous occurrence of the current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2994"/>
+        <location filename="../ViewManager/ViewManager.py" line="2992"/>
         <source>&lt;b&gt;Search current word backward&lt;/b&gt;&lt;p&gt;Search the previous occurrence of the current word of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3301"/>
+        <location filename="../ViewManager/ViewManager.py" line="3299"/>
         <source>Search in Open Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3301"/>
+        <location filename="../ViewManager/ViewManager.py" line="3299"/>
         <source>Search in Open Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3301"/>
+        <location filename="../ViewManager/ViewManager.py" line="3299"/>
         <source>Meta+Ctrl+Alt+F</source>
         <comment>Search|Search Open Files</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3310"/>
+        <source>Search for a text in open files</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3312"/>
-        <source>Search for a text in open files</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3314"/>
         <source>&lt;b&gt;Search in Open Files&lt;/b&gt;&lt;p&gt;Search for some text in the currently opened files. A dialog is shown to enter the searchtext and options for the search and to display the result.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3324"/>
+        <location filename="../ViewManager/ViewManager.py" line="3322"/>
         <source>Replace in Open Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3324"/>
+        <location filename="../ViewManager/ViewManager.py" line="3322"/>
         <source>Meta+Ctrl+Alt+R</source>
         <comment>Search|Replace in Open Files</comment>
         <translation>Meta+Ctrl+Alt+R</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3332"/>
+        <source>Search for a text in open files and replace it</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3334"/>
-        <source>Search for a text in open files and replace it</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3336"/>
         <source>&lt;b&gt;Replace in Open Files&lt;/b&gt;&lt;p&gt;Search for some text in the currently opened files and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and to display the result.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3324"/>
+        <location filename="../ViewManager/ViewManager.py" line="3322"/>
         <source>Replace in Open Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1450"/>
+        <location filename="../ViewManager/ViewManager.py" line="1449"/>
         <source>Sort</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1450"/>
+        <location filename="../ViewManager/ViewManager.py" line="1449"/>
         <source>Ctrl+Alt+S</source>
         <comment>Edit|Sort</comment>
         <translation>Ctrl+Alt+S</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1457"/>
+        <location filename="../ViewManager/ViewManager.py" line="1456"/>
         <source>Sort the lines containing the rectangular selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1460"/>
+        <location filename="../ViewManager/ViewManager.py" line="1459"/>
         <source>&lt;b&gt;Sort&lt;/b&gt;&lt;p&gt;Sort the lines spanned by a rectangular selection based on the selection ignoring leading and trailing whitespace.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4955"/>
+        <location filename="../ViewManager/ViewManager.py" line="4953"/>
         <source>Language: {0}</source>
         <translation>语言:{0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4962"/>
+        <location filename="../ViewManager/ViewManager.py" line="4960"/>
         <source>EOL Mode: {0}</source>
         <translation>行尾模式:{0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3643"/>
+        <location filename="../ViewManager/ViewManager.py" line="3641"/>
         <source>New Document View</source>
         <translation>新建文档视图</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3643"/>
+        <location filename="../ViewManager/ViewManager.py" line="3641"/>
         <source>New &amp;Document View</source>
         <translation>新建文档视图(&amp;D)</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3646"/>
+        <source>Open a new view of the current document</source>
+        <translation>在新视图(新选项卡)中打开当前文档</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3648"/>
-        <source>Open a new view of the current document</source>
-        <translation>在新视图(新选项卡)中打开当前文档</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3650"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.&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="3660"/>
+        <location filename="../ViewManager/ViewManager.py" line="3658"/>
         <source>New Document View (with new split)</source>
         <translation>新建文档视图(在新拆分页中)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3667"/>
+        <location filename="../ViewManager/ViewManager.py" line="3665"/>
         <source>Open a new view of the current document in a new split</source>
         <translation>在新拆分页中的新视图(新选项卡)中打开当前文档</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3670"/>
+        <location filename="../ViewManager/ViewManager.py" line="3668"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document in a new split. Both views show the same document. However, the cursors may be positioned independently.&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="4126"/>
+        <location filename="../ViewManager/ViewManager.py" line="4124"/>
         <source>&lt;b&gt;Next warning message&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation>&lt;b&gt;下一个警告信息&lt;/b&gt;&lt;p&gt;跳转至当前编辑器中下一个出现 pyflakes 警告的行。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4145"/>
+        <location filename="../ViewManager/ViewManager.py" line="4143"/>
         <source>&lt;b&gt;Previous warning message&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation>&lt;b&gt;上一个警告信息&lt;/b&gt;&lt;p&gt;跳转至当前编辑器中上一个出现 pyflakes 警告的行。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4163"/>
+        <location filename="../ViewManager/ViewManager.py" line="4161"/>
         <source>&lt;b&gt;Clear Warning Messages&lt;/b&gt;&lt;p&gt;Clear pyflakes warning messages of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;清空警告信息&lt;/b&gt;&lt;p&gt;在所有编辑器中清空 pyflakes 警告信息。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1327"/>
+        <location filename="../ViewManager/ViewManager.py" line="1326"/>
         <source>Ctrl+Space</source>
         <comment>Edit|Complete</comment>
         <translation>Ctrl+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1345"/>
+        <location filename="../ViewManager/ViewManager.py" line="1344"/>
         <source>Ctrl+Shift+Space</source>
         <comment>Edit|Complete from Document</comment>
         <translation>Ctrl+Shift+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1368"/>
+        <location filename="../ViewManager/ViewManager.py" line="1367"/>
         <source>Ctrl+Alt+Space</source>
         <comment>Edit|Complete from APIs</comment>
         <translation>Ctrl+Alt+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1391"/>
+        <location filename="../ViewManager/ViewManager.py" line="1390"/>
         <source>Alt+Shift+Space</source>
         <comment>Edit|Complete from Document and APIs</comment>
         <translation>Alt+Shift+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="748"/>
+        <location filename="../ViewManager/ViewManager.py" line="747"/>
         <source>Save Copy</source>
         <translation>保存副本</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="748"/>
+        <location filename="../ViewManager/ViewManager.py" line="747"/>
         <source>Save &amp;Copy...</source>
         <translation>保存副本(&amp;C)…</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="753"/>
+        <location filename="../ViewManager/ViewManager.py" line="752"/>
         <source>Save a copy of the current file</source>
         <translation>保存当前文件的一个副本</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="755"/>
+        <location filename="../ViewManager/ViewManager.py" line="754"/>
         <source>&lt;b&gt;Save Copy&lt;/b&gt;&lt;p&gt;Save a copy of the contents of current editor window. The file can be entered in a file selection dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;保存副本&lt;/b&gt;保存当前编辑器窗口内容的一个副本。文件可以在文件选择对话框中输入。&lt;/p&gt;</translation>
     </message>
@@ -86033,141 +86068,141 @@
         <translation>Ctrl+G</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3022"/>
+        <location filename="../ViewManager/ViewManager.py" line="3020"/>
         <source>Replace and Search</source>
         <translation type="unfinished">替换和搜索</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3022"/>
+        <location filename="../ViewManager/ViewManager.py" line="3020"/>
         <source>Meta+R</source>
         <comment>Search|Replace and Search</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3032"/>
+        <location filename="../ViewManager/ViewManager.py" line="3030"/>
         <source>Replace the found text and search the next occurrence</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3035"/>
+        <location filename="../ViewManager/ViewManager.py" line="3033"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3046"/>
+        <location filename="../ViewManager/ViewManager.py" line="3044"/>
         <source>Replace Occurrence</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3046"/>
+        <location filename="../ViewManager/ViewManager.py" line="3044"/>
         <source>Ctrl+Meta+R</source>
         <comment>Search|Replace Occurrence</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3054"/>
+        <source>Replace the found text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3056"/>
-        <source>Replace the found text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3058"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3068"/>
+        <location filename="../ViewManager/ViewManager.py" line="3066"/>
         <source>Replace All</source>
         <translation type="unfinished">替换全部</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3068"/>
+        <location filename="../ViewManager/ViewManager.py" line="3066"/>
         <source>Shift+Meta+R</source>
         <comment>Search|Replace All</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3076"/>
+        <source>Replace search text occurrences</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3078"/>
-        <source>Replace search text occurrences</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3080"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1432"/>
+        <location filename="../ViewManager/ViewManager.py" line="1431"/>
         <source>Code Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1432"/>
+        <location filename="../ViewManager/ViewManager.py" line="1431"/>
         <source>Ctrl+Alt+I</source>
         <comment>Edit|Code Info</comment>
         <translation type="unfinished">Ctrl+Alt+I</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1440"/>
+        <location filename="../ViewManager/ViewManager.py" line="1439"/>
         <source>Show Code Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1442"/>
+        <location filename="../ViewManager/ViewManager.py" line="1441"/>
         <source>&lt;b&gt;Code Info&lt;/b&gt;&lt;p&gt;Show code information based on the cursor position.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3614"/>
+        <source>Clear all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3610"/>
+        <source>Clear &amp;all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3616"/>
-        <source>Clear all folds</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3612"/>
-        <source>Clear &amp;all folds</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3618"/>
         <source>&lt;b&gt;Clear all folds&lt;/b&gt;&lt;p&gt;Clear all folds of the current editor, i.e. ensure that all lines are displayed unfolded.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2150"/>
+        <location filename="../ViewManager/ViewManager.py" line="2148"/>
         <source>Reverse selected lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2150"/>
+        <location filename="../ViewManager/ViewManager.py" line="2148"/>
         <source>Meta+Alt+R</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3776"/>
+        <location filename="../ViewManager/ViewManager.py" line="3774"/>
         <source>Python AST Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3779"/>
+        <source>Show the AST for the current Python file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3781"/>
-        <source>Show the AST for the current Python file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3783"/>
         <source>&lt;b&gt;Python AST Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the AST of the current Python source file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3793"/>
+        <location filename="../ViewManager/ViewManager.py" line="3791"/>
         <source>Python Disassembly Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="3798"/>
+        <source>Show the Disassembly for the current Python file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="3800"/>
-        <source>Show the Disassembly for the current Python file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3802"/>
         <source>&lt;b&gt;Python Disassembly Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the Disassembly of the current Python source file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -89044,7 +89079,7 @@
 <context>
     <name>WebBrowserTools</name>
     <message>
-        <location filename="../WebBrowser/Tools/WebBrowserTools.py" line="249"/>
+        <location filename="../WebBrowser/Tools/WebBrowserTools.py" line="251"/>
         <source>&lt;unknown&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -91757,57 +91792,77 @@
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="38"/>
         <source>Invalid API key.</source>
-        <translation>无效的 API 密钥。</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="39"/>
-        <source>API key has been blocked.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="40"/>
-        <source>Daily limit for requests has been reached.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="41"/>
-        <source>Daily limit for the volume of translated text reached.</source>
-        <translation type="unfinished"></translation>
+        <translation type="obsolete">无效的 API 密钥。</translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="43"/>
         <source>Text size exceeds the maximum.</source>
-        <translation>文本大小超过最大限制。</translation>
+        <translation type="obsolete">文本大小超过最大限制。</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="106"/>
+        <source>Invalid response received</source>
+        <translation type="obsolete">收到了无效的响应</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="112"/>
+        <source>Unknown error code ({0}) received.</source>
+        <translation type="obsolete">收到了未知的错误代码({0})。</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="38"/>
+        <source>Yandex: Invalid API key.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="39"/>
+        <source>Yandex: API key has been blocked.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="40"/>
+        <source>Yandex: Daily limit for requests has been reached.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="41"/>
+        <source>Yandex: Daily limit for the volume of translated text reached.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="43"/>
+        <source>Yandex: Text size exceeds the maximum.</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="44"/>
-        <source>Text could not be translated.</source>
+        <source>Yandex: Text could not be translated.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="45"/>
-        <source>The specified translation direction is not supported.</source>
+        <source>Yandex: The specified translation direction is not supported.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="86"/>
-        <source>Only texts up to {0} characters are allowed.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="91"/>
-        <source>A valid Yandex key is required.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="106"/>
-        <source>Invalid response received</source>
-        <translation>收到了无效的响应</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="112"/>
-        <source>Unknown error code ({0}) received.</source>
-        <translation>收到了未知的错误代码({0})。</translation>
+        <source>Yandex: Only texts up to {0} characters are allowed.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="109"/>
+        <source>Yandex: Invalid response received</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="115"/>
+        <source>Yandex: Unknown error code ({0}) received.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/YandexEngine.py" line="94"/>
+        <source>Yandex: A valid key is required.</source>
+        <translation type="unfinished"></translation>
     </message>
 </context>
 <context>
@@ -92235,417 +92290,417 @@
 <context>
     <name>pycodestyle</name>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="24"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="22"/>
         <source>indentation contains mixed spaces and tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="27"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="25"/>
         <source>indentation is not a multiple of four</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="30"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="28"/>
         <source>expected an indented block</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="33"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="31"/>
         <source>unexpected indentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="36"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="34"/>
         <source>indentation is not a multiple of four (comment)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="39"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="37"/>
         <source>expected an indented block (comment)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="42"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="40"/>
         <source>unexpected indentation (comment)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="48"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="46"/>
         <source>continuation line indentation is not a multiple of four</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="51"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="49"/>
         <source>continuation line missing indentation or outdented</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="54"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="52"/>
         <source>closing bracket does not match indentation of opening bracket&apos;s line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="58"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="56"/>
         <source>closing bracket does not match visual indentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="61"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="59"/>
         <source>continuation line with same indent as next logical line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="64"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="62"/>
         <source>continuation line over-indented for hanging indent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="67"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="65"/>
         <source>continuation line over-indented for visual indent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="70"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="68"/>
         <source>continuation line under-indented for visual indent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="73"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="71"/>
         <source>visually indented line with same indent as next logical line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="76"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="74"/>
         <source>continuation line unaligned for hanging indent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="79"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="77"/>
         <source>closing bracket is missing indentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="82"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="80"/>
         <source>indentation contains tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="85"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="83"/>
         <source>whitespace after &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="94"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="92"/>
         <source>whitespace before &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="97"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="95"/>
         <source>multiple spaces before operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="100"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="98"/>
         <source>multiple spaces after operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="103"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="101"/>
         <source>tab before operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="106"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="104"/>
         <source>tab after operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="109"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="107"/>
         <source>missing whitespace around operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="112"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="110"/>
         <source>missing whitespace around arithmetic operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="115"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="113"/>
         <source>missing whitespace around bitwise or shift operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="118"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="116"/>
         <source>missing whitespace around modulo operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="121"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="119"/>
         <source>missing whitespace after &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="124"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="122"/>
         <source>multiple spaces after &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="127"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="125"/>
         <source>tab after &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="130"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="128"/>
         <source>unexpected spaces around keyword / parameter equals</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="136"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="134"/>
         <source>at least two spaces before inline comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="139"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="137"/>
         <source>inline comment should start with &apos;# &apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="142"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="140"/>
         <source>block comment should start with &apos;# &apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="145"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="143"/>
         <source>too many leading &apos;#&apos; for block comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="148"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="146"/>
         <source>multiple spaces after keyword</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="151"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="149"/>
         <source>multiple spaces before keyword</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="154"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="152"/>
         <source>tab after keyword</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="157"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="155"/>
         <source>tab before keyword</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="160"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="158"/>
         <source>missing whitespace after keyword</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="163"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="161"/>
         <source>trailing whitespace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="166"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="164"/>
         <source>no newline at end of file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="169"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="167"/>
         <source>blank line contains whitespace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="194"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="192"/>
         <source>too many blank lines ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="181"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="179"/>
         <source>blank lines found after function decorator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="197"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="195"/>
         <source>blank line at end of file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="200"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="198"/>
         <source>multiple imports on one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="203"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="201"/>
         <source>module level import not at top of file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="206"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="204"/>
         <source>line too long ({0} &gt; {1} characters)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="209"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="207"/>
         <source>the backslash is redundant between brackets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="212"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="210"/>
         <source>line break before binary operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="221"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="219"/>
         <source>.has_key() is deprecated, use &apos;in&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="224"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="222"/>
         <source>deprecated form of raising exception</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="227"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="225"/>
         <source>&apos;&lt;&gt;&apos; is deprecated, use &apos;!=&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="230"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="228"/>
         <source>backticks are deprecated, use &apos;repr()&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="239"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="237"/>
         <source>multiple statements on one line (colon)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="242"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="240"/>
         <source>multiple statements on one line (semicolon)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="245"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="243"/>
         <source>statement ends with a semicolon</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="248"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="246"/>
         <source>multiple statements on one line (def)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="254"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="252"/>
         <source>comparison to {0} should be {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="257"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="255"/>
         <source>test for membership should be &apos;not in&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="260"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="258"/>
         <source>test for object identity should be &apos;is not&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="263"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="261"/>
         <source>do not compare types, use &apos;isinstance()&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="269"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="267"/>
         <source>do not assign a lambda expression, use a def</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="272"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="270"/>
         <source>ambiguous variable name &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="275"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="273"/>
         <source>ambiguous class definition &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="278"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="276"/>
         <source>ambiguous function definition &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="281"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="279"/>
         <source>{0}: {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="284"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="282"/>
         <source>{0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="266"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="264"/>
         <source>do not use bare except</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="184"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="182"/>
         <source>expected {0} blank lines after class or function definition, found {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="236"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="234"/>
         <source>&apos;async&apos; and &apos;await&apos; are reserved keywords starting with Python 3.7</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="133"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="131"/>
         <source>missing whitespace around parameter equals</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="175"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="173"/>
         <source>expected {0} blank lines, found {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="188"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="186"/>
         <source>expected {0} blank lines before a nested definition, found {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="215"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="213"/>
         <source>line break after binary operator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="233"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="231"/>
         <source>invalid escape sequence &apos;\{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="191"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="189"/>
         <source>too many blank lines ({0}) before a nested definition, expected {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="178"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="176"/>
         <source>too many blank lines ({0}), expected {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="45"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="43"/>
         <source>over-indented</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="218"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/translations.py" line="216"/>
         <source>doc line too long ({0} &gt; {1} characters)</source>
         <translation type="unfinished"></translation>
     </message>
--- a/scripts/install.py	Sat Oct 03 12:07:51 2020 +0200
+++ b/scripts/install.py	Sun Oct 04 16:28:51 2020 +0200
@@ -1479,6 +1479,9 @@
         # available (e.g. for 32-Bit Windows)
         (("PyQt5.QtWebEngineWidgets", ), sys.maxsize <= 2**32),
     ]
+    optionalModulesList = {
+        "pyqt5-tools": "pyqt5_tools",
+    }
     # check mandatory modules
     modulesOK = True
     for impModule in impModulesList:
@@ -1512,6 +1515,17 @@
                       .format(" or ".join(altModules)))
         if not altModulesOK:
             exit(1)
+    # check optional modules
+    for optPackage in optionalModulesList:
+        try:
+            __import__(optionalModulesList[optPackage])
+            print("Found", optPackage)
+        except ImportError as msg:
+            installed = pipInstall(
+                optPackage,
+                "Optional '{0}' could not be detected.\nError: {1}"
+                .format(optPackage, msg)
+            )
     
     # determine the platform dependent black list
     if sys.platform.startswith(("win", "cygwin")):
@@ -1525,8 +1539,8 @@
     qtMajor = int(qVersion().split('.')[0])
     qtMinor = int(qVersion().split('.')[1])
     print("Qt Version: {0}".format(qVersion().strip()))
-    if qtMajor == 5 and qtMinor < 9:
-        print('Sorry, you must have Qt version 5.9.0 or better.')
+    if qtMajor == 5 and qtMinor < 12:
+        print('Sorry, you must have Qt version 5.12.0 or better.')
         exit(2)
     
     # check version of sip
@@ -1576,8 +1590,8 @@
         major = int(major)
         minor = int(minor)
         pat = int(pat)
-        if major == 5 and minor < 9:
-            print('Sorry, you must have PyQt 5.9.0 or better or'
+        if major == 5 and minor < 12:
+            print('Sorry, you must have PyQt 5.12.0 or better or'
                   ' a recent snapshot release.')
             exit(4)
         # check for blacklisted versions
@@ -1600,8 +1614,12 @@
         major = int(major)
         minor = int(minor)
         pat = int(pat)
-        if major < 2 or (major == 2 and minor < 9):
-            print('Sorry, you must have QScintilla 2.9.0 or higher or'
+        if (
+            major < 2 or
+            (major == 2 and minor < 11) or
+            (major == 2 and minor == 11 and pat < 1)
+        ):
+            print('Sorry, you must have QScintilla 2.11.1 or higher or'
                   ' a recent snapshot release.')
             exit(5)
         # check for blacklisted versions

eric ide

mercurial